e0326c3b0a
This gives more prominence to 'Service Instances' as opposed to 'Services'. It also begins to surface Connect related 'nouns' such as 'Proxies' and 'Upstreams' and begins to interconnect them giving more visibility to operators. Various smaller changes: 1. Move healthcheck-status component to healthcheck-output 2. Create a new healthcheck-status component for showing the number of checks plus its icon 3. Create a new healthcheck-info component to group multiple statuses plus a different view if there are no checks 4. Componentize tag-list
36 lines
840 B
SCSS
36 lines
840 B
SCSS
%app-view h2 {
|
|
border-bottom: $decor-border-200;
|
|
}
|
|
@media #{$--horizontal-selects} {
|
|
%app-view header h1 {
|
|
border-bottom: $decor-border-200;
|
|
}
|
|
}
|
|
@media #{$--lt-horizontal-selects} {
|
|
%app-view header > div > div:last-child {
|
|
border-bottom: $decor-border-200;
|
|
}
|
|
}
|
|
%app-view header > div > div:last-child,
|
|
%app-view header h1,
|
|
%app-view h2 {
|
|
border-color: $gray-200;
|
|
}
|
|
// We know that any sibling navs might have a top border
|
|
// by default. As its squashed up to a h1, in this
|
|
// case hide its border to avoid double border
|
|
@media #{$--horizontal-selects} {
|
|
%app-view header h1 ~ nav {
|
|
border-top: 0 !important;
|
|
}
|
|
}
|
|
%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;
|
|
}
|