Fix input placeholder color
This commit is contained in:
parent
0c1ca27333
commit
7558a61066
3 changed files with 3 additions and 1 deletions
|
@ -58,7 +58,7 @@
|
||||||
.inputField label {
|
.inputField label {
|
||||||
transition: font-size 0.25s ease-out 0.1s, color 0.25s ease-out 0.1s,
|
transition: font-size 0.25s ease-out 0.1s, color 0.25s ease-out 0.1s,
|
||||||
top 0.25s ease-out 0.1s, background-color 0.25s ease-out 0.1s;
|
top 0.25s ease-out 0.1s, background-color 0.25s ease-out 0.1s;
|
||||||
color: var(--textColor1);
|
color: var(--textColor3);
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
@ -31,6 +31,7 @@ limitations under the License.
|
||||||
--bgColor5: #8d97a5;
|
--bgColor5: #8d97a5;
|
||||||
--textColor1: #fff;
|
--textColor1: #fff;
|
||||||
--textColor2: #6f7882;
|
--textColor2: #6f7882;
|
||||||
|
--textColor3: #8e99a4;
|
||||||
--inputBorderColor: #394049;
|
--inputBorderColor: #394049;
|
||||||
--inputBorderColorFocused: #0086e6;
|
--inputBorderColorFocused: #0086e6;
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,7 @@ if (import.meta.env.VITE_CUSTOM_THEME) {
|
||||||
style.setProperty("--bgColor5", import.meta.env.VITE_BG_COLOR_5);
|
style.setProperty("--bgColor5", import.meta.env.VITE_BG_COLOR_5);
|
||||||
style.setProperty("--textColor1", import.meta.env.VITE_TEXT_COLOR_1);
|
style.setProperty("--textColor1", import.meta.env.VITE_TEXT_COLOR_1);
|
||||||
style.setProperty("--textColor2", import.meta.env.VITE_TEXT_COLOR_2);
|
style.setProperty("--textColor2", import.meta.env.VITE_TEXT_COLOR_2);
|
||||||
|
style.setProperty("--textColor4", import.meta.env.VITE_TEXT_COLOR_4);
|
||||||
style.setProperty(
|
style.setProperty(
|
||||||
"--inputBorderColor",
|
"--inputBorderColor",
|
||||||
import.meta.env.VITE_INPUT_BORDER_COLOR
|
import.meta.env.VITE_INPUT_BORDER_COLOR
|
||||||
|
|
Loading…
Reference in a new issue