99070f2983
- Adds full set of svg icons as CSS/Sass variables to the source - Starts picking out some frame-grays, whilst commenting in possibles - Remove color prefixing The prefixes `ui-` and `brand-` for colors hav been removed. This makes colors slightly easier to type. In order to differentiate between brand colors and 'normal' colors, normal colors are named as 'true colors' i.e. blue, red, green etc etc whereas the brand colors used a more premium sounding name such as 'steel' for vault gray, 'magenta' for consul, 'cobalt' for vagrant etc etc.
18 lines
375 B
SCSS
18 lines
375 B
SCSS
%app-view h2,
|
|
%app-view header > div:last-of-type {
|
|
border-bottom: $decor-border-100;
|
|
}
|
|
%app-view header > div:last-of-type,
|
|
%app-view h2 {
|
|
border-color: $keyline-light;
|
|
}
|
|
%app-content div > dl > dd {
|
|
color: $gray-400;
|
|
}
|
|
[role='tabpanel'] > p:only-child,
|
|
.template-error > div,
|
|
%app-content > p:only-child,
|
|
%app-view > div.disabled > div {
|
|
@extend %frame-gray-500;
|
|
}
|