mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 10:44:25 +08:00
44 lines
1005 B
SCSS
44 lines
1005 B
SCSS
.sidebar-more-section-links-details-content {
|
|
background-color: var(--d-sidebar-background);
|
|
transition: background-color 0.25s;
|
|
box-shadow: var(--shadow-card);
|
|
border: 1px solid var(--primary-low);
|
|
margin: 0 calc(var(--d-sidebar-row-horizontal-padding) * 2 / 3);
|
|
|
|
.sidebar-row {
|
|
padding: 0.33rem calc(var(--d-sidebar-row-horizontal-padding) / 3);
|
|
}
|
|
}
|
|
|
|
.sidebar-more-section-links-details-content-main {
|
|
position: sticky;
|
|
margin: 0;
|
|
}
|
|
|
|
.sidebar-more-section-links-details-content-footer {
|
|
border-top: 2px solid var(--primary-low);
|
|
display: flex;
|
|
width: 100%;
|
|
|
|
.sidebar-section-link-wrapper {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.sidebar-more-section-links-details-content-wrapper {
|
|
position: absolute;
|
|
width: 100%;
|
|
z-index: z("modal", "content") + 1;
|
|
}
|
|
|
|
.sidebar-more-section-links-details {
|
|
position: relative;
|
|
@include breakpoint(tablet) {
|
|
grid-column-start: 1;
|
|
grid-column-end: 3;
|
|
.sidebar-more-section-links-details-content-main {
|
|
gap: 0 1em;
|
|
}
|
|
}
|
|
}
|