mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 07:35:45 -06:00
272 lines
4.3 KiB
SCSS
272 lines
4.3 KiB
SCSS
.panel-editor-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
.panel-wrapper {
|
|
height: 100%;
|
|
|
|
&--edit {
|
|
flex: 1 1 0;
|
|
height: unset;
|
|
margin: 0 $dashboard-padding;
|
|
}
|
|
|
|
&--view {
|
|
flex: 1 1 0;
|
|
height: 80%;
|
|
margin: 0 $dashboard-padding;
|
|
padding-top: $dashboard-padding;
|
|
}
|
|
}
|
|
|
|
.panel-editor-container__editor {
|
|
margin-top: $panel-margin*2;
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: 65%;
|
|
position: relative;
|
|
}
|
|
|
|
.panel-editor__right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-grow: 1;
|
|
background: $page-bg;
|
|
margin: 0 67px;
|
|
border-left: 2px solid #ac5224;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.panel-editor__scroll {
|
|
flex-grow: 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
}
|
|
|
|
.panel-editor__content {
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.panel-in-fullscreen {
|
|
.sidemenu {
|
|
display: none;
|
|
}
|
|
|
|
.dashboard-container {
|
|
padding: 0;
|
|
}
|
|
|
|
.submenu-controls {
|
|
padding: 0 $dashboard-padding $panel-margin $dashboard-padding;
|
|
}
|
|
|
|
.panel-editor-container__panel {
|
|
margin: 0 $dashboard-padding;
|
|
}
|
|
}
|
|
|
|
.panel-editor-resizer {
|
|
position: absolute;
|
|
height: 2px;
|
|
width: 100%;
|
|
top: -23px;
|
|
text-align: center;
|
|
border-bottom: 2px dashed transparent;
|
|
|
|
&:hover {
|
|
transition: border-color 0.2s ease-in 0.4s;
|
|
transition-delay: 0.2s;
|
|
border-color: $text-color-faint;
|
|
}
|
|
}
|
|
|
|
.panel-editor-resizer__handle {
|
|
display: inline-block;
|
|
width: 180px;
|
|
position: relative;
|
|
border-radius: 2px;
|
|
height: 7px;
|
|
cursor: grabbing;
|
|
background: $input-label-bg;
|
|
top: -9px;
|
|
|
|
&:hover {
|
|
transition: background 0.2s ease-in 0.4s;
|
|
transition-delay: 0.2s;
|
|
background: linear-gradient(90deg, $orange, $red);
|
|
.panel-editor-resizer__handle-dots {
|
|
transition: opacity 0.2s ease-in;
|
|
opacity: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.panel-editor-resizer__handle-dots {
|
|
border-top: 2px dashed $text-color-faint;
|
|
position: relative;
|
|
top: 4px;
|
|
}
|
|
|
|
.viz-picker {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 13px;
|
|
}
|
|
|
|
.viz-picker__item {
|
|
background: $card-background;
|
|
box-shadow: $card-shadow;
|
|
|
|
border-radius: 3px;
|
|
height: 90px;
|
|
width: 150px;
|
|
flex-shrink: 0;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
display: flex;
|
|
margin-right: 10px;
|
|
margin-bottom: 10px;
|
|
border: 1px solid transparent;
|
|
align-items: center;
|
|
|
|
&:hover {
|
|
background: $card-background-hover;
|
|
}
|
|
|
|
&--selected {
|
|
box-shadow: 0 0 12px #ff4d00;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.viz-picker__item-img {
|
|
height: 55px;
|
|
}
|
|
|
|
.panel-editor-tabs {
|
|
position: relative;
|
|
z-index: 2;
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
top: 79px;
|
|
left: 5px;
|
|
align-items: center;
|
|
|
|
&::before {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 25px;
|
|
width: 2px;
|
|
background: #8e8e8e;
|
|
}
|
|
}
|
|
|
|
.panel-editor-tabs__item {
|
|
margin-bottom: 25px;
|
|
position: relative;
|
|
z-index: 1;
|
|
text-align: center;
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.panel-editor-tabs__link {
|
|
display: inline-block;
|
|
|
|
&.active {
|
|
position: relative;
|
|
left: 4px;
|
|
}
|
|
|
|
img {
|
|
height: 44px;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.form-option-box {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.form-option-box__header {
|
|
border-bottom: 2px solid $dark-4;
|
|
padding: 5px 0px;
|
|
font-size: $font-size-md;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.form-section {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.form-section__header {
|
|
padding: 5px 10px;
|
|
font-size: $font-size-h5;
|
|
margin-bottom: 20px;
|
|
background: $input-label-bg;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.form-section__body {
|
|
padding: 0 10px;
|
|
}
|