瀏覽代碼

HUE-3459 [assist] Fixed Flexbox for IE10

Enrico Berti 9 年之前
父節點
當前提交
e45318f
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      desktop/core/src/desktop/templates/assist.mako

+ 7 - 0
desktop/core/src/desktop/templates/assist.mako

@@ -266,15 +266,19 @@ from desktop.views import _ko
 
     .assist-flex-panel {
       position: relative;
+      display: -ms-flexbox;
       display: flex;
+      -ms-flex-flow: column nowrap;
       flex-flow: column nowrap;
       align-items: stretch;
       height:100%;
+      min-height: 100vh;
     }
 
     .assist-flex-header {
       overflow: hidden;
       position: relative;
+      -ms-flex: 0 0 25px;
       flex: 0 0 25px;
       white-space: nowrap;
     }
@@ -282,6 +286,7 @@ from desktop.views import _ko
     .assist-flex-table-search {
       overflow: hidden;
       position: relative;
+      -ms-flex: 0 0 65px;
       flex: 0 0 65px;
       white-space: nowrap;
     }
@@ -289,12 +294,14 @@ from desktop.views import _ko
     .assist-flex-search {
       overflow: hidden;
       position: relative;
+      -ms-flex: 0 0 43px;
       flex: 0 0 43px;
       white-space: nowrap;
     }
 
     .assist-flex-fill {
       position: relative;
+      -ms-flex: 1 1 100%;
       flex: 1 1 100%;
       white-space: nowrap;
       overflow-x: hidden;