You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tested IE7-9 and footer background is as expected. Issue is only in IE 10. Tested both jquery.com and jqueryui.com in IE 10 and problem exists in both themes.
In playing with the IE Dev tools turning off background-repeat: repeat-x, repeat; on element .cssgradients.multiplebgs footer seems to make the background extend all the way down.
The text was updated successfully, but these errors were encountered:
background-repeat has two rules, expecting two background images on the same element. But only one background image exists for that element. It is associated with the first rule: repeat-x; which makes it extend horizontally, but not vertically. Removing the value for background-repeat results in the default value of "repeat", thus fixing the issue.
So I've narrowed the problem down to the multiple background modernizr check. Removing that from the custom build fixes the background in IE10...looking into older versions.
The problem is with the rules for .multiplebgs.cssgradients footer; only a three background-images are provided: one under -moz-, and two under -webkit-. As such, no background declaration is taken for Internet Explorer 10. The opera prefix is also missing:
Tested IE7-9 and footer background is as expected. Issue is only in IE 10. Tested both jquery.com and jqueryui.com in IE 10 and problem exists in both themes.
In playing with the IE Dev tools turning off
background-repeat: repeat-x, repeat;
on element.cssgradients.multiplebgs footer
seems to make the background extend all the way down.The text was updated successfully, but these errors were encountered: