mirror of https://github.com/ElemeFE/element
Table: fix empty text vertical alignment issue on IE10+ (#13638)
* Table: fix empty text vertical alignment issue on IE10+ * Table: add a comment to IE-specific fixespull/13714/head
parent
fb4ee26b68
commit
7a031e6399
|
@ -27,6 +27,9 @@
|
|||
}
|
||||
|
||||
@include e(empty-text) {
|
||||
// min-height doesn't work in IE10 and IE11 https://github.com/philipwalton/flexbugs#3-min-height-on-a-flex-container-wont-apply-to-its-flex-items
|
||||
// set empty text line height up to contrainer min-height as workaround.
|
||||
line-height: 60px;
|
||||
width: 50%;
|
||||
color: $--color-text-secondary;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue