mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06: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>
70 lines
1.2 KiB
SCSS
70 lines
1.2 KiB
SCSS
.admin-report {
|
|
.admin-report-counters {
|
|
display: grid;
|
|
flex: 1 0 0px;
|
|
grid-template-columns: 33% repeat(auto-fit, minmax(20px, 1fr));
|
|
grid-template-rows: repeat(auto-fit, minmax(32px, 1fr));
|
|
align-items: center;
|
|
|
|
.cell {
|
|
padding: 0.25em;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
|
|
&.title {
|
|
text-align: left;
|
|
@include ellipsis;
|
|
|
|
.d-icon {
|
|
color: var(--primary-low-mid);
|
|
min-width: 14px;
|
|
text-align: center;
|
|
}
|
|
|
|
.d-icon {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
@media screen and (width <= 400px) {
|
|
&.title .d-icon {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.d-icon-minus {
|
|
color: var(--primary-medium);
|
|
font-size: var(--font-down-3);
|
|
}
|
|
|
|
&.high-trending-up,
|
|
&.trending-up {
|
|
.d-icon {
|
|
color: var(--success);
|
|
}
|
|
}
|
|
|
|
&.high-trending-down,
|
|
&.trending-down {
|
|
.d-icon {
|
|
color: var(--danger);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.rtl .counters-list .counters-header .counters-cell {
|
|
text-align: left;
|
|
}
|
|
|
|
.rtl .counters-list {
|
|
.cell {
|
|
text-align: left;
|
|
|
|
&.title {
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|