From f677136ef90cb6ecd34ce1a0323396df42aeac40 Mon Sep 17 00:00:00 2001 From: Tyron Madlener Date: Wed, 10 Aug 2011 10:52:14 +0300 Subject: [PATCH] Fixes IE gradients being in every single row --- themes/pmahomme/css/theme_right.css.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index f936c18779..984e6f845b 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -18,6 +18,11 @@ function PMA_ieFilter($start_color, $end_color) ? 'filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="' . $start_color . '", endColorstr="' . $end_color . '");' : ''; } +function PMA_ieClearFilter() { + return PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 6 && PMA_USR_BROWSER_VER <= 8 + ? 'filter: none' + : ''; +} ?> /******************************************************************************/ @@ -528,12 +533,14 @@ button.mult_submit { table tr.odd th, .odd { background: #fff; + } /* even items 2,4,6,8,... */ table tr.even th, .even { background: #f3f3f3; + } /* odd table rows 1,3,5,7,... */