-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
IE filter property has incorrect value for the widget-overlay v1.13 #2190
IE filter property has incorrect value for the widget-overlay v1.13 #2190
Comments
The v1.13.2 stable release has: /* Overlays */
.ui-widget-overlay {
background: #aaaaaa;
opacity: .003;
-ms-filter: Alpha(Opacity=.3); /* support: IE8 */
} But the base theme for v1.13.2 has: /* Overlays */
.ui-widget-overlay {
background: #aaaaaa/*{bgColorOverlay}*/ /*{bgImgUrlOverlay}*/ /*{bgOverlayXPos}*/ /*{bgOverlayYPos}*/ /*{bgOverlayRepeat}*/;
opacity: .3/*{opacityOverlay}*/;
-ms-filter: "alpha(opacity=30)"/*{opacityFilterOverlay}*/; /* support: IE8 */
} So not only is the filter different, the opacity is too? |
The values in curly braces are variable names that are supposed to substitute the default values, based on the theme used. We probably need to update the It looks like the issue is in themeroller: https://github.com/jquery/jquery-ui-themeroller/blob/71ccc63fbe0744987743ecf83bcedde460c3165a/lib/themeroller.js#L119-L122. Would you like to submit a PR? |
jQuery UI 1.13 uses `-ms-filter` which has to have its entire value put in quotes. Fixes jquery/jquery-ui/issues/2190
PR for |
jQuery UI 1.13 uses `-ms-filter` which has to have its entire value put in quotes. Fixes jquery/jquery-ui/issues/2190
jQuery UI 1.13 uses `-ms-filter` which has to have its entire value put in quotes. Fixes jquery/jquery-ui/issues/2190
PR for the Download Builder repo: jquery/download.jqueryui.com#612 |
Re-opening since only the |
jQuery UI 1.13 uses `-ms-filter` which has to have its entire value put in quotes. Fixes jquery/jquery-ui/issues/2190
jQuery UI 1.13 uses `-ms-filter` which has to have its entire value put in quotes. Fixes jquery/jquery-ui/issues/2190 Closes gh-612
IE filter property values were updated to strings by #1939.
However, the filter value for the widget-overlay hasn't been updated in the output CSS file (https://github.com/jquery/jquery-ui/blob/1.13.2/dist/themes/base/theme.css#L441).
All of the other filters have been updated to strings in the output file, so I'm not sure why this one wasn't?
The text was updated successfully, but these errors were encountered: