aboutsummaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2012-11-20 08:07:03 -0500
committerMike Sherov <mike.sherov@gmail.com>2012-11-20 08:07:03 -0500
commit3c6c22b179787a118538f70c0cd56a778a16adba (patch)
treef33fff4a51ec27111eae9d3b88d7c20e2afa0f1d /themes
parent010e09fa62b7e71fdfaaf6b0d4e974be0704a1c8 (diff)
downloadjquery-ui-3c6c22b179787a118538f70c0cd56a778a16adba.tar.gz
jquery-ui-3c6c22b179787a118538f70c0cd56a778a16adba.zip
CSS: remove spaces from opacity filters so themeRoller can replace properly
Diffstat (limited to 'themes')
-rw-r--r--themes/base/jquery.ui.theme.css6
1 files changed, 4 insertions, 2 deletions
diff --git a/themes/base/jquery.ui.theme.css b/themes/base/jquery.ui.theme.css
index 459d1a212..89f03aa86 100644
--- a/themes/base/jquery.ui.theme.css
+++ b/themes/base/jquery.ui.theme.css
@@ -403,13 +403,15 @@
/* 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}*/;