소스 검색

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 fixes
Jerry Chou 6 년 전
부모
커밋
7a031e6399
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      packages/theme-chalk/src/table.scss

+ 3 - 0
packages/theme-chalk/src/table.scss

@@ -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;
   }