2018-10-28 12:26:49 -05:00
|
|
|
.panel-editor-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2018-11-20 09:00:19 -06:00
|
|
|
.panel-wrapper {
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
&--edit {
|
2018-12-03 05:31:55 -06:00
|
|
|
height: 40%;
|
2018-11-20 10:09:47 -06:00
|
|
|
margin: 0 $dashboard-padding;
|
2018-11-20 09:00:19 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
&--view {
|
|
|
|
flex: 1 1 0;
|
|
|
|
height: 80%;
|
2018-11-20 10:09:47 -06:00
|
|
|
margin: 0 $dashboard-padding;
|
|
|
|
padding-top: $dashboard-padding;
|
2018-11-20 09:00:19 -06:00
|
|
|
}
|
2018-10-28 12:26:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-editor-container__editor {
|
|
|
|
margin-top: $panel-margin*2;
|
|
|
|
display: flex;
|
2018-11-21 13:32:04 -06:00
|
|
|
flex-direction: row;
|
2018-12-03 05:31:55 -06:00
|
|
|
flex: 1 1 0;
|
2018-10-28 12:26:49 -05:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2018-11-21 13:32:04 -06:00
|
|
|
.panel-editor__right {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-grow: 1;
|
2018-11-22 01:46:54 -06:00
|
|
|
background: $page-bg;
|
2018-11-28 08:51:45 -06:00
|
|
|
margin: 0 20px 0 84px;
|
|
|
|
border-left: 2px solid $orange;
|
2018-11-22 01:46:54 -06:00
|
|
|
border-radius: 3px;
|
2018-11-28 08:51:45 -06:00
|
|
|
box-shadow: $panel-editor-shadow;
|
2018-11-21 13:32:04 -06:00
|
|
|
}
|
|
|
|
|
2018-11-23 00:43:25 -06:00
|
|
|
.panel-editor__close {
|
|
|
|
@include buttonBackground($btn-inverse-bg, $btn-inverse-bg-hl);
|
|
|
|
position: absolute;
|
|
|
|
left: 11px;
|
|
|
|
top: 5px;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
i {
|
|
|
|
flex-grow: 1;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-09 06:17:41 -06:00
|
|
|
.panel-editor__scroll {
|
2018-10-28 12:26:49 -05:00
|
|
|
flex-grow: 1;
|
|
|
|
min-width: 0;
|
2018-11-09 06:17:41 -06:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-editor__content {
|
2018-11-20 04:26:01 -06:00
|
|
|
padding: 40px 20px;
|
2018-10-28 12:26:49 -05:00
|
|
|
}
|
|
|
|
|
2018-11-22 05:13:28 -06:00
|
|
|
.panel-editor__toolbar-view {
|
2018-11-28 08:51:45 -06:00
|
|
|
background: $panel-editor-toolbar-view-bg;
|
2018-11-22 05:13:28 -06:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
2018-10-27 03:14:38 -05:00
|
|
|
.panel-in-fullscreen {
|
|
|
|
.sidemenu {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-container {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.submenu-controls {
|
2018-11-10 09:34:09 -06:00
|
|
|
padding: 0 $dashboard-padding $panel-margin $dashboard-padding;
|
2018-10-27 03:14:38 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-editor-container__panel {
|
|
|
|
margin: 0 $dashboard-padding;
|
|
|
|
}
|
2018-07-07 07:10:03 -05:00
|
|
|
}
|
|
|
|
|
2018-10-27 08:09:36 -05:00
|
|
|
.panel-editor-resizer {
|
|
|
|
position: absolute;
|
|
|
|
height: 2px;
|
|
|
|
width: 100%;
|
2018-11-06 01:01:00 -06:00
|
|
|
top: -23px;
|
|
|
|
text-align: center;
|
2018-11-06 01:33:49 -06:00
|
|
|
border-bottom: 2px dashed transparent;
|
2018-11-06 01:01:00 -06:00
|
|
|
|
|
|
|
&:hover {
|
2018-11-06 01:33:49 -06:00
|
|
|
transition: border-color 0.2s ease-in 0.4s;
|
|
|
|
transition-delay: 0.2s;
|
|
|
|
border-color: $text-color-faint;
|
2018-11-06 01:01:00 -06:00
|
|
|
}
|
2018-10-27 08:09:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-editor-resizer__handle {
|
|
|
|
display: inline-block;
|
2018-11-06 01:01:00 -06:00
|
|
|
width: 180px;
|
2018-10-27 08:09:36 -05:00
|
|
|
position: relative;
|
|
|
|
border-radius: 2px;
|
2018-11-14 08:17:28 -06:00
|
|
|
height: 7px;
|
2018-10-27 08:09:36 -05:00
|
|
|
cursor: grabbing;
|
2018-11-11 10:46:40 -06:00
|
|
|
background: $input-label-bg;
|
2018-11-14 08:17:28 -06:00
|
|
|
top: -9px;
|
2018-11-06 01:01:00 -06:00
|
|
|
|
|
|
|
&:hover {
|
2018-11-06 01:33:49 -06:00
|
|
|
transition: background 0.2s ease-in 0.4s;
|
|
|
|
transition-delay: 0.2s;
|
2018-11-11 10:46:40 -06:00
|
|
|
background: linear-gradient(90deg, $orange, $red);
|
2018-11-06 01:01:00 -06:00
|
|
|
.panel-editor-resizer__handle-dots {
|
2018-11-06 01:33:49 -06:00
|
|
|
transition: opacity 0.2s ease-in;
|
|
|
|
opacity: 0;
|
2018-11-06 01:01:00 -06:00
|
|
|
}
|
|
|
|
}
|
2018-10-27 08:09:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-editor-resizer__handle-dots {
|
2018-11-06 01:01:00 -06:00
|
|
|
border-top: 2px dashed $text-color-faint;
|
2018-10-27 08:09:36 -05:00
|
|
|
position: relative;
|
2018-11-06 01:01:00 -06:00
|
|
|
top: 4px;
|
2018-10-27 08:09:36 -05:00
|
|
|
}
|
|
|
|
|
2018-11-10 10:27:25 -06:00
|
|
|
.viz-picker {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-bottom: 13px;
|
2018-11-06 11:55:35 -06:00
|
|
|
}
|
2018-11-09 06:17:41 -06:00
|
|
|
|
2018-11-10 10:27:25 -06:00
|
|
|
.viz-picker__item {
|
2018-11-28 08:51:45 -06:00
|
|
|
background: $panel-editor-viz-item-bg;
|
|
|
|
border: $panel-editor-viz-item-border;
|
2018-11-10 10:27:25 -06:00
|
|
|
border-radius: 3px;
|
2018-11-28 08:51:45 -06:00
|
|
|
height: 100px;
|
2018-11-10 10:27:25 -06:00
|
|
|
width: 150px;
|
|
|
|
flex-shrink: 0;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
2018-11-09 06:17:41 -06:00
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
2018-11-10 10:27:25 -06:00
|
|
|
margin-right: 10px;
|
|
|
|
margin-bottom: 10px;
|
2018-11-28 08:51:45 -06:00
|
|
|
//border: 1px solid transparent;
|
2018-11-09 06:17:41 -06:00
|
|
|
align-items: center;
|
2018-11-28 08:51:45 -06:00
|
|
|
justify-content: center;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
transition: transform 1 ease;
|
2018-11-10 10:27:25 -06:00
|
|
|
|
|
|
|
&:hover {
|
2018-11-28 08:51:45 -06:00
|
|
|
box-shadow: $panel-editor-viz-item-shadow-hover;
|
|
|
|
background: $panel-editor-viz-item-bg-hover;
|
|
|
|
border: $panel-editor-viz-item-border-hover;
|
2018-11-10 10:27:25 -06:00
|
|
|
}
|
|
|
|
|
2018-12-10 07:45:49 -06:00
|
|
|
&--current {
|
2018-11-28 08:51:45 -06:00
|
|
|
box-shadow: 0 0 6px $orange;
|
|
|
|
border: 1px solid $orange;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
box-shadow: 0 0 6px $orange;
|
|
|
|
border: 1px solid $orange;
|
|
|
|
background: $panel-editor-viz-item-bg-hover-active;
|
|
|
|
}
|
2018-11-09 06:17:41 -06:00
|
|
|
}
|
2018-12-10 07:45:49 -06:00
|
|
|
|
|
|
|
&--selected {
|
|
|
|
box-shadow: 0 0 6px $purple;
|
|
|
|
border: 1px solid $purple;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
box-shadow: 0 0 6px $purple;
|
|
|
|
border: 1px solid $purple;
|
|
|
|
background: $panel-editor-viz-item-bg-hover-active;
|
|
|
|
}
|
|
|
|
}
|
2018-11-09 06:17:41 -06:00
|
|
|
}
|
|
|
|
|
2018-11-10 10:27:25 -06: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-28 08:51:45 -06:00
|
|
|
font-weight: 500;
|
2018-11-09 06:17:41 -06:00
|
|
|
}
|
|
|
|
|
2018-11-10 10:27:25 -06:00
|
|
|
.viz-picker__item-img {
|
|
|
|
height: 55px;
|
2018-11-09 06:17:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.panel-editor-tabs {
|
2018-11-09 13:33:33 -06:00
|
|
|
position: relative;
|
|
|
|
z-index: 2;
|
2018-11-21 13:32:04 -06:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-11-22 01:46:54 -06:00
|
|
|
position: absolute;
|
2018-11-28 08:51:45 -06:00
|
|
|
top: 44px;
|
|
|
|
left: 20px;
|
2018-11-23 00:31:13 -06:00
|
|
|
align-items: flex-start;
|
2018-11-22 01:46:54 -06:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2018-11-28 08:51:45 -06:00
|
|
|
top: 10px;
|
|
|
|
bottom: 10px;
|
2018-11-23 00:31:13 -06:00
|
|
|
left: 21px;
|
2018-11-22 01:46:54 -06:00
|
|
|
width: 2px;
|
2018-11-28 08:51:45 -06:00
|
|
|
background: $panel-editor-tabs-line-color;
|
2018-11-22 01:46:54 -06:00
|
|
|
}
|
2018-11-09 06:17:41 -06:00
|
|
|
}
|
|
|
|
|
2018-11-21 13:32:04 -06:00
|
|
|
.panel-editor-tabs__item {
|
|
|
|
margin-bottom: 25px;
|
2018-11-22 01:46:54 -06:00
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-editor-tabs__link {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2018-11-28 08:51:45 -06:00
|
|
|
.gicon {
|
2018-11-22 01:46:54 -06:00
|
|
|
height: 44px;
|
2018-11-28 08:51:45 -06:00
|
|
|
width: 53px;
|
|
|
|
margin-right: 5px;
|
2018-12-03 05:31:55 -06:00
|
|
|
transition: transform 0.1s ease 0.1s;
|
2018-11-28 08:51:45 -06:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
filter: $panel-editor-side-menu-shadow;
|
|
|
|
transform: translate(-2px, -2px);
|
|
|
|
transform: scale(1.1);
|
|
|
|
}
|
2018-11-22 01:46:54 -06:00
|
|
|
}
|
2018-11-09 06:17:41 -06:00
|
|
|
}
|
|
|
|
|
2018-11-09 08:49:55 -06:00
|
|
|
.ds-picker-list {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-bottom: 13px;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ds-picker-list__item {
|
2018-11-28 08:51:45 -06:00
|
|
|
background: $panel-editor-viz-item-bg;
|
|
|
|
border: $panel-editor-viz-item-border;
|
2018-11-09 08:49:55 -06:00
|
|
|
border-radius: 3px;
|
|
|
|
display: flex;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
padding: 5px 15px;
|
|
|
|
align-items: center;
|
2018-11-28 08:51:45 -06:00
|
|
|
height: 44px;
|
2018-11-09 08:49:55 -06:00
|
|
|
|
|
|
|
&:hover {
|
2018-11-28 08:51:45 -06:00
|
|
|
background: $panel-editor-viz-item-bg-hover;
|
|
|
|
border: $panel-editor-viz-item-border-hover;
|
2018-11-30 07:14:23 -06:00
|
|
|
box-shadow: $panel-editor-viz-item-shadow-hover;
|
2018-11-09 08:49:55 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
&--selected {
|
2018-11-28 08:51:45 -06:00
|
|
|
box-shadow: 0 0 6px $orange;
|
|
|
|
border: 1px solid $orange;
|
|
|
|
|
2018-11-09 08:49:55 -06:00
|
|
|
.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 10:27:25 -06:00
|
|
|
|
|
|
|
.form-option-box {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-option-box__header {
|
2018-11-10 14:17:40 -06:00
|
|
|
border-bottom: 2px solid $dark-4;
|
2018-11-10 10:27:25 -06:00
|
|
|
padding: 5px 0px;
|
2018-11-10 14:17:40 -06:00
|
|
|
font-size: $font-size-md;
|
2018-11-10 10:27:25 -06:00
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2018-11-20 04:06:36 -06:00
|
|
|
|
|
|
|
.form-section {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-section__header {
|
2018-11-20 04:26:01 -06:00
|
|
|
padding: 5px 10px;
|
2018-11-20 04:06:36 -06:00
|
|
|
font-size: $font-size-h5;
|
|
|
|
margin-bottom: 20px;
|
2018-11-20 04:26:01 -06:00
|
|
|
background: $input-label-bg;
|
|
|
|
border-radius: 3px;
|
2018-11-20 04:06:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-section__body {
|
2018-11-20 04:26:01 -06:00
|
|
|
padding: 0 10px;
|
2018-11-20 04:06:36 -06:00
|
|
|
}
|
2018-11-28 08:51:45 -06:00
|
|
|
|
|
|
|
.panel-editor-tabs__item-popover {
|
|
|
|
background: $orange;
|
|
|
|
}
|