mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-24 20:20:16 +08:00
Stylelint is a css linter: https://stylelint.io/ As part of this change we have added two javascript scripts: ``` pnpm lint:css pnpm lint:css:fix ``` Look at `.vscode/settings.json.sample` and `.vscode/extensions.json` for configuration in VSCode. --------- Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
33 lines
497 B
SCSS
Vendored
33 lines
497 B
SCSS
Vendored
.has-full-page-chat {
|
|
.global-notice,
|
|
.bootstrap-mode-notice {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.admin-plugins {
|
|
[data-plugin-name="chat"] {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.user-summary-page .details .controls ul,
|
|
.user-main .details .controls ul {
|
|
flex-direction: column;
|
|
|
|
li:first-child {
|
|
order: -2;
|
|
}
|
|
|
|
li.user-profile-controls-outlet.chat-button {
|
|
order: -1;
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.user-main .collapsed-info .details .controls ul {
|
|
flex-direction: row;
|
|
}
|