2016-02-15 08:27:41 -06:00
|
|
|
.grafana-app {
|
2017-08-14 05:26:24 -05:00
|
|
|
display: flex;
|
|
|
|
align-items: stretch;
|
2017-08-14 15:44:01 -05:00
|
|
|
position: absolute;
|
2017-08-14 05:26:24 -05:00
|
|
|
width: 100%;
|
2017-08-14 15:44:01 -05:00
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.main-view {
|
2017-08-14 15:44:01 -05:00
|
|
|
position: relative;
|
2017-08-14 05:26:24 -05:00
|
|
|
flex-grow: 1;
|
2017-08-17 14:32:23 -05:00
|
|
|
background: $page-gradient;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-container {
|
2017-12-05 08:16:06 -06:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
padding-left: $spacer*2;
|
|
|
|
padding-right: $spacer*2;
|
|
|
|
max-width: 980px;
|
|
|
|
@include clearfix();
|
2017-08-14 15:44:01 -05:00
|
|
|
}
|
2017-08-14 09:06:20 -05:00
|
|
|
|
2017-08-14 15:44:01 -05:00
|
|
|
.scroll-canvas {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
2017-08-15 02:46:38 -05:00
|
|
|
overflow: auto;
|
2017-08-16 04:28:52 -05:00
|
|
|
height: 100%;
|
|
|
|
|
2017-08-17 05:06:51 -05:00
|
|
|
&--dashboard {
|
2017-08-16 04:28:52 -05:00
|
|
|
height: calc(100% - 54px);
|
|
|
|
}
|
2017-08-14 09:06:20 -05:00
|
|
|
}
|
|
|
|
|
2016-02-26 11:25:39 -06:00
|
|
|
.page-body {
|
2017-11-30 01:18:23 -06:00
|
|
|
padding-top: $spacer*2;
|
2017-12-13 06:16:44 -06:00
|
|
|
min-height: 500px;
|
2016-02-26 11:25:39 -06:00
|
|
|
}
|
|
|
|
|
2017-11-30 08:37:03 -06:00
|
|
|
.page-heading {
|
|
|
|
font-size: 1.25rem;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: $spacer * 0.7;
|
|
|
|
}
|
|
|
|
|
2017-11-30 04:31:38 -06:00
|
|
|
.page-action-bar {
|
|
|
|
margin-bottom: $spacer * 2;
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
2017-11-30 09:35:27 -06:00
|
|
|
|
|
|
|
> a, > button {
|
|
|
|
margin-left: $spacer;
|
|
|
|
}
|
2017-11-30 04:31:38 -06:00
|
|
|
}
|
|
|
|
|
2017-12-14 13:20:36 -06:00
|
|
|
.page-action-bar--narrow {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2017-11-30 04:31:38 -06:00
|
|
|
.page-action-bar__spacer {
|
|
|
|
width: $spacer * 2;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
2017-12-01 03:47:21 -06:00
|
|
|
.sidebar-content {
|
2016-02-26 11:25:39 -06:00
|
|
|
width: calc(100% - #{$page-sidebar-width + $page-sidebar-margin}); // sidebar width + margin
|
|
|
|
}
|
|
|
|
|
2017-12-01 03:47:21 -06:00
|
|
|
.sidebar-container {
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-26 11:25:39 -06:00
|
|
|
.page-sidebar {
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
width: $page-sidebar-width;
|
|
|
|
margin-left: $page-sidebar-margin;
|
|
|
|
}
|
2016-02-25 08:56:28 -06:00
|
|
|
}
|
|
|
|
|
2017-11-30 09:35:27 -06:00
|
|
|
.page-sub-heading {
|
|
|
|
margin-bottom: $spacer;
|
|
|
|
}
|
|
|
|
|
2016-02-26 11:25:39 -06:00
|
|
|
.page-sidebar {
|
|
|
|
color: $text-color-weak;
|
|
|
|
h4 {
|
|
|
|
font-size: $font-size-base;
|
|
|
|
font-weight: $font-weight-semi-bold;
|
|
|
|
}
|
|
|
|
h5 {
|
|
|
|
font-size: $font-size-base;
|
|
|
|
font-weight: $font-weight-semi-bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-sidebar-section {
|
|
|
|
margin-bottom: $spacer*2;
|
|
|
|
}
|