zotero/scss/elements/_notesBox.scss

48 lines
628 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;
&[hidden] {
display: none;
}
&[readonly] {
.add {
display: none;
}
}
.body {
display: flex;
flex-direction: column;
2024-01-13 02:31:54 +00:00
padding-inline-start: 12px;
.row {
display: flex;
gap: 4px;
align-items: flex-start;
@include comfortable {
padding-block: 2px;
}
.box {
@include clicky-item;
flex: 1;
}
toolbarbutton {
margin-inline-start: auto;
& > image {
visibility: hidden;
}
}
&:is(:hover, :focus-within) toolbarbutton > image{
visibility: visible;
}
}
}
}