open-consul/ui-v2/app/styles/components/healthchecked-resource/skin.scss
John Cowen c7d89f364d
UI: CSS refactor (#4430) + Fullscreen Layout (#4435)
* 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)
2018-08-29 12:11:58 +01:00

24 lines
544 B
SCSS

%healthchecked-resource li.passing {
color: $ui-color-success;
}
%healthchecked-resource li.warning {
color: $ui-color-alert;
}
%healthchecked-resource li.critical {
color: $ui-color-failure;
}
%healthchecked-resource {
border: $decor-border-100;
box-shadow: 0 4px 8px 0 rgba($ui-black, 0.05);
}
%healthchecked-resource:hover,
%healthchecked-resource:focus {
box-shadow: 0 8px 10px 0 rgba($ui-black, 0.1);
}
%healthchecked-resource li {
border-top: $decor-border-100;
}
%healthchecked-resource {
border-radius: $radius-small;
}