bkui-vue 0.0.1-beta.353 → 0.0.1-beta.354
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 +5 -0
- package/lib/table/table.less +6 -0
- package/lib/table/table.variable.css +5 -0
- package/package.json +1 -1
package/lib/table/table.css
CHANGED
@@ -1334,6 +1334,11 @@
|
|
1334
1334
|
width: 6px;
|
1335
1335
|
height: 6px;
|
1336
1336
|
}
|
1337
|
+
.bk-table .bk-table-body::-webkit-scrollbar-thumb {
|
1338
|
+
background: #dcdee5;
|
1339
|
+
border-radius: 50%;
|
1340
|
+
box-shadow: inset 0 0 6px rgba(204, 204, 204, 0.3);
|
1341
|
+
}
|
1337
1342
|
.bk-table .bk-fixed-bottom-border {
|
1338
1343
|
position: sticky;
|
1339
1344
|
bottom: 0;
|
package/lib/table/table.less
CHANGED
@@ -2167,6 +2167,11 @@
|
|
2167
2167
|
width: 6px;
|
2168
2168
|
height: 6px;
|
2169
2169
|
}
|
2170
|
+
.bk-table .bk-table-body::-webkit-scrollbar-thumb {
|
2171
|
+
background: #dcdee5;
|
2172
|
+
border-radius: 50%;
|
2173
|
+
box-shadow: inset 0 0 6px rgba(204, 204, 204, 0.3);
|
2174
|
+
}
|
2170
2175
|
.bk-table .bk-fixed-bottom-border {
|
2171
2176
|
position: sticky;
|
2172
2177
|
bottom: 0;
|