2024-01-30 10:43:16 +00:00
|
|
|
note-editor {
|
2024-03-22 14:08:01 +00:00
|
|
|
flex-direction: column;
|
2024-01-30 10:43:16 +00:00
|
|
|
|
|
|
|
.custom-head {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-self: stretch;
|
|
|
|
gap: 6px;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-23 07:54:08 +00:00
|
|
|
links-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding-inline: 8px;
|
2022-05-26 15:16:40 +00:00
|
|
|
|
2023-12-23 07:54:08 +00:00
|
|
|
border-top: 1px solid var(--fill-quinary);
|
2024-02-27 12:50:56 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
2022-06-07 14:13:48 +00:00
|
|
|
}
|