make sure the menuitem radios and checkmarks show up and the items do not inherit...
[themes.git] / LCARStrek / global / netError.css
index 286f8b6e22a3fe526a51eda74d56df55b318407c..a01830b514e4d018bcb76ae2365859e9dd579918 100644 (file)
@@ -7,6 +7,8 @@
  *              Henrik Skupin  <mozilla@hskupin.info>
  */
 
+@import url("chrome://global/skin/button.css");
+
 html {
   background: #000000;
 }
@@ -15,11 +17,11 @@ body {
   margin: 0;
   padding: 0 1em;
   color: #FF9F00;
-  font: 12px helvetica,arial,tahoma,sans-serif;
+  font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
 }
 
 h1 {
-  margin: 0 0 .6em 0;
+  margin: 0 0 .6em;
   border-bottom: 1px solid #008484;
   font-size: 160%;
 }
@@ -44,14 +46,18 @@ ul {
   max-width: 52em;
   margin: 4em auto;
   border: 1px solid #9C9FFF;
-  -moz-border-radius: 10px;
+  border-radius: 10px;
   padding: 3em;
   -moz-padding-start: 30px;
   background: url("chrome://global/skin/icons/alert-exclam.gif") left 0 no-repeat #000000;
-  -moz-background-origin: content;
+  background-origin: content-box;
+}
+
+#errorPageContainer.certerror {
+  background-image: url("chrome://global/skin/icons/sslWarning.png");
 }
 
-body[dir="rtl"] #errorPageContainer {
+#errorPageContainer:-moz-dir(rtl) {
   background-position: right 0;
 }
 
@@ -68,6 +74,7 @@ body[dir="rtl"] #errorPageContainer {
   border-bottom: 1px solid #008484;
   padding-bottom: 1em;
   font-size: 130%;
+  white-space: pre-wrap;
 }
 
 #errorLongDesc {
@@ -91,7 +98,7 @@ body[dir="rtl"] #errorPageContainer {
   opacity: .4;
 }
 
-body[dir="rtl"] #brand {
+#brand:-moz-dir(rtl) {
   right: auto;
   left: 0;
 }
@@ -103,3 +110,36 @@ body[dir="rtl"] #brand {
 #errorContainer {
   display: none;
 }
+
+#securityOverrideDiv {
+  padding-top: 10px;
+}
+
+#securityOverrideContent {
+  background-color: #FFCF00;
+  color: #000000;
+  padding: 10px;
+  border-radius: 10px;
+}
+
+/* Custom styling for 'blacklist' error class */
+
+:root.blacklist #errorTitle, :root.blacklist #errorLongContent,
+:root.blacklist #errorShortDesc, :root.blacklist #errorLongDesc,
+:root.blacklist a {
+  background-color: #FF0000; /* red */
+  color: #000000;
+}
+
+:root.blacklist #errorPageContainer {
+  background-image: url("chrome://global/skin/icons/blacklist_large.png");
+  background-color: #FF0000;
+}
+
+:root.blacklist {
+  background: #000000;
+}
+
+:root.blacklist #errorTryAgain {
+  display: none;
+}