87297f8d29
A number of style changes to fix layout for fx115. - Make panes occupy all width/height based on layout. - Display the tag splitter on windows and mac. - Fix to odd fx115 behavior that gives an un-collapsed pane the initial width of min-width * 2. - Ensure that whenever there is a width attribute on contextPane, it will be present in the style as well. - Set width = 0 on zotero pane when it is not selected because it kept preventing the contextPane from properly expanding. - Context pane has its height changed on splitter drag. - Set height of the context pane in stacked mode to 0 to avoid having a blank gap after collapse. - Remove negative margin before the toolbar if the collection tree is collapsed on mac. - Tweaks splitter styles to have mouse target of more than 1px. Added positive z-index to make sure splitters are not covered by panes. Splitter styles are somewhat unified for all platforms. - Fix lookup panel sizing - Quicksearch margin edits to not squize the input field. - Collection and quick search fields layout fixed - Use flex properties to fix layout - fix outline display for editable-text - fix the contextpane width going out of bounds - stacked itemPane is visible after layout change - In stacked view, prevent itemPane from being dragged so high that it covers itemTree and overlaps with toolbar
29 lines
743 B
CSS
29 lines
743 B
CSS
/* Fixes tabs missing styling on (GTK 3.20) Ubuntu 16.10. See https://bugzilla.mozilla.org/show_bug.cgi?id=1306425 */
|
|
tabpanels {
|
|
-moz-appearance: none;
|
|
border: 1px solid hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
|
tab {
|
|
-moz-appearance: none;
|
|
border-top: 1px solid hsla(0, 0%, 0%, 0.2);
|
|
border-right: 1px solid hsla(0, 0%, 0%, 0.2);
|
|
border-left: 1px solid hsla(0, 0%, 0%, 0.2);
|
|
}
|
|
/* Fixes misc Ubuntu 16.10 rendering issue fixes. */
|
|
#zotero-prefs menulist dropmarker{
|
|
width: 30px;
|
|
}
|
|
#zotero-prefs .numberbox-input-box{
|
|
-moz-appearance: textfield;
|
|
}
|
|
|
|
#zotero-tags-splitter:not([state=collapsed]) {
|
|
min-height: 5px;
|
|
}
|
|
|
|
#zotero-context-splitter-stacked {
|
|
-moz-appearance: none;
|
|
background-color: #ececec;
|
|
border-top: 1px solid hsla(0, 0%, 0%, 0.2);
|
|
}
|