zotero/scss/elements/_notesBox.scss

36 lines
520 B
SCSS
Raw Normal View History

notes-box, related-box {
2023-11-28 10:58:59 +00:00
display: flex;
flex-direction: column;
gap: 2px;
}
notes-box .body, related-box .body {
display: flex;
flex-direction: column;
padding-inline-start: 16px - 2px;
.row {
display: flex;
2023-11-28 10:58:59 +00:00
gap: 4px;
align-items: flex-start;
@include comfortable {
padding-block: 2px;
}
2023-11-28 10:58:59 +00:00
.box {
@include clicky-item;
flex: 1;
}
2023-11-28 10:58:59 +00:00
toolbarbutton {
margin-inline-start: auto;
visibility: hidden;
}
2023-11-28 10:58:59 +00:00
&:is(:hover, :focus-within) toolbarbutton {
visibility: visible;
}
}
}