zotero/scss/components/_exportOptions.scss
Dan Stillman 6fbe5e4135 fx153: Match XUL boolean attributes in selectors without a value
Bug 2008041 made disabled, checked, hidden, collapsed, and selected
boolean attributes, so their value is empty and [disabled="true"] no
longer matches. Nothing sets any of them to "false", so matching on
presence alone is equivalent.
2026-08-03 11:48:40 -04:00

16 lines
339 B
SCSS

#zotero-export-options {
#export-option-includeAnnotations {
margin-top: 2px;
margin-left: 17px;
}
checkbox[disabled] 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] {
color: unset;
}
}