File size: 1,154 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | @import '@automattic/typography/styles/variables';
@import 'calypso/dashboard/app-dotcom/style.scss';
.dashboard-backport-site-settings-root {
.dashboard-page-layout {
align-self: center;
margin: 0;
padding: 0;
}
.dashboard-section-header.is-level-1 .dashboard-section-header__heading {
font-family: $sans;
font-size: 1.5rem;
font-weight: 500 !important;
line-height: 1;
}
.dashboard-section-header.is-level-2 .dashboard-section-header__heading {
font-size: 15px;
line-height: 20px;
}
.dataforms-layouts-regular__field {
min-height: 0;
}
.components-panel__body-toggle {
justify-content: unset;
}
.site-preview-pane:has( & .dashboard-snackbars ) {
z-index: 176;
}
}
.is-global.is-section-site-settings {
// BaseControl currently has an override for the label to accommodate the use case where the label is shown next to the control.
// In site settings forms, the label is above the control for regular fields so we need to override this override for UI consistency.
.dataforms-layouts-regular__field .components-base-control__label {
font-size: 11px;
font-weight: 500;
text-transform: uppercase;
}
}
|