mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:35:40 +08:00
This moves the desktop drafts dropdown menu CSS into /common utilizing breakpoints, and deletes the old file. There are no visual changes as a result.
21 lines
345 B
SCSS
Vendored
21 lines
345 B
SCSS
Vendored
@use "lib/viewport";
|
|
|
|
.topic-drafts-menu-content .dropdown-menu {
|
|
.btn .d-button-label {
|
|
@include ellipsis;
|
|
}
|
|
|
|
.view-all-drafts {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
span:first-child {
|
|
color: var(--primary-high);
|
|
}
|
|
}
|
|
|
|
@include viewport.from(sm) {
|
|
max-width: 350px;
|
|
min-width: 275px;
|
|
}
|
|
}
|