diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-07-18 19:27:04 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-07-18 19:27:04 +0200 |
commit | 038ba1d05dd51276760a22b249962d3fa96fd283 (patch) | |
tree | 19c94975f4c1b4b11bdedb61243545811f1f7d52 /core | |
parent | c8a24188158b12f22b271a8cca8a1cc547434183 (diff) | |
parent | f2ea3b590413c891124e7b7da8d73256d1401dfc (diff) | |
download | nextcloud-server-038ba1d05dd51276760a22b249962d3fa96fd283.tar.gz nextcloud-server-038ba1d05dd51276760a22b249962d3fa96fd283.zip |
Merge pull request #9700 from owncloud/ie8-fixes
[OC 7] IE8 styling fixes
Diffstat (limited to 'core')
-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; +} + |