Files
grafana/public/sass/components/_panel_editor.scss

209 lines
3.5 KiB
SCSS
Raw Normal View History

2018-10-28 10:26:49 -07:00
.panel-editor-container {
display: flex;
flex-direction: column;
height: 100%;
}
.panel-editor-container__panel {
flex: 1 1 0;
}
.panel-editor-container__editor {
margin-top: $panel-margin*2;
display: flex;
flex-direction: column;
2018-10-28 10:26:49 -07:00
height: 65%;
position: relative;
}
.panel-editor__scroll {
2018-10-28 10:26:49 -07:00
flex-grow: 1;
min-width: 0;
display: flex;
padding: 0 5px;
}
.panel-editor__content {
padding: 40px 15px;
2018-10-28 10:26:49 -07:00
}
2018-10-27 10:14:38 +02:00
.panel-in-fullscreen {
.sidemenu {
display: none;
}
.dashboard-container {
padding: 0;
}
.submenu-controls {
2018-11-10 07:34:09 -08:00
padding: 0 $dashboard-padding $panel-margin $dashboard-padding;
2018-10-27 10:14:38 +02:00
}
.panel-editor-container__panel {
margin: 0 $dashboard-padding;
}
2018-07-07 05:10:03 -07:00
}
2018-10-27 15:09:36 +02:00
.panel-editor-resizer {
position: absolute;
height: 2px;
width: 100%;
2018-11-06 08:01:00 +01:00
top: -23px;
text-align: center;
2018-11-06 08:33:49 +01:00
border-bottom: 2px dashed transparent;
2018-11-06 08:01:00 +01:00
&:hover {
2018-11-06 08:33:49 +01:00
transition: border-color 0.2s ease-in 0.4s;
transition-delay: 0.2s;
border-color: $text-color-faint;
2018-11-06 08:01:00 +01:00
}
2018-10-27 15:09:36 +02:00
}
.panel-editor-resizer__handle {
display: inline-block;
2018-11-06 08:01:00 +01:00
width: 180px;
2018-10-27 15:09:36 +02:00
position: relative;
border-radius: 2px;
2018-11-14 15:17:28 +01:00
height: 7px;
2018-10-27 15:09:36 +02:00
cursor: grabbing;
2018-11-11 17:46:40 +01:00
background: $input-label-bg;
2018-11-14 15:17:28 +01:00
top: -9px;
2018-11-06 08:01:00 +01:00
&:hover {
2018-11-06 08:33:49 +01:00
transition: background 0.2s ease-in 0.4s;
transition-delay: 0.2s;
2018-11-11 17:46:40 +01:00
background: linear-gradient(90deg, $orange, $red);
2018-11-06 08:01:00 +01:00
.panel-editor-resizer__handle-dots {
2018-11-06 08:33:49 +01:00
transition: opacity 0.2s ease-in;
opacity: 0;
2018-11-06 08:01:00 +01:00
}
}
2018-10-27 15:09:36 +02:00
}
.panel-editor-resizer__handle-dots {
2018-11-06 08:01:00 +01:00
border-top: 2px dashed $text-color-faint;
2018-10-27 15:09:36 +02:00
position: relative;
2018-11-06 08:01:00 +01:00
top: 4px;
2018-10-27 15:09:36 +02:00
}
2018-11-10 17:27:25 +01:00
.viz-picker {
display: flex;
flex-wrap: wrap;
margin-bottom: 13px;
2018-11-06 18:55:35 +01:00
}
2018-11-10 17:27:25 +01:00
.viz-picker__item {
background: $card-background;
box-shadow: $card-shadow;
2018-11-10 17:27:25 +01:00
border-radius: 3px;
height: 90px;
width: 150px;
flex-shrink: 0;
flex-direction: column;
text-align: center;
cursor: pointer;
display: flex;
2018-11-10 17:27:25 +01:00
margin-right: 10px;
margin-bottom: 10px;
border: 1px solid transparent;
align-items: center;
2018-11-10 17:27:25 +01:00
&:hover {
background: $card-background-hover;
}
&--selected {
box-shadow: 0 0 12px #ff4d00;
}
}
2018-11-10 17:27:25 +01:00
.viz-picker__item-name {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font-size: $font-size-sm;
display: flex;
flex-direction: column;
align-self: center;
height: 23px;
}
2018-11-10 17:27:25 +01:00
.viz-picker__item-img {
height: 55px;
}
.panel-editor-tabs {
position: relative;
z-index: 2;
box-shadow: $page-header-shadow;
border-bottom: 1px solid $page-header-border-color;
padding: 0 $dashboard-padding;
2018-11-10 17:27:25 +01:00
@include clearfix();
.active.gf-tabs-link {
2018-11-11 17:46:40 +01:00
background: $toolbar-tab-bg;
}
}
.panel-editor-tabs__close {
2018-11-11 17:46:40 +01:00
padding: 5px 9px;
border-radius: $border-radius;
float: right;
2018-11-11 17:46:40 +01:00
@include buttonBackground($btn-primary-bg, $btn-primary-bg-hl);
}
2018-11-09 15:49:55 +01:00
.ds-picker-list {
display: flex;
flex-wrap: wrap;
margin-bottom: 13px;
flex-direction: column;
}
.ds-picker-list__item {
background: $card-background;
box-shadow: $card-shadow;
border-radius: 3px;
display: flex;
cursor: pointer;
margin-bottom: 3px;
padding: 5px 15px;
align-items: center;
&:hover {
background: $card-background-hover;
}
&--selected {
.ds-picker-list__name {
color: $text-color;
}
}
}
.ds-picker-list__name {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font-size: $font-size-md;
padding-left: 15px;
}
.ds-picker-list__img {
width: 30px;
}
2018-11-10 17:27:25 +01:00
.form-option-box {
margin-bottom: 20px;
}
.form-option-box__header {
2018-11-10 12:17:40 -08:00
border-bottom: 2px solid $dark-4;
2018-11-10 17:27:25 +01:00
padding: 5px 0px;
2018-11-10 12:17:40 -08:00
font-size: $font-size-md;
2018-11-10 17:27:25 +01:00
margin-bottom: 20px;
}