mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 14:50:40 +08:00
41 lines
789 B
SCSS
Vendored
41 lines
789 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;
|
|
}
|
|
}
|
|
}
|
|
|
|
.d-admin-table.component-list {
|
|
.has-update {
|
|
background-color: var(--tertiary-very-low);
|
|
border-left: solid 3px var(--tertiary);
|
|
}
|
|
|
|
.d-admin-row__overview-about .d-icon {
|
|
font-size: var(--font-down-3);
|
|
}
|
|
}
|