0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 13:08:40 +08:00
discourse/themes/horizon/scss/hiddenstuff.scss
Martin Brennan b75ff1eaab
FIX: Dismiss buttons not showing in Horizon (#40326)
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.
2026-05-27 16:26:59 +10:00

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;
}
}
}