0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-11 02:59:07 +08:00
discourse/plugins/chat/assets/stylesheets/common/core-extensions.scss
Gabriel Grubba edb1c65149
UX: Remove Bootstrap Mode (#37694)
We have been revamping our admin onboarding, and one of the items on our
list was to remove the bootstrap mode.

This mode was disabled by default and hidden.
2026-02-17 16:46:32 -03:00

49 lines
754 B
SCSS
Vendored

.has-full-page-chat {
.global-notice {
display: none;
}
}
.user-summary-page .details .controls ul,
.user-main .details .controls ul {
flex-direction: column;
li:first-child {
order: -2;
}
li.chat-button {
order: -1;
&:empty {
display: none;
}
}
}
.user-main .collapsed-info .details .controls ul {
flex-direction: row;
}
.sidebar-section-link-suffix.icon.starred {
color: var(--primary-low-mid);
font-size: var(--font-down-2);
}
.sidebar-section-link-content-badge.icon {
display: inline-flex;
align-items: center;
flex-shrink: 0;
svg {
font-size: var(--font-down-2);
}
&.urgent svg {
color: var(--success);
}
&.unread svg {
color: var(--d-sidebar-suffix-color);
}
}