Fix small bordered table style

Fix #8980
This commit is contained in:
Wei Zhu 2018-02-08 16:14:05 +08:00
parent 7b4abe7568
commit 7d3ff69e12

View File

@ -83,6 +83,10 @@
border-right: @border-width-base @border-style-base @border-color-split;
}
.@{table-prefix-cls}-content {
border-right: @border-width-base @border-style-base @border-color-split;
}
.@{table-prefix-cls}-footer {
border: 0;
border-top: @border-width-base @border-style-base @border-color-split;
@ -96,5 +100,10 @@
border-left: 0;
border-bottom: 0;
}
.@{table-prefix-cls}-thead > tr > th:last-child,
.@{table-prefix-cls}-tbody > tr > td:last-child {
border-right: none;
}
}
}