2007-03-22 10:30:00 -07:00
|
|
|
/*
|
|
|
|
* This defines the look-and-feel styling of the error pages.
|
|
|
|
* (see: netError.xhtml)
|
|
|
|
*
|
|
|
|
* Original styling by William Price <bugzilla@mob.rice.edu>
|
|
|
|
* Updated by: Steven Garrity <steven@silverorange.com>
|
|
|
|
* Henrik Skupin <mozilla@hskupin.info>
|
|
|
|
*/
|
|
|
|
|
|
|
|
html {
|
|
|
|
background: -moz-Dialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 1em;
|
|
|
|
color: -moz-FieldText;
|
|
|
|
font: message-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 0 0 .6em 0;
|
|
|
|
border-bottom: 1px solid ThreeDLightShadow;
|
|
|
|
font-size: 160%;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul, ol {
|
|
|
|
margin: 0;
|
|
|
|
-moz-margin-start: 1.5em;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul > li, ol > li {
|
|
|
|
margin-bottom: .5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: square;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorPageContainer {
|
|
|
|
position: relative;
|
|
|
|
min-width: 13em;
|
|
|
|
max-width: 52em;
|
|
|
|
margin: 4em auto;
|
|
|
|
border: 1px solid ThreeDShadow;
|
|
|
|
-moz-border-radius: 10px;
|
|
|
|
padding: 3em;
|
|
|
|
-moz-padding-start: 30px;
|
|
|
|
background: url("chrome://global/skin/icons/warning-large.png") left 0 no-repeat -moz-Field;
|
|
|
|
-moz-background-origin: content;
|
|
|
|
}
|
|
|
|
|
2008-04-28 02:19:07 -07:00
|
|
|
#errorPageContainer.certerror {
|
|
|
|
background-image: url("chrome://global/skin/icons/sslWarning.png");
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
body[dir="rtl"] #errorPageContainer {
|
|
|
|
background-position: right 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorTitle {
|
|
|
|
-moz-margin-start: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorLongContent {
|
|
|
|
-moz-margin-start: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorShortDesc > p {
|
|
|
|
overflow: auto;
|
|
|
|
border-bottom: 1px solid ThreeDLightShadow;
|
|
|
|
padding-bottom: 1em;
|
|
|
|
font-size: 130%;
|
2008-03-08 01:44:35 -08:00
|
|
|
white-space: pre-wrap;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#errorLongDesc {
|
|
|
|
-moz-padding-end: 3em;
|
|
|
|
font-size: 110%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorLongDesc > p {
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorTryAgain {
|
|
|
|
margin-top: 2em;
|
|
|
|
-moz-margin-start: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#brand {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
bottom: -1.5em;
|
|
|
|
-moz-margin-end: 10px;
|
|
|
|
opacity: .4;
|
|
|
|
}
|
|
|
|
|
|
|
|
body[dir="rtl"] #brand {
|
|
|
|
right: auto;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#brand > p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorContainer {
|
|
|
|
display: none;
|
|
|
|
}
|
2007-07-03 09:49:06 -07:00
|
|
|
|
2007-11-03 11:49:47 -07:00
|
|
|
#securityOverrideDiv {
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#securityOverrideContent {
|
2008-03-08 16:29:05 -08:00
|
|
|
background-color: InfoBackground;
|
|
|
|
color: InfoText;
|
2007-11-03 11:49:47 -07:00
|
|
|
padding: 10px;
|
|
|
|
-moz-border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
2007-07-03 09:49:06 -07:00
|
|
|
/* Custom styling for 'blacklist' error class */
|
|
|
|
:root.blacklist #errorTitle, :root.blacklist #errorLongContent,
|
2007-07-23 18:56:47 -07:00
|
|
|
:root.blacklist #errorShortDesc, :root.blacklist #errorLongDesc,
|
|
|
|
:root.blacklist a {
|
2007-07-03 09:49:06 -07:00
|
|
|
background-color: #722; /* Dark red */
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root.blacklist #errorPageContainer {
|
|
|
|
background-image: url("chrome://global/skin/icons/blacklist_large.png");
|
|
|
|
background-color: #722;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root.blacklist {
|
|
|
|
background: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
:root.blacklist #errorTryAgain {
|
|
|
|
display: none;
|
|
|
|
}
|