fix(grid): fix grid header divider error (#3558)
This commit is contained in:
parent
5801d0c722
commit
c5d04e7b2f
|
@ -22,7 +22,6 @@
|
|||
@apply text-xs;
|
||||
@apply text-color-text-primary;
|
||||
|
||||
|
||||
// 在表格个性化场景,动态的设置冻结列,这里需要在非冻结列情况下消除之前设置的left和right样式,并提升权重覆盖style属性
|
||||
&:not(.fixed__column) {
|
||||
left: unset !important;
|
||||
|
@ -93,7 +92,7 @@
|
|||
@apply top-0;
|
||||
@apply m-auto;
|
||||
@apply w-4;
|
||||
@apply h-9;
|
||||
@apply h-4;
|
||||
@apply text-center;
|
||||
// 因为与AUI冻结实现方式不一样,此处不要同步 @apply ~'z-[1]'
|
||||
@apply select-none;
|
||||
|
@ -111,7 +110,7 @@
|
|||
}
|
||||
&:before {
|
||||
@apply w-px;
|
||||
@apply h-3/5;
|
||||
@apply h-full;
|
||||
@apply bg-color-border-separator;
|
||||
}
|
||||
&:after {
|
||||
|
@ -123,13 +122,6 @@
|
|||
|
||||
.@{grid-prefix-cls}-resizable {
|
||||
@apply cursor-col-resize;
|
||||
@apply h-4;
|
||||
|
||||
&.is__line {
|
||||
&:before {
|
||||
@apply h-full;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.is__multilevel {
|
||||
|
|
Loading…
Reference in New Issue