mirror of
https://github.com/status-im/consul.git
synced 2025-01-10 05:45:46 +00:00
8017b5ab6e
In https://github.com/hashicorp/consul/pull/6575 we changed the name of %app-content to %app-view-content, but missed a few places that needed renaming, this corrects that.
41 lines
939 B
SCSS
41 lines
939 B
SCSS
%app-view h2,
|
|
%app-view fieldset {
|
|
border-bottom: $decor-border-200;
|
|
}
|
|
%app-view fieldset h2 {
|
|
border-bottom: none;
|
|
}
|
|
@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,
|
|
%app-view fieldset {
|
|
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-view-content div > dl > dd {
|
|
color: $gray-400;
|
|
}
|
|
[role='tabpanel'] > p:only-child,
|
|
.template-error > div,
|
|
%app-view-content > p:only-child,
|
|
%app-view > div.disabled > div {
|
|
@extend %frame-gray-500;
|
|
}
|