@rufous/ui 0.2.98 → 0.2.99
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/main.css +8 -2
- package/package.json +1 -1
package/dist/main.css
CHANGED
|
@@ -441,6 +441,7 @@
|
|
|
441
441
|
border-top: 2px solid var(--border-color);
|
|
442
442
|
border-bottom: 1px solid var(--border-color);
|
|
443
443
|
overflow-x: auto;
|
|
444
|
+
overflow-y: auto;
|
|
444
445
|
flex: 1;
|
|
445
446
|
}
|
|
446
447
|
.dg-table-wrap--empty {
|
|
@@ -453,6 +454,11 @@
|
|
|
453
454
|
min-width: 600px;
|
|
454
455
|
table-layout: fixed;
|
|
455
456
|
}
|
|
457
|
+
.dg-table thead {
|
|
458
|
+
position: sticky;
|
|
459
|
+
top: 0;
|
|
460
|
+
z-index: 10;
|
|
461
|
+
}
|
|
456
462
|
.dg-table thead tr {
|
|
457
463
|
background: var(--hover-color);
|
|
458
464
|
border-bottom: 1px solid var(--border-color);
|
|
@@ -469,13 +475,13 @@
|
|
|
469
475
|
.dg-thead-cell.pinned-left {
|
|
470
476
|
position: sticky;
|
|
471
477
|
left: 0;
|
|
472
|
-
z-index:
|
|
478
|
+
z-index: 30;
|
|
473
479
|
box-shadow: inset -1px 0 0 var(--border-color);
|
|
474
480
|
}
|
|
475
481
|
.dg-thead-cell.pinned-right {
|
|
476
482
|
position: sticky;
|
|
477
483
|
right: 0;
|
|
478
|
-
z-index:
|
|
484
|
+
z-index: 30;
|
|
479
485
|
box-shadow: inset 1px 0 0 var(--border-color);
|
|
480
486
|
}
|
|
481
487
|
.dg-th-inner {
|