bkui-vue 0.0.2-beta.20 → 0.0.2-beta.21
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/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/table/table.css +4 -1
- package/lib/table/table.less +2 -1
- package/lib/table/table.variable.css +4 -1
- package/package.json +1 -1
package/lib/table/table.css
CHANGED
@@ -1066,7 +1066,6 @@
|
|
1066
1066
|
height: var(--row-height);
|
1067
1067
|
min-width: 30px;
|
1068
1068
|
clear: both;
|
1069
|
-
background-color: #fff;
|
1070
1069
|
}
|
1071
1070
|
.bk-table .bk-table-head table th.expand-row .expand-btn-action,
|
1072
1071
|
.bk-table .bk-table-body table th.expand-row .expand-btn-action,
|
@@ -1199,6 +1198,10 @@
|
|
1199
1198
|
.bk-table .bk-table-body table thead th.column_fixed {
|
1200
1199
|
transform: translateX(var(--scroll-left));
|
1201
1200
|
}
|
1201
|
+
.bk-table .bk-table-head table tbody tr td,
|
1202
|
+
.bk-table .bk-table-body table tbody tr td {
|
1203
|
+
background-color: #fff;
|
1204
|
+
}
|
1202
1205
|
.bk-table .bk-table-head table tbody tr td.empty-cell,
|
1203
1206
|
.bk-table .bk-table-body table tbody tr td.empty-cell {
|
1204
1207
|
padding-bottom: 30px;
|
package/lib/table/table.less
CHANGED
@@ -118,7 +118,6 @@
|
|
118
118
|
height: var(--row-height);
|
119
119
|
min-width: 30px;
|
120
120
|
clear: both;
|
121
|
-
background-color: #fff;
|
122
121
|
|
123
122
|
&.expand-row {
|
124
123
|
.expand-btn-action {
|
@@ -237,6 +236,8 @@
|
|
237
236
|
tbody {
|
238
237
|
tr {
|
239
238
|
td {
|
239
|
+
background-color: #fff;
|
240
|
+
|
240
241
|
&.empty-cell {
|
241
242
|
padding-bottom: 30px;
|
242
243
|
}
|
@@ -1188,7 +1188,6 @@
|
|
1188
1188
|
height: var(--row-height);
|
1189
1189
|
min-width: 30px;
|
1190
1190
|
clear: both;
|
1191
|
-
background-color: #fff;
|
1192
1191
|
}
|
1193
1192
|
.bk-table .bk-table-head table th.expand-row .expand-btn-action,
|
1194
1193
|
.bk-table .bk-table-body table th.expand-row .expand-btn-action,
|
@@ -1321,6 +1320,10 @@
|
|
1321
1320
|
.bk-table .bk-table-body table thead th.column_fixed {
|
1322
1321
|
transform: translateX(var(--scroll-left));
|
1323
1322
|
}
|
1323
|
+
.bk-table .bk-table-head table tbody tr td,
|
1324
|
+
.bk-table .bk-table-body table tbody tr td {
|
1325
|
+
background-color: #fff;
|
1326
|
+
}
|
1324
1327
|
.bk-table .bk-table-head table tbody tr td.empty-cell,
|
1325
1328
|
.bk-table .bk-table-body table tbody tr td.empty-cell {
|
1326
1329
|
padding-bottom: 30px;
|