🐛 Fix Table border radius missing in Firefox

close #17611

ref https://github.com/ant-design/ant-design/pull/12263#discussion_r303193443
This commit is contained in:
afc163 2019-07-15 14:23:00 +08:00
parent 491e38838b
commit e8dabedb76

View File

@ -740,13 +740,18 @@
/**
* Another fix of Firefox:
* - https://github.com/ant-design/ant-design/issues/12628
* - https://github.com/ant-design/ant-design/issues/12628
*/
@supports (-moz-appearance: meterbar) {
// https://github.com/ant-design/ant-design/issues/12628
.@{table-prefix-cls}-thead > tr > th.@{table-prefix-cls}-column-has-actions {
background-clip: padding-box;
}
// https://github.com/ant-design/ant-design/issues/17611
.@{table-prefix-cls} table {
border-collapse: separate;
border-spacing: 0;
}
}
@import './size';