浏览代码

Fix for IE11

jalbr74 7 年之前
父节点
当前提交
68ba85d396
共有 1 个文件被更改,包括 7 次插入2 次删除
  1. 7 2
      server/src/main/webapp/public/resources/tab-container.css

+ 7 - 2
server/src/main/webapp/public/resources/tab-container.css

@@ -89,8 +89,13 @@
 
 .tab-container > .tab-end {
     border-bottom: 1px solid #6a6f71;
-    /*position: absolute;*/
-    /*top: 30px;*/
     left: 0;
     width: 100%;
+}
+
+/*This targets only IE*/
+@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
+    .tab-container > .tab-end {
+        height: 7px;
+    }
 }