Fixed IE8 style issues in files app

- fixed missing scrollbar in personal page
- fixed controls bar transparency: opaque white in IE8
- fixed files table borders in IE8
This commit is contained in:
Vincent Petry 2014-07-17 11:43:25 +02:00
parent d58c8d72cf
commit f2ea3b5904
1 changed files with 14 additions and 0 deletions

View File

@ -91,3 +91,17 @@ select {
background-color: #24282F;
}
/* needed else IE8 will randomly hide the borders... */
.ie8 table th#headerDate, table td.date,
.ie8 table th.column-last, table td.column-last {
position: static;
}
.ie8 #controls {
background-color: white;
}
.ie8 #content-wrapper {
overflow-y: auto;
}