mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 03:53:44 +08:00
87769a83c4
(experimental) The initial implementation of glimmer topic-list and related components. Does not include new APIs and isn't compatible with existing customization. That's gonna come in future PRs. Enabled by adding groups to `experimental_glimmer_topic_list_groups` setting.
41 lines
647 B
SCSS
41 lines
647 B
SCSS
#topic-entrance {
|
|
border: 1px solid var(--primary-low);
|
|
padding: 5px;
|
|
background: var(--secondary);
|
|
box-shadow: var(--shadow-card);
|
|
width: 133px;
|
|
@include unselectable;
|
|
|
|
&:not(.--glimmer) {
|
|
z-index: z("dropdown");
|
|
position: absolute;
|
|
|
|
button.full .d-icon {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
&.--glimmer {
|
|
button.full {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
button.full {
|
|
width: 100%;
|
|
margin-bottom: 5px;
|
|
flex-wrap: wrap;
|
|
|
|
.d-icon {
|
|
margin: 2px auto;
|
|
transform: rotate(90deg);
|
|
}
|
|
}
|
|
|
|
button.btn.jump-bottom {
|
|
margin: 5px 0 0 0;
|
|
}
|
|
}
|