CSS: remove spaces from opacity filters so themeRoller can replace pr…
…operly
- Loading branch information
@@ -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 */ | ||
This comment has been minimized.
This comment has been minimized.
mikesherov
Author
Member
|
||
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}*/; | ||
2 comments
on commit 3c6c22b
This comment has been minimized.
This comment has been minimized.
Opened jquery/download.jqueryui.com#58 issue. |
This comment has been minimized.
This comment has been minimized.
ThemeRoller updated. |
Adding a comment is a good idea. But the fact that those two declarations are on the same line is in more need of an explanation than the missing space. As that is a violation of the coding standard, in case someone else will later try to "fix" it, it's better to explain that it's intentional.
I had written "the following opacity declarations need to stay on the same line for ThemeRoller". Maybe extend that to "the following opacity declarations need to stay on the same line and must not have any space between them for ThemeRoller"