mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-23 21:20:41 +08:00
Follow up to https://github.com/discourse/discourse/pull/33253 Switches to the generic `d-table` class instead of using the admin stylesheet. No visual changes, except the badge/status for the API key. | Before | After | |--------|--------| |  |  |
30 lines
561 B
SCSS
Vendored
30 lines
561 B
SCSS
Vendored
@use "lib/viewport";
|
|
|
|
.admin-config.components {
|
|
.admin-config-components {
|
|
&__filters {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
&__status-filter {
|
|
display: flex;
|
|
white-space: nowrap;
|
|
align-items: center;
|
|
gap: 1em;
|
|
}
|
|
|
|
&__parent-themes-list {
|
|
@include viewport.until(md) {
|
|
text-align: right;
|
|
max-width: 60%;
|
|
}
|
|
}
|
|
|
|
&__update-available {
|
|
font-size: var(--font-down-1);
|
|
font-weight: bold;
|
|
margin: var(--space-1) 0 var(--space-1) 0;
|
|
}
|
|
}
|
|
}
|