9823b1199a
Somehow `scrollbar-width: thin` removes unnecessary arrows from editable-text textarea and itemPane on windows Addresses: #3633
49 lines
842 B
CSS
49 lines
842 B
CSS
:root {
|
|
--theme-border-color: #cecece;
|
|
}
|
|
|
|
/* Hide horrible blue effect for menu bar and toolbar */
|
|
#navigator-toolbox {
|
|
-moz-appearance: none;
|
|
}
|
|
|
|
tree {
|
|
border-width: 0;
|
|
}
|
|
|
|
#zotero-tag-selector groupbox {
|
|
-moz-appearance: none;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
|
|
#tags-box {
|
|
padding-top: 0.1em;
|
|
padding-left: 0.05em;
|
|
}
|
|
|
|
#zotero-item-pane-groupbox {
|
|
-moz-appearance: none !important;
|
|
border-width: 0;
|
|
}
|
|
|
|
.zotero-editpane-item-box > scrollbox, .zotero-view-item > tabpanel > vbox,
|
|
#zotero-editpane-tags > scrollbox, .zotero-editpane-related {
|
|
padding-top: 5px;
|
|
}
|
|
|
|
#zotero-editpane-tags > scrollbox {
|
|
padding-left: 5px;
|
|
}
|
|
|
|
/*
|
|
Default scrollbar displays up/down arrows even
|
|
when there is no overflow and the scrollbar is hidden
|
|
*/
|
|
.zotero-view-item {
|
|
scrollbar-width: thin;
|
|
}
|
|
|
|
.zotero-view-item > tabpanel > vbox {
|
|
padding-left: 5px;
|
|
}
|