2016-02-26 18:25:39 +01:00
|
|
|
.dashboard-container {
|
|
|
|
|
padding: $dashboard-padding;
|
|
|
|
|
width: 100%;
|
2017-08-17 21:32:23 +02:00
|
|
|
min-height: 100%;
|
2016-02-26 18:25:39 +01:00
|
|
|
}
|
|
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
.template-variable {
|
|
|
|
|
color: $variable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.flot-text {
|
2016-02-16 09:42:46 +01:00
|
|
|
color: $text-color !important;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel {
|
2017-10-16 09:55:55 +02:00
|
|
|
height: 100%;
|
|
|
|
|
|
2016-11-06 15:40:02 +01:00
|
|
|
&--solo {
|
|
|
|
|
.panel-container {
|
|
|
|
|
border: none;
|
2017-12-19 16:22:41 +01:00
|
|
|
z-index: $zindex-sidemenu + 1;
|
2016-11-06 15:40:02 +01:00
|
|
|
}
|
|
|
|
|
}
|
2016-02-15 15:27:41 +01: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;
|
2017-10-26 16:06:28 +02:00
|
|
|
border-radius: 3px;
|
2018-04-06 21:29:42 +02:00
|
|
|
height: 100%;
|
2016-02-15 15:27:41 +01:00
|
|
|
|
|
|
|
|
&.panel-transparent {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-content {
|
2017-11-29 13:21:42 +01:00
|
|
|
padding: $panel-padding;
|
2017-11-21 14:30:33 +01:00
|
|
|
height: calc(100% - 27px);
|
2017-11-22 14:46:17 +01:00
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-title-container {
|
2016-03-06 12:34:47 +01:00
|
|
|
min-height: 9px;
|
2017-04-11 10:05:30 +02:00
|
|
|
cursor: move;
|
2017-01-16 06:02:07 -05:00
|
|
|
word-wrap: break-word;
|
2017-04-11 10:05:30 +02:00
|
|
|
display: block;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-title {
|
|
|
|
|
border: 0px;
|
2016-02-16 10:42:06 +01:00
|
|
|
font-weight: $font-weight-semi-bold;
|
2016-02-15 15:27:41 +01:00
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: block;
|
2017-08-03 10:35:27 +02:00
|
|
|
padding-bottom: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-title-text {
|
|
|
|
|
cursor: pointer;
|
2017-08-14 13:57:16 +02:00
|
|
|
font-weight: $font-weight-semi-bold;
|
2017-08-03 10:35:27 +02:00
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: $link-hover-color;
|
|
|
|
|
}
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
2017-04-11 10:05:30 +02:00
|
|
|
.panel-menu-container {
|
2017-08-03 13:26:30 +02:00
|
|
|
width: 1px;
|
|
|
|
|
height: 19px;
|
|
|
|
|
display: inline-block;
|
2017-04-11 10:05:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-menu-toggle {
|
2017-06-08 16:57:37 +02:00
|
|
|
color: $text-color-weak;
|
2017-04-11 10:05:30 +02:00
|
|
|
cursor: pointer;
|
2017-04-11 07:43:40 +02:00
|
|
|
padding: 3px 5px;
|
2017-08-03 10:35:27 +02:00
|
|
|
visibility: hidden;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
2017-08-03 13:26:30 +02:00
|
|
|
left: 1px;
|
|
|
|
|
top: 4px;
|
2017-08-03 10:35:27 +02:00
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: $link-hover-color;
|
|
|
|
|
}
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-loading {
|
2017-12-19 16:22:41 +01:00
|
|
|
position: absolute;
|
2016-02-15 15:27:41 +01:00
|
|
|
top: -3px;
|
|
|
|
|
right: 0px;
|
|
|
|
|
z-index: 800;
|
2017-08-03 10:35:27 +02:00
|
|
|
font-size: $font-size-sm;
|
|
|
|
|
color: $text-color-weak;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.panel-header {
|
|
|
|
|
text-align: center;
|
2017-04-11 07:43:40 +02:00
|
|
|
|
|
|
|
|
&:hover {
|
2017-08-03 10:35:27 +02:00
|
|
|
transition: background-color 0.1s ease-in-out;
|
|
|
|
|
background-color: $panel-header-hover-bg;
|
2017-04-11 07:43:40 +02:00
|
|
|
}
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
2017-04-11 10:05:30 +02:00
|
|
|
.panel-menu {
|
2017-06-08 16:22:51 +02:00
|
|
|
top: 25px;
|
|
|
|
|
left: -100px;
|
2017-04-11 07:43:40 +02:00
|
|
|
}
|
2017-01-02 11:13:50 +01:00
|
|
|
|
|
|
|
|
.panel-info-corner-inner {
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@mixin panel-corner-color($corner-bg) {
|
|
|
|
|
.panel-info-corner-inner {
|
|
|
|
|
border-left: 27px solid $corner-bg;
|
|
|
|
|
border-right: none;
|
|
|
|
|
border-bottom: 27px solid transparent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-16 10:34:00 +01:00
|
|
|
.panel-info-corner {
|
2016-12-16 12:11:29 -05:00
|
|
|
color: $text-muted;
|
2016-12-16 10:34:00 +01:00
|
|
|
cursor: pointer;
|
2016-02-15 15:27:41 +01:00
|
|
|
position: absolute;
|
2016-12-16 10:34:00 +01:00
|
|
|
display: none;
|
2016-02-15 15:27:41 +01:00
|
|
|
left: 0;
|
2016-12-16 12:46:29 +01:00
|
|
|
width: 27px;
|
|
|
|
|
height: 27px;
|
2016-02-15 15:27:41 +01:00
|
|
|
top: 0;
|
2017-12-01 16:31:55 +03:00
|
|
|
z-index: 1;
|
2016-12-16 12:46:29 +01:00
|
|
|
|
|
|
|
|
.fa {
|
2016-02-15 15:27:41 +01:00
|
|
|
position: relative;
|
2016-12-16 12:11:29 -05:00
|
|
|
top: -4px;
|
2016-12-16 12:51:22 -05:00
|
|
|
left: -6px;
|
2016-12-16 12:11:29 -05:00
|
|
|
font-size: 75%;
|
2017-12-01 16:31:55 +03:00
|
|
|
z-index: 1;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
2016-12-16 10:34:00 +01:00
|
|
|
|
2016-12-16 12:46:29 +01:00
|
|
|
&--info {
|
2016-12-16 10:34:00 +01:00
|
|
|
display: block;
|
2017-01-02 11:13:50 +01:00
|
|
|
@include panel-corner-color(lighten($panel-bg, 4%));
|
2016-12-16 10:34:00 +01:00
|
|
|
.fa:before {
|
2018-01-16 14:41:08 +01:00
|
|
|
content: '\f129';
|
2016-12-16 10:34:00 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-16 12:46:29 +01:00
|
|
|
&--links {
|
|
|
|
|
display: block;
|
2017-01-02 11:13:50 +01:00
|
|
|
@include panel-corner-color(lighten($panel-bg, 4%));
|
2016-12-16 12:46:29 +01:00
|
|
|
.fa {
|
2016-12-16 12:51:22 -05:00
|
|
|
left: -5px;
|
2016-12-16 12:46:29 +01:00
|
|
|
}
|
|
|
|
|
.fa:before {
|
2018-01-16 14:41:08 +01:00
|
|
|
content: '\f08e';
|
2016-12-16 12:46:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--error {
|
2016-12-16 10:34:00 +01:00
|
|
|
display: block;
|
2016-12-16 12:51:22 -05:00
|
|
|
color: $text-color;
|
2017-09-12 08:01:44 +02:00
|
|
|
@include panel-corner-color($popover-error-bg);
|
2016-12-16 10:34:00 +01:00
|
|
|
.fa:before {
|
2018-01-16 14:41:08 +01:00
|
|
|
content: '\f12a';
|
2016-12-16 10:34:00 +01:00
|
|
|
}
|
|
|
|
|
}
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
|
2017-12-19 16:22:41 +01:00
|
|
|
.panel-hover-highlight {
|
2017-08-03 10:35:27 +02:00
|
|
|
.panel-menu-toggle {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
transition: opacity 0.1s ease-in 0.2s;
|
|
|
|
|
opacity: 1;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
2016-11-16 14:28:32 +01:00
|
|
|
}
|
|
|
|
|
|
2016-02-15 15:27:41 +01:00
|
|
|
.panel-time-info {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
float: right;
|
|
|
|
|
margin-right: 15px;
|
|
|
|
|
color: $blue;
|
|
|
|
|
font-size: 85%;
|
|
|
|
|
position: absolute;
|
2017-08-09 15:33:19 +02:00
|
|
|
top: 4px;
|
2016-02-15 15:27:41 +01:00
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dashboard-header {
|
2016-02-23 17:40:39 +01:00
|
|
|
font-family: $headings-font-family;
|
2016-04-11 16:21:25 -04:00
|
|
|
font-size: $font-size-h3;
|
2016-02-15 15:27:41 +01:00
|
|
|
text-align: center;
|
2017-08-25 14:47:57 +02:00
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: -10px;
|
2016-02-15 15:27:41 +01:00
|
|
|
span {
|
|
|
|
|
display: inline-block;
|
2016-02-24 10:32:22 +01:00
|
|
|
@include brand-bottom-border();
|
2017-12-19 16:22:41 +01:00
|
|
|
padding: 0.5rem 0.5rem 0.2rem 0.5rem;
|
2016-02-15 15:27:41 +01:00
|
|
|
}
|
|
|
|
|
}
|
2016-12-05 11:43:51 +01:00
|
|
|
|
2017-12-09 22:45:33 +01:00
|
|
|
.panel-full-edit {
|
|
|
|
|
margin: $dashboard-padding (-$dashboard-padding) 0 (-$dashboard-padding);
|
|
|
|
|
}
|