@mc-markets/ui 1.0.67 → 1.0.68
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/dist/index.cjs.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/packages/styles/components/button.scss +89 -87
- package/packages/styles/components/checkbox.scss +12 -8
- package/packages/styles/components/form.scss +18 -16
- package/packages/styles/components/override.scss +0 -234
- package/packages/styles/components/select.scss +45 -45
- package/packages/styles/components/table.scss +54 -52
- package/packages/styles/components/tabs.scss +6 -4
- package/packages/styles/index.scss +0 -2
|
@@ -1,62 +1,64 @@
|
|
|
1
|
-
.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
.mc-ui-override {
|
|
2
|
+
.el-table {
|
|
3
|
+
--el-table-header-bg-color: var(--bg-quaternary);
|
|
4
|
+
--el-table-row-hover-bg-color: var(--bg-tertiary-hover);
|
|
5
|
+
--el-table-border-color: transparent;
|
|
6
|
+
--el-table-header-text-color: var(--text-tertiary);
|
|
7
|
+
--el-table-tr-bg-color: transparent;
|
|
8
|
+
|
|
9
|
+
border: none;
|
|
10
|
+
border-radius: 8px;
|
|
11
|
+
|
|
12
|
+
thead {
|
|
13
|
+
th {
|
|
14
|
+
font-weight: 500;
|
|
15
|
+
}
|
|
16
|
+
.cell {
|
|
17
|
+
line-height: 28px;
|
|
18
|
+
}
|
|
19
|
+
.el-table__cell {
|
|
20
|
+
padding: 8px 0px;
|
|
21
|
+
border: none;
|
|
22
|
+
}
|
|
17
23
|
}
|
|
24
|
+
|
|
18
25
|
.el-table__cell {
|
|
19
|
-
padding:
|
|
26
|
+
padding: 18px 0px;
|
|
20
27
|
border: none;
|
|
21
28
|
}
|
|
22
|
-
}
|
|
23
29
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
.cell {
|
|
30
|
-
line-height: 20px;
|
|
31
|
-
padding: 0 16px;
|
|
32
|
-
}
|
|
30
|
+
.cell {
|
|
31
|
+
line-height: 20px;
|
|
32
|
+
padding: 0 16px;
|
|
33
|
+
}
|
|
33
34
|
|
|
34
|
-
|
|
35
|
-
|
|
35
|
+
.el-table__row:last-of-type {
|
|
36
|
+
.el-table__cell {
|
|
37
|
+
border-bottom: none;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.el-table__inner-wrapper::before {
|
|
42
|
+
display: none;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
th.el-table__cell.is-leaf {
|
|
36
46
|
border-bottom: none;
|
|
37
47
|
}
|
|
38
|
-
}
|
|
39
48
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
// 去掉单元格边框
|
|
57
|
-
td.el-table__cell,
|
|
58
|
-
th.el-table__cell {
|
|
59
|
-
border-right: none;
|
|
60
|
-
border-bottom: none;
|
|
49
|
+
// 去掉所有边框
|
|
50
|
+
.el-table__border-left-patch,
|
|
51
|
+
.el-table__border-right-patch,
|
|
52
|
+
.el-table__border-top-patch,
|
|
53
|
+
.el-table__border-bottom-patch {
|
|
54
|
+
display: none;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// 去掉单元格边框
|
|
58
|
+
td.el-table__cell,
|
|
59
|
+
th.el-table__cell {
|
|
60
|
+
border-right: none;
|
|
61
|
+
border-bottom: none;
|
|
62
|
+
}
|
|
61
63
|
}
|
|
62
|
-
}
|
|
64
|
+
}
|