Opened 12 years ago
Closed 12 years ago
#7074 closed bug (notabug)
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
Note: See
TracTickets for help on using
tickets.
jQuery and jQuery UI don't support setting dimension-related styles on the body.