Fix for IE - an ugly horizontal scrollbar appears
* for IE9 the nav bar was too narrow * for other IEs the width of each app element was to wide and cause the horizontal scoll bar - now this content is hidden like before this PR
This commit is contained in:
parent
41c6752030
commit
6b3b3d8af4
2 changed files with 6 additions and 0 deletions
|
@ -53,3 +53,8 @@
|
|||
.ie8 fieldset .warning, .ie8 #body-login .error {
|
||||
background-color: #1B314D;
|
||||
}
|
||||
|
||||
/* in IE9 the nav bar on the left side is too narrow and leave a white area - original width is 80px */
|
||||
.ie9 #navigation {
|
||||
width: 100px;
|
||||
}
|
||||
|
|
|
@ -570,6 +570,7 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; }
|
|||
z-index: 75;
|
||||
background: #383c43 url('../img/noise.png') repeat;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
-moz-box-sizing:border-box; box-sizing:border-box;
|
||||
/* prevent ugly selection effect on accidental selection */
|
||||
-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
|
||||
|
|
Loading…
Reference in a new issue