Skip to content

Commit

Permalink
fix(module:table): fix border-right of small size and bordered table (#…
Browse files Browse the repository at this point in the history
…4027)

* fix(module:table): fix border-right of small size and bordered table

* fix(module:table): style path

* fix(module:table): revert demo

* fix(module:table): style patch

* fix(module:table): style patch

* fix(module:table): style patch
  • Loading branch information
danranVm authored and simplejason committed Aug 26, 2019
1 parent 2b8150c commit a3bd531
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions components/table/style/patch.less
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,15 @@

.@{table-prefix-cls}-small {
&.@{table-prefix-cls}-bordered {
.@{table-prefix-cls}-thead > tr > th:last-child,
.@{table-prefix-cls}-tbody > tr > td:last-child {
.@{table-prefix-cls}-thead > tr > th:last-child {
border-right: @border-width-base @border-style-base @border-color-split;
}
.@{table-prefix-cls}-thead > tr:first-child > th:last-child,
.@{table-prefix-cls}-tbody > tr:first-child > td:last-child {

.@{table-prefix-cls}-thead > tr:first-child > th:last-child {
border-right: none;
}

.@{table-prefix-cls}-footer {
border-right: none;
}
}
Expand Down

0 comments on commit a3bd531

Please sign in to comment.