]> source.dussan.org Git - jquery-ui.git/commitdiff
CSS: remove spaces from opacity filters so themeRoller can replace properly
authorMike Sherov <mike.sherov@gmail.com>
Tue, 20 Nov 2012 13:07:03 +0000 (08:07 -0500)
committerMike Sherov <mike.sherov@gmail.com>
Tue, 20 Nov 2012 13:07:03 +0000 (08:07 -0500)
themes/base/jquery.ui.theme.css

index 459d1a2127cdf6435bb2f953a9d1985ce65093c8..89f03aa86368ddf406185caa23b20454365a08c2 100644 (file)
 /* Overlays */
 .ui-widget-overlay {
        background: #aaaaaa/*{bgColorOverlay}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlOverlay}*/ 50%/*{bgOverlayXPos}*/ 50%/*{bgOverlayYPos}*/ repeat-x/*{bgOverlayRepeat}*/;
-       opacity: .3; filter:Alpha(Opacity=30)/*{opacityOverlay}*/;
+       /* no space between ".3;" and "filter" because themeRoller looks back to the first space for replacement */
+       opacity: .3;filter:Alpha(Opacity=30)/*{opacityOverlay}*/;
 }
 .ui-widget-shadow {
        margin: -8px/*{offsetTopShadow}*/ 0 0 -8px/*{offsetLeftShadow}*/;
        padding: 8px/*{thicknessShadow}*/;
        background: #aaaaaa/*{bgColorShadow}*/ url(images/ui-bg_flat_0_aaaaaa_40x100.png)/*{bgImgUrlShadow}*/ 50%/*{bgShadowXPos}*/ 50%/*{bgShadowYPos}*/ repeat-x/*{bgShadowRepeat}*/;
-       opacity: .3; filter:Alpha(Opacity=30)/*{opacityShadow}*/;
+       /* no space between ".3;" and "filter" because themeRoller looks back to the first space for replacement */
+       opacity: .3;filter:Alpha(Opacity=30)/*{opacityShadow}*/;
        -moz-border-radius: 8px/*{cornerRadiusShadow}*/;
        -khtml-border-radius: 8px/*{cornerRadiusShadow}*/;
        -webkit-border-radius: 8px/*{cornerRadiusShadow}*/;