[FIX] css hack to make IE11 work

the stupid left menu was not displayed with IE11.  This fix uses a
media query ignored by all (?) browsers but IE11.
This commit is contained in:
Géry Debongnie 2014-08-28 11:28:04 +02:00
parent e6b56412a0
commit 2fdc9581fc
2 changed files with 17 additions and 1 deletions

View File

@ -1,4 +1,4 @@
@charset "utf-8";
@charset "UTF-8";
@font-face {
font-family: "mnmliconsRegular";
src: url("/web/static/src/font/mnmliconsv21-webfont.eot") format("eot");
@ -8,6 +8,7 @@
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "EntypoRegular";
src: url("/web/static/src/font/entypo-webfont.eot") format("eot");
@ -2996,6 +2997,7 @@
top: 0px;
}
}
.kitten-mode-activated {
background-size: cover;
background-attachment: fixed;
@ -3384,3 +3386,9 @@ div.tour-backdrop {
body {
overflow: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.oe_secondary_menus_container {
position: static !important;
}
}

View File

@ -2763,5 +2763,13 @@ div.tour-backdrop
body
overflow: auto
// hack to make IE11 work
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
.oe_secondary_menus_container
position: static !important
// au BufWritePost,FileWritePost *.sass :!sass --style expanded --line-numbers <afile> > "%:p:r.css"
// vim:tabstop=4:shiftwidth=4:softtabstop=4:fdm=marker: