From f2ea3b590413c891124e7b7da8d73256d1401dfc Mon Sep 17 00:00:00 2001 From: Vincent Petry <pvince81@owncloud.com> Date: Thu, 17 Jul 2014 11:43:25 +0200 Subject: [PATCH] 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 --- core/css/fixes.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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; +} + -- GitLab