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.

This commit is contained in:
Chad Kieffer
2010-02-03 20:13:33 -07:00
parent 1f51d663a0
commit 61c3dcacd1

View File

@@ -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,