From 61c3dcacd1fb628bd4c5984a887a2b47f89c2a79 Mon Sep 17 00:00:00 2001 From: Chad Kieffer Date: Wed, 3 Feb 2010 20:13:33 -0700 Subject: Fix duplicate checkmark issue in Safari, Opera, elsewhere (ticket #902). This has been a persistent issue. Fix seems to turn of CSS BG on the row, then turn it on for tr.g-success td.g-success {} selector. --- lib/gallery.common.css | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/gallery.common.css b/lib/gallery.common.css index 87498b40..553eb496 100644 --- a/lib/gallery.common.css +++ b/lib/gallery.common.css @@ -304,13 +304,16 @@ tr.g-error td.g-error { } .g-success, -.g-allowed, -tr.g-success td.g-success { - background: #d9efc2 url('images/ico-success.png') no-repeat .4em 50%; +.g-allowed { + background: #d9efc2 url('images/ico-success.png') no-repeat .4em 50%; +} + +tr.g-success { + background-image: none; } tr.g-success td.g-success { - background-color: transparent; + background-image: url('images/ico-success.png'); } .g-warning, -- cgit v1.2.3