2020-01-16 09:10:32 +00:00
|
|
|
/*TODO: Rename this to %app-view-brand-icon or similar */
|
|
|
|
%with-external-source-icon {
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: contain;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
2020-02-11 10:04:49 +00:00
|
|
|
|
|
|
|
--kubernetes-icon: #{$kubernetes-logo-color-svg};
|
|
|
|
--terraform-icon: #{$terraform-logo-color-svg};
|
|
|
|
--nomad-icon: #{$nomad-logo-color-svg};
|
|
|
|
--consul-icon: #{$consul-logo-color-svg};
|
|
|
|
--aws-icon: #{$aws-logo-color-svg};
|
2020-01-16 09:10:32 +00:00
|
|
|
}
|
2019-05-01 18:19:43 +00:00
|
|
|
%app-view h2,
|
|
|
|
%app-view fieldset {
|
2019-02-21 13:10:53 +00:00
|
|
|
border-bottom: $decor-border-200;
|
|
|
|
}
|
2019-03-22 17:08:18 +00:00
|
|
|
%app-view fieldset h2 {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
2019-02-21 13:10:53 +00:00
|
|
|
@media #{$--horizontal-selects} {
|
|
|
|
%app-view header h1 {
|
|
|
|
border-bottom: $decor-border-200;
|
|
|
|
}
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|
2019-02-21 13:10:53 +00:00
|
|
|
@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,
|
2019-05-01 18:19:43 +00:00
|
|
|
%app-view h2,
|
|
|
|
%app-view fieldset {
|
2019-02-21 13:10:53 +00:00
|
|
|
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;
|
|
|
|
}
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|
2019-12-04 09:41:30 +00:00
|
|
|
%app-view-content div > dl > dd {
|
2018-11-09 15:28:26 +00:00
|
|
|
color: $gray-400;
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|
|
|
|
[role='tabpanel'] > p:only-child,
|
2018-11-09 15:28:26 +00:00
|
|
|
.template-error > div,
|
2020-04-08 17:03:18 +00:00
|
|
|
%app-view-content > p:only-child {
|
2018-11-09 15:28:26 +00:00
|
|
|
@extend %frame-gray-500;
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|