Fix small size fixed column table border

Close #9754
This commit is contained in:
Wei Zhu 2018-06-15 17:40:32 +08:00
parent c540ceb8eb
commit 5ab265a009

View File

@ -105,5 +105,16 @@
.@{table-prefix-cls}-tbody > tr > td:last-child {
border-right: none;
}
.@{table-prefix-cls}-fixed-left {
.@{table-prefix-cls}-thead > tr > th:last-child,
.@{table-prefix-cls}-tbody > tr > td:last-child {
border-right: @border-width-base @border-style-base @border-color-split;
}
}
.@{table-prefix-cls}-fixed-right {
border-right: @border-width-base @border-style-base @border-color-split;
}
}
}