mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-07 09:26:06 +08:00
🐛 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:
parent
491e38838b
commit
e8dabedb76
@ -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';
|
||||
|
Loading…
Reference in New Issue
Block a user