2018-10-19 15:17:02 +00:00
|
|
|
@import './app-view/index';
|
2020-01-22 12:08:29 +00:00
|
|
|
|
2020-05-07 13:57:15 +00:00
|
|
|
%app-view-actions label + div {
|
|
|
|
/* We need this extra to allow tooltips to show */
|
2020-01-22 12:08:29 +00:00
|
|
|
overflow: visible !important;
|
|
|
|
}
|
|
|
|
|
2018-10-19 15:17:02 +00:00
|
|
|
main {
|
|
|
|
@extend %app-view;
|
|
|
|
}
|
2020-05-11 15:37:11 +00:00
|
|
|
%app-view > div > header {
|
|
|
|
@extend %app-view-header;
|
|
|
|
}
|
|
|
|
%app-view > div > div {
|
|
|
|
@extend %app-view-content;
|
|
|
|
}
|
|
|
|
%app-view > div.unauthorized,
|
|
|
|
%app-view > div.error {
|
|
|
|
@extend %app-view-error;
|
|
|
|
}
|
|
|
|
%app-view header form {
|
2018-10-19 15:17:02 +00:00
|
|
|
@extend %filter-bar;
|
|
|
|
}
|
2020-05-07 13:57:15 +00:00
|
|
|
%app-view-actions a,
|
|
|
|
%app-view-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,
|
2020-05-11 15:37:11 +00:00
|
|
|
%app-view-content > p:only-child {
|
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;
|
|
|
|
}
|
2020-03-02 11:48:35 +00:00
|
|
|
|
|
|
|
/* toggleable toolbar for short screens */
|
|
|
|
[for='toolbar-toggle'] {
|
|
|
|
@extend %with-search-color-icon;
|
|
|
|
background-position: 0 4px;
|
|
|
|
display: inline-block;
|
|
|
|
width: 26px;
|
|
|
|
height: 26px;
|
|
|
|
cursor: pointer;
|
|
|
|
color: $blue-500;
|
|
|
|
}
|
|
|
|
#toolbar-toggle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
@media #{$--horizontal-selects} {
|
|
|
|
[for='toolbar-toggle'] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2020-05-07 13:57:15 +00:00
|
|
|
@media #{$--lt-spacious-page-header} {
|
|
|
|
%app-view-actions {
|
|
|
|
margin-top: 9px;
|
|
|
|
}
|
|
|
|
}
|
2020-03-02 11:48:35 +00:00
|
|
|
// reduced search magnifying icon layout
|
|
|
|
@media #{$--lt-horizontal-selects} {
|
2020-05-07 13:57:15 +00:00
|
|
|
%app-view-header h1 {
|
2020-03-02 11:48:35 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
// on the instance detail page we don't have the magnifier
|
|
|
|
html.template-instance.template-show h1 {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
#toolbar-toggle + * {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#toolbar-toggle:checked + * {
|
|
|
|
display: block;
|
|
|
|
}
|
2020-04-21 14:21:52 +00:00
|
|
|
html.template-service.template-show #toolbar-toggle + * {
|
|
|
|
display: block;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
html.template-service.template-show .actions {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-03-02 11:48:35 +00:00
|
|
|
}
|