Fix :disabled styling of file-selector-button
By applying the rule to the button within the input, we effectively applied the opacity twice - making the button almost disappear. Applying the opacity to the input element is enough.
This commit is contained in:
parent
33a2548fcb
commit
30d46a00fa
|
@ -381,7 +381,6 @@ input[type=file]:focus-visible {
|
||||||
* Disabled
|
* Disabled
|
||||||
*/
|
*/
|
||||||
input:disabled,
|
input:disabled,
|
||||||
input:disabled::file-selector-button,
|
|
||||||
button:disabled,
|
button:disabled,
|
||||||
select:disabled,
|
select:disabled,
|
||||||
textarea:disabled {
|
textarea:disabled {
|
||||||
|
|
Loading…
Reference in New Issue