|
|
@@ -28,18 +28,10 @@
|
|
|
}
|
|
|
|
|
|
.panel-in-fullscreen {
|
|
|
- // .scroll-canvas--dashboard {
|
|
|
- // height: 100%;
|
|
|
- // }
|
|
|
-
|
|
|
.sidemenu {
|
|
|
display: none;
|
|
|
}
|
|
|
|
|
|
- // .main-view {
|
|
|
- // background: unset;
|
|
|
- // }
|
|
|
-
|
|
|
.dashboard-container {
|
|
|
padding: 0;
|
|
|
}
|
|
|
@@ -53,57 +45,6 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-.viz-picker {
|
|
|
- margin-bottom: $spacer;
|
|
|
-}
|
|
|
-
|
|
|
-.viz-picker__items {
|
|
|
- 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-resizer {
|
|
|
position: absolute;
|
|
|
height: 2px;
|
|
|
@@ -146,73 +87,61 @@
|
|
|
top: 4px;
|
|
|
}
|
|
|
|
|
|
-.panel-editor {
|
|
|
- height: calc(100% - 10px);
|
|
|
-}
|
|
|
-
|
|
|
-.form-option-box {
|
|
|
- margin-bottom: 20px;
|
|
|
-}
|
|
|
-
|
|
|
-.form-option-box__header {
|
|
|
- border-bottom: 2px solid $blue-dark;
|
|
|
- padding: 5px 0px;
|
|
|
- font-size: $font-size-lg;
|
|
|
- margin-bottom: 20px;
|
|
|
+.viz-picker {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ margin-bottom: 13px;
|
|
|
}
|
|
|
|
|
|
-.edit-section {
|
|
|
- position: relative;
|
|
|
-}
|
|
|
+.viz-picker__item {
|
|
|
+ background: $card-background;
|
|
|
+ box-shadow: $card-shadow;
|
|
|
|
|
|
-.edit-section__header {
|
|
|
- display: flex;
|
|
|
- align-content: center;
|
|
|
- align-items: center;
|
|
|
- background: $page-header-bg;
|
|
|
- box-shadow: 0 0 20px black;
|
|
|
- padding: 7px 30px 7px 20px;
|
|
|
+ border-radius: 3px;
|
|
|
+ height: 90px;
|
|
|
+ width: 150px;
|
|
|
+ flex-shrink: 0;
|
|
|
+ flex-direction: column;
|
|
|
+ text-align: center;
|
|
|
cursor: pointer;
|
|
|
- position: relative;
|
|
|
- z-index: 1;
|
|
|
-}
|
|
|
-
|
|
|
-.edit-section__selected {
|
|
|
- padding: $input-padding-y $input-padding-x;
|
|
|
- font-size: $font-size-md;
|
|
|
- line-height: $input-line-height;
|
|
|
- color: $input-color;
|
|
|
- background-color: $input-bg;
|
|
|
- border: $input-border;
|
|
|
- border-radius: $input-border-radius;
|
|
|
display: flex;
|
|
|
+ margin-right: 10px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ border: 1px solid transparent;
|
|
|
align-items: center;
|
|
|
- .fa {
|
|
|
- margin-left: 20px;
|
|
|
- display: inline-block;
|
|
|
- position: relative;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background: $card-background-hover;
|
|
|
+ }
|
|
|
+
|
|
|
+ &--selected {
|
|
|
+ box-shadow: 0 0 12px #ff4d00;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-.edit-section__title {
|
|
|
- font-size: $font-size-lg;
|
|
|
- padding-right: 20px;
|
|
|
- width: 150px;
|
|
|
+.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;
|
|
|
}
|
|
|
|
|
|
-.edit-section__selected-image {
|
|
|
- margin-right: 10px;
|
|
|
- display: inline-block;
|
|
|
- width: 20px;
|
|
|
- height: 20px;
|
|
|
+.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;
|
|
|
+
|
|
|
@include clearfix();
|
|
|
|
|
|
.active.gf-tabs-link {
|
|
|
@@ -238,28 +167,6 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-.editor-toolbar-view {
|
|
|
- position: relative;
|
|
|
- padding: 20px 20px;
|
|
|
- background-color: $empty-list-cta-bg;
|
|
|
- top: -45px;
|
|
|
- margin: 0 30px 20px 0px;
|
|
|
-}
|
|
|
-
|
|
|
-.editor-toolbar-view__close {
|
|
|
- background: transparent;
|
|
|
- padding: 4px 8px 4px 9px;
|
|
|
- border: none;
|
|
|
- position: absolute;
|
|
|
- right: 15px;
|
|
|
- top: 20px;
|
|
|
- font-size: $font-size-md;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- color: $text-color-strong;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
.ds-picker-list {
|
|
|
display: flex;
|
|
|
flex-wrap: wrap;
|
|
|
@@ -300,3 +207,14 @@
|
|
|
.ds-picker-list__img {
|
|
|
width: 30px;
|
|
|
}
|
|
|
+
|
|
|
+.form-option-box {
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|
|
|
+
|
|
|
+.form-option-box__header {
|
|
|
+ border-bottom: 2px solid $blue-dark;
|
|
|
+ padding: 5px 0px;
|
|
|
+ font-size: $font-size-lg;
|
|
|
+ margin-bottom: 20px;
|
|
|
+}
|