2016-02-15 08:27:41 -06:00
|
|
|
.panel {
|
2017-10-16 02:55:55 -05:00
|
|
|
height: 100%;
|
2018-12-04 14:36:43 -06:00
|
|
|
}
|
2017-10-16 02:55:55 -05:00
|
|
|
|
2017-11-21 07:30:33 -06:00
|
|
|
.panel-height-helper {
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2016-02-15 08:27:41 -06:00
|
|
|
.panel-container {
|
2016-02-16 01:30:37 -06:00
|
|
|
background-color: $panel-bg;
|
2017-08-17 08:52:22 -05:00
|
|
|
border: $panel-border;
|
2016-02-15 08:27:41 -06:00
|
|
|
position: relative;
|
2017-10-26 09:06:28 -05:00
|
|
|
border-radius: 3px;
|
2018-07-09 11:17:51 -05:00
|
|
|
height: 100%;
|
2018-11-14 05:03:25 -06:00
|
|
|
width: 100%;
|
2020-04-16 14:35:58 -05:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 1 1 0;
|
2021-04-12 07:23:00 -05:00
|
|
|
box-shadow: $panel-box-shadow;
|
2016-02-15 08:27:41 -06:00
|
|
|
|
2019-11-25 15:26:18 -06:00
|
|
|
&--transparent {
|
2020-04-06 01:22:49 -05:00
|
|
|
background-color: transparent;
|
|
|
|
border: 1px solid transparent;
|
2021-04-12 07:23:00 -05:00
|
|
|
box-shadow: none;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
2018-01-03 06:03:26 -06:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.panel-menu-toggle {
|
|
|
|
visibility: visible;
|
|
|
|
transition: opacity 0.1s ease-in 0.2s;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2018-07-16 07:56:40 -05:00
|
|
|
|
|
|
|
&--is-editing {
|
|
|
|
height: auto;
|
|
|
|
}
|
2018-11-14 05:03:25 -06:00
|
|
|
|
|
|
|
&--absolute {
|
|
|
|
position: absolute;
|
|
|
|
}
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-content {
|
2019-03-21 05:10:44 -05:00
|
|
|
padding: $panel-padding;
|
2019-05-06 08:26:09 -05:00
|
|
|
width: 100%;
|
2020-04-16 14:35:58 -05:00
|
|
|
flex-grow: 1;
|
2020-04-21 02:12:34 -05:00
|
|
|
height: calc(100% - #{$panel-header-height});
|
2019-11-25 15:26:18 -06:00
|
|
|
|
|
|
|
&--no-padding {
|
|
|
|
padding: 0;
|
|
|
|
}
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
2021-04-15 05:21:36 -05:00
|
|
|
|
|
|
|
div.flot-text {
|
|
|
|
color: $text-color !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-solo {
|
|
|
|
.footer,
|
|
|
|
.sidemenu {
|
|
|
|
display: none;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
}
|
2016-12-05 04:43:51 -06:00
|
|
|
|
2021-04-15 05:21:36 -05:00
|
|
|
.template-variable {
|
|
|
|
color: $variable;
|
|
|
|
}
|
2019-02-06 12:42:04 -06:00
|
|
|
|
2021-04-15 05:21:36 -05:00
|
|
|
.panel-solo {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
2021-06-22 07:44:18 -05:00
|
|
|
width: '100%';
|
|
|
|
height: '100%';
|
2021-04-15 05:21:36 -05:00
|
|
|
|
|
|
|
.panel-container {
|
|
|
|
border: none;
|
2019-02-06 12:42:04 -06:00
|
|
|
}
|
2019-02-05 06:49:35 -06:00
|
|
|
|
2021-04-15 05:21:36 -05:00
|
|
|
.panel-menu-toggle,
|
|
|
|
.panel-menu {
|
|
|
|
display: none;
|
|
|
|
}
|
2019-02-05 06:49:35 -06:00
|
|
|
}
|