2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2008-10-29 15:54:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
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%;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 130%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorPageContainer {
|
|
|
|
position: relative;
|
|
|
|
min-width: 13em;
|
|
|
|
max-width: 52em;
|
|
|
|
margin: 4em auto;
|
|
|
|
border: 1px solid #FFBD09; /* pale yellow extracted from yellow passport icon */
|
2010-09-09 15:21:47 +00:00
|
|
|
border-radius: 10px;
|
2008-10-29 15:54:51 +00:00
|
|
|
padding: 3em;
|
|
|
|
-moz-padding-start: 30px;
|
|
|
|
background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat -moz-Field;
|
2010-06-09 01:44:33 +00:00
|
|
|
background-origin: content-box;
|
2008-10-29 15:54:51 +00:00
|
|
|
}
|
|
|
|
|
2012-09-30 14:17:42 +00:00
|
|
|
#errorPageContainer:-moz-dir(rtl) {
|
2008-10-29 15:54:51 +00:00
|
|
|
background-position: right 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorTitle {
|
|
|
|
-moz-margin-start: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#errorLongContent {
|
|
|
|
-moz-margin-start: 80px;
|
|
|
|
}
|
|
|
|
|
2012-03-08 12:03:19 +00:00
|
|
|
.expander > button {
|
|
|
|
-moz-padding-start: 20px;
|
|
|
|
-moz-margin-start: -20px;
|
|
|
|
background: url("chrome://browser/skin/aboutCertError_sectionExpanded.png") left center no-repeat;
|
|
|
|
border: none;
|
|
|
|
font: inherit;
|
|
|
|
color: inherit;
|
|
|
|
cursor: pointer;
|
2008-10-29 15:54:51 +00:00
|
|
|
}
|
|
|
|
|
2012-09-30 14:17:42 +00:00
|
|
|
.expander > button:-moz-dir(rtl) {
|
2012-03-08 12:03:19 +00:00
|
|
|
background-position: right center;
|
2010-08-24 03:49:04 +00:00
|
|
|
}
|
|
|
|
|
2012-03-08 12:03:19 +00:00
|
|
|
.expander[collapsed] > button {
|
|
|
|
background-image: url("chrome://browser/skin/aboutCertError_sectionCollapsed.png");
|
2008-10-29 15:54:51 +00:00
|
|
|
}
|
2010-08-24 03:49:04 +00:00
|
|
|
|
2012-09-30 14:17:42 +00:00
|
|
|
.expander[collapsed] > button:-moz-dir(rtl) {
|
2012-03-08 12:03:19 +00:00
|
|
|
background-image: url("chrome://browser/skin/aboutCertError_sectionCollapsed-rtl.png");
|
2010-08-24 03:49:04 +00:00
|
|
|
}
|