1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Follow on to 313147. Forgot to add browser specific opacity rules.

This commit is contained in:
Stewart Lord
2011-07-11 19:02:08 +00:00
parent ec4096a473
commit 85dc80c2de

View File

@@ -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;
}