a6076ce76c
* Improve feed item pane header (fixes #4141) * Show item pane custom head when headerMode is none (fixes #4116) * fx115: Fix button style on windows (fixes #4120) * Move split-menu-button styles to SCSS
30 lines
442 B
SCSS
30 lines
442 B
SCSS
item-message-pane {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.custom-head {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-self: stretch;
|
|
gap: 8px;
|
|
padding: 6px 8px;
|
|
background: var(--material-toolbar);
|
|
border-bottom: var(--material-panedivider);
|
|
height: 28px;
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
button {
|
|
height: 26px;
|
|
margin: 0;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
#zotero-item-pane-groupbox {
|
|
flex: 1;
|
|
border-width: 0;
|
|
}
|
|
}
|