Skip to content
Snippets Groups Projects
Commit e0f93489 authored by Shane Tomlinson's avatar Shane Tomlinson
Browse files

Better styling for the unsupported dialog for IE6 and IE7

issue #1706
parent c7ff63c5
No related branches found
No related tags found
No related merge requests found
...@@ -51,9 +51,6 @@ header { ...@@ -51,9 +51,6 @@ header {
* overflow the dialog box. * overflow the dialog box.
*/ */
*padding: 10px 0; *padding: 10px 0;
/*
font-weight: bold;
*/
border-bottom: 1px solid #c7c6c1; border-bottom: 1px solid #c7c6c1;
/*-ms-filter through zoom: 1 are fixes for IE6 and IE7 so they show the header /*-ms-filter through zoom: 1 are fixes for IE6 and IE7 so they show the header
...@@ -74,6 +71,8 @@ header { ...@@ -74,6 +71,8 @@ header {
background: url("/i/persona-logo-transparent.png") 0 0 no-repeat; background: url("/i/persona-logo-transparent.png") 0 0 no-repeat;
text-indent: -9999px; text-indent: -9999px;
display: inline-block; display: inline-block;
*display: block;
zoom: 1;
} }
footer { footer {
...@@ -153,10 +152,10 @@ section > .contents { ...@@ -153,10 +152,10 @@ section > .contents {
/* Fix for IE6 not displaying the unsupported dialog correctly. IE6 by /* Fix for IE6 not displaying the unsupported dialog correctly. IE6 by
* default sets the height and width of the element to 0 meaning nothing * default sets the height and width of the element to 0 meaning nothing
* shows up on the screen. * shows up on the screen.
* Note, these are magic numbers that depend on the width and height of the * Note, height is a magic number that depend on the height of the
* dialog. The height also depends on the height of the header and footer. * dialog. The height also depends on the height of the header and footer.
*/ */
_width: 682px; _width: 100%;
_height: 250px; _height: 250px;
} }
...@@ -441,3 +440,7 @@ a.emphasize:active { ...@@ -441,3 +440,7 @@ a.emphasize:active {
min-width: 4em; min-width: 4em;
} }
.unsupported {
text-align: center;
}
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