2020-11-03 16:29:51 +00:00
|
|
|
.notes-list-container {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
flex-grow: 1;
|
2023-10-16 11:40:59 +00:00
|
|
|
background: var(--material-sidepane);
|
2023-12-23 07:54:08 +00:00
|
|
|
border-top: var(--material-border-quinary);
|
|
|
|
padding-inline: 8px;
|
|
|
|
scrollbar-color: var(--color-scrollbar) var(--color-scrollbar-background);
|
2020-11-03 16:29:51 +00:00
|
|
|
}
|
|
|
|
|
2023-12-23 07:54:08 +00:00
|
|
|
context-notes-list {
|
2020-11-03 16:29:51 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-12-23 07:54:08 +00:00
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
2020-11-03 16:29:51 +00:00
|
|
|
height: 0;
|
2020-11-10 02:53:49 +00:00
|
|
|
|
2023-12-23 07:54:08 +00:00
|
|
|
.item-notes > .body, .all-notes > .body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1;
|
|
|
|
gap: 6px;
|
2021-02-22 01:10:42 +00:00
|
|
|
|
2023-12-23 07:54:08 +00:00
|
|
|
@include comfortable {
|
|
|
|
gap: 8px;
|
2021-02-22 01:10:42 +00:00
|
|
|
}
|
|
|
|
|
2023-12-23 07:54:08 +00:00
|
|
|
&::before, &::after {
|
|
|
|
// Apply gap to start and end
|
|
|
|
content: '';
|
2021-02-22 01:10:42 +00:00
|
|
|
}
|
2020-11-03 16:29:51 +00:00
|
|
|
|
2023-12-23 07:54:08 +00:00
|
|
|
> .more {
|
|
|
|
appearance: none;
|
|
|
|
border-radius: 5px;
|
2024-01-03 22:11:54 +00:00
|
|
|
border: 1px solid var(--color-quinary-on-sidepane);
|
2023-12-23 07:54:08 +00:00
|
|
|
background: var(--material-background);
|
2021-02-22 01:10:42 +00:00
|
|
|
|
2023-12-23 07:54:08 +00:00
|
|
|
padding: 2px 8px;
|
2021-02-23 18:15:55 +00:00
|
|
|
|
2023-12-23 07:54:08 +00:00
|
|
|
@include comfortable {
|
|
|
|
padding-block: 4px;
|
|
|
|
}
|
2022-03-12 07:22:13 +00:00
|
|
|
|
2023-12-23 07:54:08 +00:00
|
|
|
&:active {
|
|
|
|
background-color: var(--accent-blue10);
|
|
|
|
}
|
2022-03-12 07:22:13 +00:00
|
|
|
}
|
|
|
|
}
|
2023-12-04 21:59:05 +00:00
|
|
|
}
|