grafana/public/sass/components/_dashboard_settings.scss

110 lines
1.8 KiB
SCSS
Raw Normal View History

2017-12-02 00:05:58 -06:00
.dashboard-settings {
position: fixed;
2017-12-08 11:15:24 -06:00
height: 100%;
width: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: $zindex-modal;
background: $body-bg;
display: flex;
flex-direction: column;
2017-12-02 00:05:58 -06:00
}
.dashboard-settings__body1 {
min-height: 100%;
width: 100%;
2017-12-02 00:05:58 -06:00
}
.dashboard-settings__body2 {
min-height: 100%;
width: 100%;
display: flex;
flex-direction: row;
background: $panel-bg;
2017-12-08 11:15:24 -06:00
}
.dashboard-settings__content {
flex-grow: 1;
min-width: 0;
height: 100%;
padding: 32px;
max-width: 1100px;
2017-12-08 11:15:24 -06:00
}
.dashboard-settings__aside {
padding: 32px 0 0 32px;
background: lightOrDark($gray95, $gray15);
2017-12-08 11:15:24 -06:00
display: flex;
flex-direction: column;
}
.dashboard-settings__aside-header {
color: $text-muted;
font-size: $font-size-h3;
padding-right: 60px;
white-space: nowrap;
2019-03-12 02:10:31 -05:00
margin-bottom: $space-md;
2017-12-10 05:41:11 -06:00
i {
font-size: 25px;
position: relative;
top: 1px;
padding-right: 5px;
}
2017-12-08 11:15:24 -06:00
}
.dashboard-settings__header {
font-size: $font-size-h3;
margin-bottom: $space-xl;
line-height: 36px;
2017-12-08 11:15:24 -06:00
}
2018-05-08 04:24:20 -05:00
.dashboard-settings__subheader {
color: $text-muted;
font-style: italic;
position: relative;
2019-03-21 04:43:06 -05:00
top: -$space-lg;
2018-05-08 04:24:20 -05:00
}
2017-12-08 11:15:24 -06:00
.dashboard-settings__nav-item {
padding: 8px 40px 8px 8px;
2017-12-08 11:15:24 -06:00
color: $text-color;
2017-12-10 05:21:04 -06:00
font-size: $font-size-md;
line-height: 20px;
2017-12-08 11:15:24 -06:00
@include left-brand-border;
&.active {
@include left-brand-border-gradient();
background: $page-bg;
2017-12-02 00:05:58 -06:00
}
2017-12-10 05:21:04 -06:00
.gicon {
margin-bottom: 2px;
margin-right: 4px;
}
.fa {
font-size: 17px;
width: 16px;
margin-right: 4px;
2017-12-10 05:21:04 -06:00
}
2017-12-02 00:05:58 -06:00
}
2017-12-12 04:49:01 -06:00
.dashboard-settings__aside-actions {
display: flex;
flex-direction: column;
height: 100%;
flex-grow: 1;
margin: 40px $space-xl 0 0;
2017-12-12 04:49:01 -06:00
button {
2019-03-12 02:10:31 -05:00
margin-bottom: $space-sm;
2017-12-12 04:49:01 -06:00
}
}
2018-04-11 15:59:29 -05:00
.dashboard-settings__json-save-button {
2019-03-12 02:10:31 -05:00
margin-top: $space-md;
2018-04-11 15:59:29 -05:00
}