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)
19 lines
279 B
SCSS
19 lines
279 B
SCSS
@import './anchors/index';
|
|
main a {
|
|
color: $ui-gray-900;
|
|
}
|
|
main a[rel*='help'] {
|
|
@extend %with-info;
|
|
}
|
|
main label a[rel*='help'] {
|
|
color: $ui-gray-400;
|
|
}
|
|
|
|
[role='tabpanel'] > p:only-child [rel*='help']::after {
|
|
content: none;
|
|
}
|
|
main p a,
|
|
main dd a {
|
|
@extend %anchor;
|
|
}
|