2023-12-24 06:26:30 +00:00
|
|
|
libraries-collections-box {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-12-25 05:51:53 +00:00
|
|
|
|
|
|
|
&[hidden] {
|
|
|
|
display: none;
|
|
|
|
}
|
2023-12-24 06:26:30 +00:00
|
|
|
|
|
|
|
.body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-01-13 02:31:54 +00:00
|
|
|
margin-inline-start: 12px;
|
2023-12-24 06:26:30 +00:00
|
|
|
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
gap: 4px;
|
|
|
|
margin-inline-start: calc(16px * var(--level, 0));
|
|
|
|
|
|
|
|
@include comfortable {
|
|
|
|
padding-block: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.context {
|
|
|
|
color: var(--fill-secondary);
|
|
|
|
|
|
|
|
.box .icon {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.box {
|
|
|
|
@include clicky-item;
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
&.current {
|
2024-01-12 22:45:01 +00:00
|
|
|
font-weight: 600;
|
2023-12-24 06:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
width: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
toolbarbutton {
|
|
|
|
margin-inline-start: auto;
|
|
|
|
visibility: hidden;
|
2023-12-25 05:51:53 +00:00
|
|
|
border-radius: 2px;
|
2023-12-24 06:26:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:is(:hover, :focus-within) toolbarbutton {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-12-25 05:51:53 +00:00
|
|
|
|
2024-02-01 13:08:03 +00:00
|
|
|
&[readonly] {
|
2023-12-25 05:51:53 +00:00
|
|
|
.add {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2023-12-24 06:26:30 +00:00
|
|
|
}
|