UNPKG

1.08 kBtext/lessView Raw
1// ================================================================
2// = Border Radio =
3// ================================================================
4.@{table-prefix-cls} {
5 /* title + table */
6 &-title {
7 border-radius: @table-border-radius-base @table-border-radius-base 0 0;
8 }
9
10 &-title + &-container {
11 border-top-left-radius: 0;
12 border-top-right-radius: 0;
13
14 table > thead > tr:first-child {
15 th:first-child {
16 border-radius: 0;
17 }
18
19 th:last-child {
20 border-radius: 0;
21 }
22 }
23 }
24
25 /* table */
26 &-container {
27 border-top-left-radius: @table-border-radius-base;
28 border-top-right-radius: @table-border-radius-base;
29
30 table > thead > tr:first-child {
31 th:first-child {
32 border-top-left-radius: @table-border-radius-base;
33 }
34
35 th:last-child {
36 border-top-right-radius: @table-border-radius-base;
37 }
38 }
39 }
40
41 /* table + footer */
42 &-footer {
43 border-radius: 0 0 @table-border-radius-base @table-border-radius-base;
44 }
45}