|
@@ -53,14 +53,12 @@ html, body, #app {
|
|
|
flex-direction: column;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
.hc-sticky-box {
|
|
|
position: sticky;
|
|
|
z-index: 99;
|
|
|
top: 0;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
.pover-menu-list {
|
|
|
position: relative;
|
|
|
.list-item {
|
|
@@ -88,7 +86,7 @@ html, body, #app {
|
|
|
|
|
|
#toolPanel, #optionPanel {
|
|
|
border-radius: 5px;
|
|
|
- box-shadow: 0 .5em 1em rgba(0,0,0,0.15);
|
|
|
+ box-shadow: 0 .5em 1em rgba(0, 0, 0, 0.15);
|
|
|
}
|
|
|
|
|
|
.el-radio-group .el-radio {
|
|
@@ -140,7 +138,6 @@ html, body, #app {
|
|
|
transform: translateX(30px);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
.hc-page-layout-box {
|
|
|
display: flex;
|
|
|
position: relative;
|
|
@@ -151,12 +148,12 @@ html, body, #app {
|
|
|
background: #f1f5f8;
|
|
|
border-radius: 10px;
|
|
|
margin-right: 24px;
|
|
|
- box-shadow: -2px 0 10px 0 rgba(32,37,50,0.03), 0 10px 21px 20px rgba(32,37,50,0.03);
|
|
|
+ box-shadow: -2px 0 10px 0 rgba(32, 37, 50, 0.03), 0 10px 21px 20px rgba(32, 37, 50, 0.03);
|
|
|
.horizontal-drag-line {
|
|
|
position: absolute;
|
|
|
right: 0;
|
|
|
top: 0;
|
|
|
- width: 2px;
|
|
|
+ width: 4px;
|
|
|
height: 100%;
|
|
|
user-select: none;
|
|
|
cursor: col-resize;
|
|
@@ -236,3 +233,20 @@ html, body, #app {
|
|
|
.z-9999 {
|
|
|
z-index: 9999 !important;
|
|
|
}
|
|
|
+
|
|
|
+//分割的样式
|
|
|
+.gutter {
|
|
|
+ background-color: #f1f5f8;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: 50%;
|
|
|
+}
|
|
|
+
|
|
|
+.gutter.gutter-vertical {
|
|
|
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
|
|
|
+ cursor: row-resize;
|
|
|
+}
|
|
|
+
|
|
|
+.gutter.gutter-horizontal {
|
|
|
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
|
|
|
+ cursor: col-resize;
|
|
|
+}
|