grafana/public/sass/components/_dashboard_settings.scss

102 lines
1.6 KiB
SCSS
Raw Normal View History

2017-12-02 00:05:58 -06:00
.dashboard-settings {
opacity: 0;
2017-12-08 11:15:24 -06:00
height: 100%;
display: flex;
flex-direction: row;
2017-12-02 00:05:58 -06:00
}
.dashboard-page--settings-opening {
.dashboard-container {
display: none;
}
}
.dashboard-page--settings-open {
.dashboard-settings {
opacity: 1;
2017-12-08 11:15:24 -06:00
transition: opacity 300ms ease-in-out;
}
2019-02-03 03:55:58 -06:00
.dashboard-container {
display: none;
}
2017-12-08 11:15:24 -06:00
}
.dashboard-settings__content {
flex-grow: 1;
min-width: 0;
height: 100%;
padding: 30px;
max-width: 1100px;
2017-12-08 11:15:24 -06:00
}
.dashboard-settings__aside {
padding: 27px 0 0 30px;
2017-12-10 05:21:04 -06:00
background: $panel-bg;
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;
margin-bottom: $spacer;
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: $spacer * 2;
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;
top: -1.5rem;
}
2017-12-08 11:15:24 -06:00
.dashboard-settings__nav-item {
padding: 7px 12px;
color: $text-color;
2017-12-10 05:21:04 -06:00
font-size: $font-size-md;
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;
}
.fa {
font-size: 17px;
width: 16px;
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: $spacer * 3 $spacer * 2 0 0;
2017-12-12 04:49:01 -06:00
button {
margin-bottom: 10px;
}
}
2018-04-11 15:59:29 -05:00
.dashboard-settings__json-save-button {
margin-top: $spacer;
}