zotero/scss/elements/_noteEditor.scss
windingwind a6076ce76c
Fix item pane header (#4159)
* 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
2024-06-04 02:14:20 -04:00

42 lines
764 B
SCSS

note-editor {
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;
}
}
}
links-box {
display: flex;
flex-direction: column;
padding-inline: 8px;
border-top: 1px solid var(--fill-quinary);
tags-box, related-box {
> collapsible-section > .body {
max-height: 25vh;
overflow-y: auto;
scrollbar-width: thin;
scrollbar-color: var(--color-scrollbar) var(--color-scrollbar-background);
padding-bottom: 1px; // Leave room for the editable-text focus ring
}
}
}