From 6a9771e4f11d76192adca8dd68b490e9a07a35e4 Mon Sep 17 00:00:00 2001 From: pginer Date: Fri, 16 Nov 2012 13:28:47 +0100 Subject: [PATCH] Added prefixes and reorder transition properties Vendor prefixes and proper order is set for the transition property. --- css/jquery.uls.css | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/css/jquery.uls.css b/css/jquery.uls.css index 2b7a779..773ff0f 100644 --- a/css/jquery.uls.css +++ b/css/jquery.uls.css @@ -119,16 +119,18 @@ div.uls-region { float: right; overflow: hidden; opacity: 0.7; - transition: opacity 0.2s linear; -moz-transition: opacity 0.2s linear; + -o-transition: opacity 0.2s linear; -webkit-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; } #map-block a { opacity:0; - transition: opacity 0.15s linear; -moz-transition: opacity 0.15s linear; + -o-transition: opacity 0.15s linear; -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; } #map-block:hover, #map-block:hover a { @@ -159,12 +161,16 @@ div.uls-region { input#languagefilter { border: 1px solid #c9c9c9; - -moz-transition: all 0.15s linear 0s; border-radius: 2px 2px 2px 2px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset; color: #333; display: block; 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 {