3d0014f258
- Don't import global Zotero SCSS - I think this was always a mistake - preferences have their own root SCSS file (preferences.scss) and don't need zotero.scss - Don't add margins on radio or button labels - Like above - I don't think this was correct even before the latest button style tweaks! - Don't add global margins - Otherwise we start an arms race with all the other elements in the pane - anything without a margin-inline-start will look like it's sticking out to the left. Apply specific margins instead.
41 lines
692 B
SCSS
41 lines
692 B
SCSS
#zotero-prefpane-export separator:not(.thin)
|
|
{
|
|
height: 1em;
|
|
}
|
|
|
|
#quickCopy-instructions, #quickCopy-citationInstructions {
|
|
font-size: 12px;
|
|
}
|
|
|
|
#zotero-prefpane-export .virtualized-table-container {
|
|
height: 120px;
|
|
}
|
|
|
|
#zotero-quickCopy-format
|
|
{
|
|
min-height: 1.5em; /* Fix collapse on Windows */
|
|
}
|
|
|
|
#quickCopy-delete {
|
|
margin-inline-end: 6px;
|
|
}
|
|
|
|
#noteQuickCopy-wrapper {
|
|
margin-left: 30px;
|
|
@media (-moz-platform: windows) {
|
|
margin-left: 45px;
|
|
}
|
|
@media (-moz-platform: linux) {
|
|
margin-left: 25px;
|
|
}
|
|
}
|
|
|
|
#noteQuickCopy-markdown-options > label,
|
|
#noteQuickCopy-html-options > label{
|
|
margin-inline-end: 8px;
|
|
}
|
|
|
|
#noteQuickCopy-format-options hbox {
|
|
justify-content: end;
|
|
width: 100%;
|
|
}
|