diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2010-02-03 20:13:33 -0700 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2010-02-03 20:13:33 -0700 |
commit | 61c3dcacd1fb628bd4c5984a887a2b47f89c2a79 (patch) | |
tree | cd1ef08a083e755638ac2e2c50641ffb74f25a00 /lib | |
parent | 1f51d663a0d651cfc8ff172357ce1b57823f8480 (diff) |
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.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gallery.common.css | 11 |
1 files changed, 7 insertions, 4 deletions
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, |