Added prefixes and reorder transition properties

Vendor prefixes and proper order is set for the transition property.
This commit is contained in:
pginer
2012-11-16 13:28:47 +01:00
parent de0a2427f3
commit 6a9771e4f1

View File

@@ -119,16 +119,18 @@ div.uls-region {
float: right; float: right;
overflow: hidden; overflow: hidden;
opacity: 0.7; opacity: 0.7;
transition: opacity 0.2s linear;
-moz-transition: opacity 0.2s linear; -moz-transition: opacity 0.2s linear;
-o-transition: opacity 0.2s linear;
-webkit-transition: opacity 0.2s linear; -webkit-transition: opacity 0.2s linear;
transition: opacity 0.2s linear;
} }
#map-block a { #map-block a {
opacity:0; opacity:0;
transition: opacity 0.15s linear;
-moz-transition: opacity 0.15s linear; -moz-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
-webkit-transition: opacity 0.15s linear; -webkit-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
} }
#map-block:hover, #map-block:hover a { #map-block:hover, #map-block:hover a {
@@ -159,12 +161,16 @@ div.uls-region {
input#languagefilter { input#languagefilter {
border: 1px solid #c9c9c9; border: 1px solid #c9c9c9;
-moz-transition: all 0.15s linear 0s;
border-radius: 2px 2px 2px 2px; border-radius: 2px 2px 2px 2px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
color: #333; color: #333;
display: block; display: block;
background-color: transparent !important; background-color: transparent !important;
-moz-transition: all 0.15s linear 0s;
-o-transition: all 0.15s linear 0s;
-webkit-transition: all 0.15s linear 0s;
transition: all 0.15s linear 0s;
} }
input:focus#languagefilter { input:focus#languagefilter {