Change the background-color of disabled input elements.
This commit is contained in:
parent
d8cc841f5c
commit
c591997b10
1 changed files with 7 additions and 0 deletions
|
@ -65,6 +65,13 @@ input, select, textarea
|
||||||
background-color: var(--color_textfields);
|
background-color: var(--color_textfields);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input:disabled,
|
||||||
|
select:disabled,
|
||||||
|
textarea:disabled
|
||||||
|
{
|
||||||
|
background-color: var(--color_text_placeholder);
|
||||||
|
}
|
||||||
|
|
||||||
input::placeholder, textarea::placeholder
|
input::placeholder, textarea::placeholder
|
||||||
{
|
{
|
||||||
color: var(--color_text_placeholder);
|
color: var(--color_text_placeholder);
|
||||||
|
|
Loading…
Reference in a new issue