2023-05-08 11:37:34 +08:00
|
|
|
.btn-flat.sidebar-more-section-links-details-summary {
|
2022-08-24 09:33:15 +08:00
|
|
|
&:focus-within,
|
2023-05-08 11:37:34 +08:00
|
|
|
&:active,
|
2022-08-18 15:03:28 +08:00
|
|
|
&:hover {
|
2023-06-06 21:24:56 +08:00
|
|
|
background: var(--d-sidebar-highlight-background);
|
2023-05-08 11:37:34 +08:00
|
|
|
svg.d-icon {
|
2023-06-06 21:24:56 +08:00
|
|
|
color: var(--d-sidebar-highlight-color);
|
2022-07-28 16:46:46 +08:00
|
|
|
}
|
|
|
|
}
|
2023-07-11 09:40:37 +08:00
|
|
|
|
2023-05-08 11:37:34 +08:00
|
|
|
height: var(--d-sidebar-row-height);
|
2023-06-06 21:24:56 +08:00
|
|
|
color: var(--d-sidebar-link-color);
|
2023-05-08 11:37:34 +08:00
|
|
|
display: flex;
|
|
|
|
list-style: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
2023-05-24 23:00:20 +08:00
|
|
|
padding: 0 var(--d-sidebar-row-horizontal-padding);
|
2023-05-08 11:37:34 +08:00
|
|
|
justify-content: left;
|
2022-07-28 16:46:46 +08:00
|
|
|
|
2023-06-06 21:24:56 +08:00
|
|
|
.d-icon {
|
2023-05-08 11:37:34 +08:00
|
|
|
width: var(--d-sidebar-section-link-prefix-width);
|
|
|
|
margin-right: var(--d-sidebar-section-link-prefix-margin-right);
|
2023-06-06 21:24:56 +08:00
|
|
|
color: var(--d-sidebar-link-icon-color);
|
2023-05-08 11:37:34 +08:00
|
|
|
font-size: var(--font-down-1);
|
2022-08-18 15:03:28 +08:00
|
|
|
}
|
2023-05-08 11:37:34 +08:00
|
|
|
}
|
2023-07-11 09:40:37 +08:00
|
|
|
|
2023-05-08 11:37:34 +08:00
|
|
|
.sidebar-more-section-links-details-content {
|
2023-06-06 21:24:56 +08:00
|
|
|
background-color: var(--d-sidebar-background);
|
2023-05-08 11:37:34 +08:00
|
|
|
transition: background-color 0.25s;
|
2023-06-14 04:38:31 +08:00
|
|
|
box-shadow: var(--shadow-card);
|
2023-06-10 00:38:44 +08:00
|
|
|
border: 1px solid var(--primary-low);
|
2023-05-08 11:37:34 +08:00
|
|
|
margin: 0 calc(var(--d-sidebar-row-horizontal-padding) * 2 / 3);
|
2022-08-18 15:03:28 +08:00
|
|
|
|
2023-05-08 11:37:34 +08:00
|
|
|
.sidebar-row {
|
|
|
|
padding: 0.33rem calc(var(--d-sidebar-row-horizontal-padding) / 3);
|
2022-07-28 16:46:46 +08:00
|
|
|
}
|
|
|
|
}
|
2023-07-11 09:40:37 +08:00
|
|
|
|
2023-05-08 12:33:24 +08:00
|
|
|
.sidebar-more-section-links-details-content-main {
|
|
|
|
position: sticky;
|
2023-07-11 09:40:37 +08:00
|
|
|
margin: 0;
|
2023-05-08 12:33:24 +08:00
|
|
|
}
|
2023-07-11 09:40:37 +08:00
|
|
|
|
|
|
|
.sidebar-more-section-links-details-content-footer {
|
|
|
|
border-top: 2px solid var(--primary-low);
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.sidebar-section-link-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-08 11:37:34 +08:00
|
|
|
.sidebar-more-section-links-details-content-wrapper {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
z-index: z("modal", "content") + 1;
|
2023-05-08 12:33:24 +08:00
|
|
|
}
|
2023-07-11 09:40:37 +08:00
|
|
|
|
2023-05-08 12:33:24 +08:00
|
|
|
.sidebar-more-section-links-details {
|
|
|
|
position: relative;
|
2023-09-16 05:21:24 +08:00
|
|
|
@include breakpoint(tablet) {
|
|
|
|
grid-column-start: 1;
|
|
|
|
grid-column-end: 3;
|
|
|
|
.sidebar-more-section-links-details-content-main {
|
|
|
|
gap: 0 1em;
|
|
|
|
}
|
|
|
|
}
|
2023-05-08 11:37:34 +08:00
|
|
|
}
|