gy-webcode2 1.0.20 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/layout.scss +3 -3
- package/css/modules/header.scss +5 -4
- package/css/modules/sidebar.scss +29 -28
- package/css/modules/table.scss +11 -8
- package/index.js +1 -1
- package/package.json +1 -1
package/css/layout.scss
CHANGED
|
@@ -171,10 +171,10 @@
|
|
|
171
171
|
align-items: center;
|
|
172
172
|
// align-items: flex-end;
|
|
173
173
|
// margin-bottom: 16px;
|
|
174
|
-
margin-bottom:
|
|
175
|
-
margin-top:
|
|
174
|
+
margin-bottom: 5px;
|
|
175
|
+
margin-top: 5px;
|
|
176
176
|
.name{
|
|
177
|
-
font-size:
|
|
177
|
+
font-size: 18px;
|
|
178
178
|
}
|
|
179
179
|
.myHover{
|
|
180
180
|
cursor: pointer;
|
package/css/modules/header.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
.wrapper_header{
|
|
2
|
-
height:
|
|
2
|
+
height: 40px;
|
|
3
3
|
display: flex;
|
|
4
4
|
@include theme('background-color','header_bgColor');
|
|
5
5
|
.logo{
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
.menu{
|
|
18
|
-
margin-left: 160px;
|
|
18
|
+
// margin-left: 160px;
|
|
19
|
+
margin-left: 20px;
|
|
19
20
|
display: flex;
|
|
20
21
|
height: 100%;
|
|
21
22
|
position: relative;
|
|
@@ -48,8 +49,8 @@
|
|
|
48
49
|
position: absolute;
|
|
49
50
|
width: 32px;
|
|
50
51
|
// background: #4172f6;
|
|
51
|
-
height:
|
|
52
|
-
border-radius:
|
|
52
|
+
height: 2px;
|
|
53
|
+
border-radius: 2px;
|
|
53
54
|
left: 0;
|
|
54
55
|
display: none;
|
|
55
56
|
bottom: 6px;
|
package/css/modules/sidebar.scss
CHANGED
|
@@ -28,22 +28,22 @@
|
|
|
28
28
|
|
|
29
29
|
}
|
|
30
30
|
&:hover{
|
|
31
|
-
.header{
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
}
|
|
31
|
+
// .header{
|
|
32
|
+
// .icon{
|
|
33
|
+
// &.itemColor_0{
|
|
34
|
+
// color: #4098e3 !important;
|
|
35
|
+
// }
|
|
36
|
+
// &.itemColor_1{
|
|
37
|
+
// color: #ffa310 !important;
|
|
38
|
+
// }
|
|
39
|
+
// &.itemColor_2{
|
|
40
|
+
// color: #c87ccd !important;
|
|
41
|
+
// }
|
|
42
|
+
// &.itemColor_3{
|
|
43
|
+
// color: #00c05f !important;
|
|
44
|
+
// }
|
|
45
|
+
// }
|
|
46
|
+
// }
|
|
47
47
|
.children{
|
|
48
48
|
display: block !important;
|
|
49
49
|
visibility: visible;
|
|
@@ -179,19 +179,20 @@
|
|
|
179
179
|
.header{
|
|
180
180
|
@include themeColor('color','sidebar_menu1_activeColor');
|
|
181
181
|
.icon{
|
|
182
|
+
@include themeColor('color','sidebar_menu1_activeColor');
|
|
182
183
|
// color: #2394e6 !important;
|
|
183
|
-
&.itemColor_0{
|
|
184
|
-
|
|
185
|
-
}
|
|
186
|
-
&.itemColor_1{
|
|
187
|
-
|
|
188
|
-
}
|
|
189
|
-
&.itemColor_2{
|
|
190
|
-
|
|
191
|
-
}
|
|
192
|
-
&.itemColor_3{
|
|
193
|
-
|
|
194
|
-
}
|
|
184
|
+
// &.itemColor_0{
|
|
185
|
+
// color: #4098e3;
|
|
186
|
+
// }
|
|
187
|
+
// &.itemColor_1{
|
|
188
|
+
// color: #ffa310;
|
|
189
|
+
// }
|
|
190
|
+
// &.itemColor_2{
|
|
191
|
+
// color: #c87ccd;
|
|
192
|
+
// }
|
|
193
|
+
// &.itemColor_3{
|
|
194
|
+
// color: #00c05f;
|
|
195
|
+
// }
|
|
195
196
|
}
|
|
196
197
|
.pointer{
|
|
197
198
|
.open{
|
package/css/modules/table.scss
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
.el-table{
|
|
3
3
|
color:$color;
|
|
4
4
|
td,th{
|
|
5
|
-
padding:
|
|
5
|
+
padding: 8px 0 !important;
|
|
6
6
|
}
|
|
7
7
|
th{
|
|
8
|
-
background: #
|
|
9
|
-
border-right: 1px solid #
|
|
8
|
+
background: #f0f0f0;
|
|
9
|
+
border-right: 1px solid #d9d9d9;
|
|
10
10
|
>.cell{
|
|
11
11
|
color:$color;
|
|
12
12
|
font-weight: initial;
|
|
@@ -32,7 +32,10 @@
|
|
|
32
32
|
&.el-table--mini td{
|
|
33
33
|
padding: 7px 0 !important;
|
|
34
34
|
}
|
|
35
|
-
|
|
35
|
+
.el-table__header-wrapper .el-table__header{
|
|
36
|
+
border-radius: 8px 8px 0 0;
|
|
37
|
+
overflow: hidden;
|
|
38
|
+
}
|
|
36
39
|
|
|
37
40
|
}
|
|
38
41
|
.el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell{
|
|
@@ -40,15 +43,15 @@
|
|
|
40
43
|
}
|
|
41
44
|
|
|
42
45
|
.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf{
|
|
43
|
-
border-bottom: 1px solid #
|
|
46
|
+
border-bottom: 1px solid #d9d9d9;
|
|
44
47
|
}
|
|
45
48
|
.el-table--border .el-table__cell, .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed{
|
|
46
|
-
border-right: 1px solid #
|
|
49
|
+
border-right: 1px solid #d9d9d9;
|
|
47
50
|
}
|
|
48
51
|
|
|
49
52
|
.el-table--border, .el-table--group{
|
|
50
53
|
// border: none;
|
|
51
|
-
border: 1px solid #
|
|
54
|
+
border: 1px solid #d9d9d9;
|
|
52
55
|
}
|
|
53
56
|
.el-table--border {
|
|
54
57
|
border-right: none;
|
|
@@ -113,7 +116,7 @@
|
|
|
113
116
|
th{
|
|
114
117
|
font-weight: normal;
|
|
115
118
|
background: #fafafa;
|
|
116
|
-
border-bottom: 1px solid #
|
|
119
|
+
border-bottom: 1px solid #d9d9d9;
|
|
117
120
|
color: $color1;
|
|
118
121
|
font-size: 14px;
|
|
119
122
|
&:nth-of-type(1){
|
package/index.js
CHANGED