mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 13:08:40 +08:00
Followup 2f423165e9
Horizon had CSS to hide _all_ combo buttons in the top of
the topic list, even though it was only trying to hide the
New Topic button. This meant the dismiss button was hidden
too.
Reveal the dismiss button in Horizon and add CSS classes
for specificity.
17 lines
352 B
SCSS
Vendored
17 lines
352 B
SCSS
Vendored
@use "lib/viewport";
|
|
|
|
.sidebar__panel-switch-button,
|
|
.notifications-button-footer .reason .text,
|
|
.pinned-button .reason .text,
|
|
.more-topics__browse-more,
|
|
.topic-list-layout-trigger {
|
|
display: none;
|
|
}
|
|
|
|
@include viewport.from(md) {
|
|
.horizon-new-topic-button-enabled {
|
|
.list-controls .topic-create-button__combo {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|