From 85dc80c2de4a482918dfce2e4b190ec9f3b79de0 Mon Sep 17 00:00:00 2001 From: Stewart Lord Date: Mon, 11 Jul 2011 19:02:08 +0000 Subject: [PATCH] Follow on to 313147. Forgot to add browser specific opacity rules. --- styles/theme.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/styles/theme.css b/styles/theme.css index 8c2759dca..5608a4c71 100644 --- a/styles/theme.css +++ b/styles/theme.css @@ -532,12 +532,18 @@ div.elephpants img { width: 75px; height: 75px; opacity: 0.5 + -moz-opacity: 0.5; + -webkit-opacity: 0.5; } div.elephpants:hover img { opacity: 0.75; + -moz-opacity: 0.75; + -webkit-opacity: 0.75; } div.elephpants img:hover { opacity: 1; + -moz-opacity: 1; + -webkit-opacity: 1; }