2017-12-02 00:05:58 -06:00
|
|
|
.dashboard-settings {
|
2020-03-24 04:30:53 -05:00
|
|
|
position: fixed;
|
2017-12-08 11:15:24 -06:00
|
|
|
height: 100%;
|
2020-03-24 04:30:53 -05:00
|
|
|
width: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2020-03-28 01:51:15 -05:00
|
|
|
z-index: $zindex-sidemenu;
|
2020-04-12 08:05:49 -05:00
|
|
|
background: $dashboard-bg;
|
2020-03-26 08:36:24 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2017-12-02 00:05:58 -06:00
|
|
|
}
|
|
|
|
|
2020-12-17 08:50:11 -06:00
|
|
|
.dashboard-settings__body {
|
2020-03-26 08:36:24 -05:00
|
|
|
min-height: 100%;
|
2020-03-24 04:30:53 -05:00
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
background: $panel-bg;
|
2017-12-08 11:15:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-settings__aside {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-04-30 10:21:18 -05:00
|
|
|
margin-top: $spacer;
|
2017-12-08 11:15:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2021-02-09 13:41:07 -06:00
|
|
|
margin-bottom: $space-md;
|
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;
|
|
|
|
}
|
|
|
|
|
2017-12-08 11:15:24 -06:00
|
|
|
.dashboard-settings__nav-item {
|
2019-04-22 09:04:35 -05:00
|
|
|
padding: 8px 40px 8px 8px;
|
2021-04-30 10:21:18 -05:00
|
|
|
color: $text-color-weak;
|
2017-12-10 05:21:04 -06:00
|
|
|
font-size: $font-size-md;
|
2019-04-22 09:04:35 -05:00
|
|
|
line-height: 20px;
|
2021-04-30 10:21:18 -05:00
|
|
|
position: relative;
|
2017-12-08 11:15:24 -06:00
|
|
|
@include left-brand-border;
|
|
|
|
|
|
|
|
&.active {
|
2021-04-30 10:21:18 -05:00
|
|
|
color: $text-color;
|
|
|
|
font-weight: $font-weight-semi-bold;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 4px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: $brand-gradient-vertical;
|
|
|
|
}
|
2017-12-02 00:05:58 -06:00
|
|
|
}
|
2017-12-10 05:21:04 -06:00
|
|
|
|
2018-04-16 10:16:35 -05:00
|
|
|
.gicon {
|
|
|
|
margin-bottom: 2px;
|
2019-04-22 09:04:35 -05:00
|
|
|
margin-right: 4px;
|
2018-04-16 10:16:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
font-size: 17px;
|
|
|
|
width: 16px;
|
2019-04-22 09:04:35 -05:00
|
|
|
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;
|
2019-03-11 05:33:15 -05:00
|
|
|
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
|
|
|
}
|