bkui-vue 0.0.1-beta.371 → 0.0.1-beta.373
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.js +19 -19
- package/dist/index.esm.js +20 -15
- package/dist/index.umd.js +20 -20
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/loading/loading.css +1 -0
- package/lib/loading/loading.less +1 -0
- package/lib/loading/loading.variable.css +1 -0
- package/lib/select/index.js +1 -1
- package/lib/table/index.js +1 -1
- package/lib/table/plugins/use-fixed-column.d.ts +1 -1
- package/lib/table/table.css +2 -1
- package/lib/table/table.less +2 -1
- package/lib/table/table.variable.css +2 -1
- package/package.json +1 -1
package/lib/table/table.less
CHANGED
@@ -305,7 +305,7 @@
|
|
305
305
|
position: absolute;
|
306
306
|
top: 0;
|
307
307
|
right: 0;
|
308
|
-
bottom:
|
308
|
+
bottom: var(--footer-height);
|
309
309
|
left: 0;
|
310
310
|
width: 100%;
|
311
311
|
pointer-events: none;
|
@@ -325,6 +325,7 @@
|
|
325
325
|
&.column_fixed_right {
|
326
326
|
top: 0;
|
327
327
|
right: 0;
|
328
|
+
z-index: 1;
|
328
329
|
|
329
330
|
&.shadow {
|
330
331
|
box-shadow: 0 0 10px rgb(0 0 0 / 12%);
|
@@ -1350,7 +1350,7 @@
|
|
1350
1350
|
position: absolute;
|
1351
1351
|
top: 0;
|
1352
1352
|
right: 0;
|
1353
|
-
bottom:
|
1353
|
+
bottom: var(--footer-height);
|
1354
1354
|
left: 0;
|
1355
1355
|
width: 100%;
|
1356
1356
|
pointer-events: none;
|
@@ -1368,6 +1368,7 @@
|
|
1368
1368
|
.bk-table .bk-table-fixed .column_fixed.column_fixed_right {
|
1369
1369
|
top: 0;
|
1370
1370
|
right: 0;
|
1371
|
+
z-index: 1;
|
1371
1372
|
}
|
1372
1373
|
.bk-table .bk-table-fixed .column_fixed.column_fixed_right.shadow {
|
1373
1374
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
|