Browse Source

fix: table sticky zindex calculation (#26800)

pull/26810/head
John Bear 4 years ago
committed by GitHub
parent
commit
5b5518acfb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      components/table/style/index.less

2
components/table/style/index.less

@ -9,7 +9,7 @@
@table-header-icon-color: #bfbfbf;
@table-header-icon-color-hover: darken(@table-header-icon-color, 10%);
@table-header-sort-active-filter-bg: lighten(@table-header-sort-active-bg, 2%);
@table-sticky-zindex: @zindex-table-fixed + 1;
@table-sticky-zindex: calc(@zindex-table-fixed + 1);
@table-sticky-scroll-bar-active-bg: fade(@table-sticky-scroll-bar-bg, 80%);
.@{table-prefix-cls}-wrapper {

Loading…
Cancel
Save