Browse Source

Fix for IE11

jalbr74 7 years ago
parent
commit
68ba85d396
1 changed files with 7 additions and 2 deletions
  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;
+    }
 }