mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-23 09:54:56 +08:00
This makes it clearer that admin css is compiled to a separate bundle. This is a first step towards moving the 'admin' parts out of the main mobile/desktop bundles.
26 lines
446 B
SCSS
Vendored
26 lines
446 B
SCSS
Vendored
.bulk-user-delete-confirmation {
|
|
&__progress {
|
|
font-family: var(--d-font-family--monospace);
|
|
max-height: 400px;
|
|
background: var(--blend-primary-secondary-5);
|
|
padding: 1em;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
&__progress-line {
|
|
overflow-anchor: none;
|
|
|
|
&.-success {
|
|
color: var(--success);
|
|
}
|
|
|
|
&.-error {
|
|
color: var(--danger);
|
|
}
|
|
}
|
|
|
|
&__progress-anchor {
|
|
overflow-anchor: auto;
|
|
height: 1px;
|
|
}
|
|
}
|