Inconsistent spun with FF, IE, Chrome, Opera, Safari
-
Playing with the ‘spun’ theme and stretching my css knowledge beyond breaking point ?? robinson.ky
The intention is that the link images are sepia-toned but go to colour when hovered. This works (apparently) perfectly in Chrome, but not in:
IE8 – still grayscale (and squares – but I’ve found the fix for that).
FF21 – circles are invisible until hover.
Safari and Opera – no fading at all, images remain full-colour.Can’t help feeling I’ve got the precedence wrong in the spun-child styles.css. Here’s the relevant bit of styles.css
.blog .hentry a .attachment-post-thumbnail {
-webkit-filter: sepia(1);
-webkit-filter: sepia(100%); -moz-filter: sepia(100%);
-ms-filter: sepia(100%); -o-filter: sepia(100%);
filter: url(inc/sepia.svg#old-timey);
filter: sepia(100%);
background-color: #5E2612;
filter: alpha(opacity = 50);
zoom:1;
}.blog .hentry a .attachment-post-thumbnail hover{
-webkit-filter: none;
-moz-filter: none;
-ms-filter: none;
-o-filter: none;
filter: none;
filter: alpha(opacity = 100);
}
- The topic ‘Inconsistent spun with FF, IE, Chrome, Opera, Safari’ is closed to new replies.