gy-webcode2 1.0.19 → 1.1.0
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/sidebar.scss +29 -28
- package/css/modules/table.scss +7 -7
- package/extend/axios.js +1 -1
- 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/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;
|
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
.el-table td.el-table__cell, .el-table th.el-table__cell.is-leaf{
|
|
43
|
-
border-bottom: 1px solid #
|
|
43
|
+
border-bottom: 1px solid #d9d9d9;
|
|
44
44
|
}
|
|
45
45
|
.el-table--border .el-table__cell, .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed{
|
|
46
|
-
border-right: 1px solid #
|
|
46
|
+
border-right: 1px solid #d9d9d9;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
.el-table--border, .el-table--group{
|
|
50
50
|
// border: none;
|
|
51
|
-
border: 1px solid #
|
|
51
|
+
border: 1px solid #d9d9d9;
|
|
52
52
|
}
|
|
53
53
|
.el-table--border {
|
|
54
54
|
border-right: none;
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
th{
|
|
114
114
|
font-weight: normal;
|
|
115
115
|
background: #fafafa;
|
|
116
|
-
border-bottom: 1px solid #
|
|
116
|
+
border-bottom: 1px solid #d9d9d9;
|
|
117
117
|
color: $color1;
|
|
118
118
|
font-size: 14px;
|
|
119
119
|
&:nth-of-type(1){
|
package/extend/axios.js
CHANGED
package/index.js
CHANGED