fx-compat: Fix style clash on disabled Export checkbox

This commit is contained in:
Abe Jellinek 2022-08-27 22:33:45 -04:00
parent 09ba429723
commit b646073dfa

View file

@ -7,4 +7,10 @@
checkbox[disabled=true] label {
opacity: .5;
}
/* Override rules from Mozilla checkbox.css that make text almost unreadable when disabled
when combined with our opacity: .5 */
checkbox[native][disabled="true"] {
color: unset;
}
}