c7d89f364d
* Begin refactoring CSS into component folders. Moved most components into layout/skin folders, left out a couple of ones I want to think about more. * Adjust grays based on recent Structure changes * Switch to fullscreen layout for lists and detail, left aligned forms (#4435) * Specifically use the 'actions_close' label, not just the :last-child (actions-group) * Replace some non-var-ed colours in vaults code skin, plus prefixing (black and white)
28 lines
512 B
SCSS
28 lines
512 B
SCSS
@import '../layouts/index';
|
|
|
|
html.template-with-vertical-menu,
|
|
html.template-with-vertical-menu body {
|
|
overflow: hidden;
|
|
}
|
|
#wrapper {
|
|
@extend %viewport-container;
|
|
}
|
|
#wrapper {
|
|
@extend %with-sticky-footer;
|
|
}
|
|
main {
|
|
@extend %with-sticky-footer-content;
|
|
}
|
|
main,
|
|
#wrapper > footer {
|
|
@extend %content-container;
|
|
}
|
|
html.template-edit main {
|
|
@extend %content-container-restricted;
|
|
}
|
|
/* TODO: keep margin below forms, move elsewhere */
|
|
main form,
|
|
main form + div .with-confirmation {
|
|
margin-bottom: 2em;
|
|
}
|