Search and Top Navigation
#7074 closed bug (notabug)
Opened March 07, 2011 09:09AM UTC
Closed March 07, 2011 12:48PM UTC
IE Bug with widget-overlay at full screen designs
Reported by: | larz | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.css-framework | Version: | 1.8.10 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
In IE 7, 8 is a small bug with full screen designs if you use css: body { height: 100%; width: 100%; }
Fixing this line in css
/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
with
/* Overlays */
.ui-widget-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; }
and now is running good in IE and as well in all other maior browsers
Attachments (0)
Change History (1)
Changed March 07, 2011 12:48PM UTC by comment:1
resolution: | → invalid |
---|---|
status: | new → closed |
jQuery and jQuery UI don't support setting dimension-related styles on the body.