Skip to content
Snippets Groups Projects
Commit cdfd765b authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

Merge pull request #1507 from mozilla/issue_1496_ie67_scrollbars

IE6 and IE7 fixes for the unsupported dialog.
parents 6f0da54b 5e194cca
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,13 @@ h2 {
header, footer {
position: absolute;
/* The *padding is a fix for IE6 and IE7 showing scroll bars in the
* unsupported dialog. Since IE6 and IE7 do not support box-sizing:
* border-box, the left and right padding cause these versions of IE to
* overflow the dialog box.
*/
padding: 20px;
*padding: 20px 0;
z-index: 2;
}
......@@ -109,8 +115,14 @@ section > .contents {
right: 0;
top: 61px;
bottom: 61px;
/* Fix for IE6 not displaying the unsupported dialog correctly */
_width: 100%;
/* Fix for IE6 not displaying the unsupported dialog correctly. IE6 by
* default sets the height and width of the element to 0 meaning nothing
* shows up on the screen.
* Note, these are magic numbers that depend on the width and height of the
* dialog. The height also depends on the height of the header and footer.
*/
_width: 682px;
_height: 250px;
}
#wait, #error, #delay {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment