We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6510882 commit 7286429Copy full SHA for 7286429
src/table/main.scss
@@ -72,9 +72,14 @@
72
}
73
74
&-affix {
75
- z-index: 10;
+ z-index: 1;
76
overflow: hidden;
77
78
+ &-stickylock {
79
+ #{$table-prefix}-affix {
80
+ z-index: 10;
81
+ }
82
83
&-header-resizable {
84
position: relative;
85
#{$table-prefix}-resize-handler {
src/table/new-lock.jsx
@@ -368,6 +368,7 @@ export default function stickyLock(BaseComponent) {
368
components.Row = components.Row || LockRow;
369
className = classnames({
370
[`${prefix}table-lock`]: true,
371
+ [`${prefix}table-stickylock`]: true,
372
[`${prefix}table-wrap-empty`]: !dataSource.length,
373
[className]: className,
374
});
0 commit comments