diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-07-17 11:43:25 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-07-18 17:47:21 +0200 |
commit | f2ea3b590413c891124e7b7da8d73256d1401dfc (patch) | |
tree | dc14a93391ce37e53aa284cca3ab9c42461d8a4d /core/css | |
parent | d58c8d72cf8c0f6784bdec1f054c24a78ff131b6 (diff) | |
download | nextcloud-server-f2ea3b590413c891124e7b7da8d73256d1401dfc.tar.gz nextcloud-server-f2ea3b590413c891124e7b7da8d73256d1401dfc.zip |
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
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/fixes.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/core/css/fixes.css b/core/css/fixes.css index f1dc016cad2..12daf251579 100644 --- a/core/css/fixes.css +++ b/core/css/fixes.css @@ -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; +} + |