2018-10-19 15:17:02 +00:00
|
|
|
@import './app-view/index';
|
|
|
|
@import './filter-bar/index';
|
2019-06-14 17:27:37 +00:00
|
|
|
@import '../base/components/buttons/index';
|
2018-10-19 15:17:02 +00:00
|
|
|
main {
|
|
|
|
@extend %app-view;
|
|
|
|
}
|
2019-11-25 18:45:10 +00:00
|
|
|
%app-view > div > header {
|
|
|
|
@extend %app-view-header;
|
|
|
|
}
|
2018-10-19 15:17:02 +00:00
|
|
|
%app-view > div > div {
|
2019-11-25 18:45:10 +00:00
|
|
|
@extend %app-view-content;
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|
|
|
|
%app-view header form {
|
|
|
|
@extend %filter-bar;
|
|
|
|
}
|
|
|
|
@media #{$--lt-spacious-page-header} {
|
2019-11-25 18:45:10 +00:00
|
|
|
%app-view-header .actions {
|
2019-05-01 18:19:43 +00:00
|
|
|
margin-top: 9px;
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-22 17:01:10 +00:00
|
|
|
// TODO: This should be its own component
|
2019-12-12 09:25:39 +00:00
|
|
|
%app-view h1 {
|
|
|
|
padding-bottom: 0.2em;
|
|
|
|
}
|
2019-03-22 17:01:10 +00:00
|
|
|
%app-view h1 span[data-tooltip] {
|
2018-10-19 15:17:02 +00:00
|
|
|
@extend %with-external-source-icon;
|
2019-06-14 17:27:37 +00:00
|
|
|
margin-top: 13px;
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|
2019-03-22 17:01:10 +00:00
|
|
|
%app-view h1 span.kind-proxy {
|
2019-07-05 08:07:25 +00:00
|
|
|
@extend %frame-gray-900;
|
|
|
|
@extend %pill;
|
|
|
|
}
|
|
|
|
%app-view h1 span.kind-proxy::before {
|
|
|
|
width: 0.3em !important;
|
2019-03-22 17:01:10 +00:00
|
|
|
}
|
2019-02-21 13:57:13 +00:00
|
|
|
%app-view h1 em {
|
|
|
|
color: $gray-600;
|
|
|
|
}
|
2019-11-25 18:45:10 +00:00
|
|
|
%app-view-header .actions a,
|
|
|
|
%app-view-header .actions button {
|
2018-10-19 15:17:02 +00:00
|
|
|
@extend %button-compact;
|
|
|
|
}
|
2019-12-04 09:41:30 +00:00
|
|
|
%app-view-content div > dl {
|
2018-10-19 15:17:02 +00:00
|
|
|
@extend %form-row;
|
|
|
|
}
|
|
|
|
[role='tabpanel'] > p:only-child,
|
|
|
|
.template-error > div,
|
2019-11-25 18:45:10 +00:00
|
|
|
%app-view-content > p:only-child,
|
2018-10-19 15:17:02 +00:00
|
|
|
%app-view > div.disabled > div,
|
|
|
|
%app-view.empty > div {
|
2019-11-25 18:45:10 +00:00
|
|
|
@extend %app-view-content-empty;
|
2018-10-19 15:17:02 +00:00
|
|
|
}
|
|
|
|
[role='tabpanel'] > *:first-child {
|
|
|
|
margin-top: 1.25em;
|
|
|
|
}
|
|
|
|
%app-view > div.disabled > div {
|
|
|
|
margin-top: 0 !important;
|
|
|
|
}
|