mirror of
https://github.com/zotero/zotero.git
synced 2026-08-28 05:25:31 +00:00
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.
16 lines
339 B
SCSS
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;
|
|
}
|
|
}
|