2023-04-01 05:37:55 +00:00
|
|
|
notes-box, related-box {
|
2023-11-28 10:58:59 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 2px;
|
|
|
|
|
2023-12-25 05:51:53 +00:00
|
|
|
&[hidden] {
|
|
|
|
display: none;
|
|
|
|
}
|
2023-04-01 05:37:55 +00:00
|
|
|
|
2024-02-01 13:08:03 +00:00
|
|
|
&[readonly] {
|
2023-12-25 05:51:53 +00:00
|
|
|
.add {
|
|
|
|
display: none;
|
2023-04-01 05:37:55 +00:00
|
|
|
}
|
2023-12-25 05:51:53 +00:00
|
|
|
}
|
2023-04-01 05:37:55 +00:00
|
|
|
|
2023-12-25 05:51:53 +00:00
|
|
|
.body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-01-13 02:31:54 +00:00
|
|
|
padding-inline-start: 12px;
|
2023-12-25 05:51:53 +00:00
|
|
|
|
|
|
|
.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;
|
2024-06-06 04:13:26 +00:00
|
|
|
& > image {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2023-12-25 05:51:53 +00:00
|
|
|
}
|
|
|
|
|
2024-06-06 04:13:26 +00:00
|
|
|
&:is(:hover, :focus-within) toolbarbutton > image{
|
2023-12-25 05:51:53 +00:00
|
|
|
visibility: visible;
|
|
|
|
}
|
2023-04-01 05:37:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|