Commit:    4573b2fb403efcf27cce750d10d899ee221b4cdd
Author:    Levi Morrison <[email protected]>         Sun, 15 Dec 2013 20:26:03 -0700
Parents:   54e0f074302d836522779456208598957e8c4a02
Branches:  master

Link:       
http://git.php.net/?p=web/php.git;a=commitdiff;h=4573b2fb403efcf27cce750d10d899ee221b4cdd

Log:
We don't need vendor prefixes for opacity; Firefox has supported opacity for 
the last 26 versions; Chrome has always supported it; Safari has supported 
opacity since version 3.1 (7 versions back).

Changed paths:
  M  styles/theme-medium.css


Diff:
diff --git a/styles/theme-medium.css b/styles/theme-medium.css
index b6c878d..c149699 100755
--- a/styles/theme-medium.css
+++ b/styles/theme-medium.css
@@ -446,16 +446,12 @@ div.elephpants div.images {
 }
 div.elephpants img {
   opacity: 0.5;
-  -moz-opacity: 0.5;
-  -webkit-opacity: 0.5;
   transition: all 0.25s ease-in-out;
   -webkit-transition: all 0.25s ease-in-out;
   -moz-transition: all 0.25s ease-in-out;
 }
 div.elephpants:hover img {
   opacity: 0.6;
-  -moz-opacity: 0.6;
-  -webkit-opacity: 0.6;
   transition: all 0.25s ease-in-out;
   -webkit-transition: all 0.25s ease-in-out;
   -moz-transition: all 0.25s ease-in-out;
@@ -463,8 +459,6 @@ div.elephpants:hover img {
 div.elephpants img:hover,
 div.elephpants img:focus {
   opacity: 1;
-  -moz-opacity: 1;
-  -webkit-opacity: 1;
 }
 /* }}} */


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to