open-consul/ui-v2/app/styles/components/app-view/skin.scss
John Cowen 10fe22c9b4
ui: Add Optgroups and selectedItems to multiple select dropdown and use (#8476)
* ui: Switch selects to use more HTML-like approach for optgroups

* Add KV comparator

* Use new option/optgroup approach for sort/select

* Fix up tests for new order of menu items
2020-08-11 18:02:51 +01:00

34 lines
770 B
SCSS

%app-view-content-empty {
@extend %frame-gray-500;
}
%app-view-title {
border-bottom: $decor-border-200;
}
%app-view-content h2,
%app-view-content form:not(.filter-bar) fieldset {
border-bottom: $decor-border-200;
}
%app-view-content fieldset h2 {
border-bottom: none;
}
%app-view-header h1 > em {
color: $gray-600;
}
%app-view-header dd > a {
color: $black;
}
%app-view-content div > dl > dd {
color: $gray-400;
}
%app-view-title,
%app-view-content h2,
%app-view-content form:not(.filter-bar) fieldset {
border-color: $gray-200;
}
// We know that any sibling navs might have a top border
// by default. As its squashed up to a %app-view-title, in this
// case hide its border to avoid double border
%app-view-title ~ nav {
border-top: 0 !important;
}