e918b430b6
The Quick Format dialog's shape is based on the OS window corners, and that changed on Big Sur, which resulted in whitespace along the bottom edge and a misaligned search results box. The tops of the citation bubbles were also cut off (at least for me) on Catalina.
21 lines
No EOL
654 B
CSS
21 lines
No EOL
654 B
CSS
/* Use standard tab appearance for item pane tabs */
|
|
#zotero-pane #zotero-view-tabbox > tabs > tab {
|
|
-moz-appearance: tab;
|
|
}
|
|
|
|
/* Active tab label color in item pane and elsewhere */
|
|
#zotero-pane tabs#zotero-editpane-tabs > tab[visuallyselected="true"][selected="true"] hbox > .tab-text,
|
|
#zotero-prefs tab[visuallyselected="true"]:not(:-moz-window-inactive),
|
|
tabs > tab[visuallyselected="true"] hbox > .tab-text {
|
|
color: black !important;
|
|
text-shadow: none;
|
|
}
|
|
|
|
/* Quick Format dialog, which is based on window corners, which are different on Big Sur */
|
|
#quick-format-dialog #zotero-icon {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
#quick-format-iframe {
|
|
margin-top: 2px;
|
|
} |