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