mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 05:21:05 +08:00
### Before  ### After 
55 lines
1 KiB
SCSS
Vendored
55 lines
1 KiB
SCSS
Vendored
@use "lib/viewport";
|
|
|
|
.admin-controls.admin-site-settings-filter-controls
|
|
.controls
|
|
.admin-site-settings-filter-controls__input {
|
|
max-width: 300px;
|
|
}
|
|
|
|
.admin-controls.admin-site-settings-filter-controls .menu-toggle {
|
|
margin-left: 0.5em;
|
|
}
|
|
|
|
.admin-plugin-config-area {
|
|
&__settings {
|
|
.admin-filtered-site-settings {
|
|
padding: 0.5em 1em;
|
|
}
|
|
|
|
.setting-label {
|
|
margin-left: 18px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.admin-changes-banner {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
position: fixed;
|
|
bottom: var(--space-3);
|
|
padding: var(--space-3);
|
|
background-color: var(--secondary);
|
|
border: 1px solid var(--primary-300);
|
|
border-radius: var(--d-border-radius);
|
|
box-shadow: var(--shadow-card);
|
|
z-index: 1;
|
|
|
|
@include viewport.until(sm) {
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
gap: var(--space-3);
|
|
}
|
|
|
|
.controls {
|
|
display: flex;
|
|
gap: var(--space-3);
|
|
}
|
|
|
|
em {
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
}
|
|
}
|