seventh part of syncing LCARStrek with Firefox 42-44 windows theme changes
[themes.git] / LCARStrek / browser / aboutCertError.css
index 29b53514c4031f5730e34903308cf80c84d4cce5..1abab09e6c8448d313a89e8d1bc93612001580d7 100644 (file)
@@ -2,96 +2,97 @@
  * 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/. */
 
  * 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/. */
 
+@import url("chrome://global/skin/in-content/common.css");
 
 
-html {
-  background: #000000;
+body {
+  display: flex;
+  box-sizing: border-box;
+  min-height: 100vh;
+  padding: 0 48px;
+  align-items: center;
+  justify-content: center;
 }
 
 }
 
-body {
-  margin: 0;
-  padding: 0 1em;
-  color: #FF9F00;
-  font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
+#errorPageContainer {
+  position: relative;
+  min-width: 320px;
+  max-width: 512px;
 }
 
 }
 
-h1 {
-  margin: 0 0 .6em;
-  border-bottom: 1px solid #008484;
-  font-size: 160%;
-  color: #FF0000;
+#errorTitle {
+  background: url("chrome://browser/skin/cert-error.svg") left 0 no-repeat;
+  background-size: 3em;
+  margin-inline-start: -5em;
+  padding-inline-start: 5em;
 }
 
 }
 
-h2 {
-  font-size: 130%;
-  background-color: #9C9CFF;
-  color: #000000;
-  border-radius: 10px;
-  -moz-padding-start: 10px;
+#errorTitle:-moz-dir(rtl) {
+  background-position: right 0;
 }
 
 }
 
-#errorPageContainer {
-  position: relative;
-  min-width: 13em;
-  max-width: 52em;
-  margin: 4em auto;
-  border: 2px solid #FFCF00;
-  border-radius: 10px;
-  padding: 3em;
-  -moz-padding-start: 30px;
-  background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat #000000;
-  background-origin: content-box;
+#errorTitleText {
+  border-bottom: 1px solid #A09090;
+  padding-bottom: 0.4em;
 }
 
 }
 
-#errorPageContainer:-moz-dir(rtl) {
-  background-position: right 0;
+@media (max-width: 675px) {
+  #errorTitle {
+    padding-top: 0;
+    background-image: none;
+    margin-inline-start: 0;
+    padding-inline-start: 0;
+  }
 }
 
 }
 
-#errorTitle {
-  -moz-margin-start: 80px;
+#buttonContainer {
+  display: flex;
+  flex-flow: row wrap;
 }
 
 }
 
-#errorLongContent {
-  -moz-margin-start: 80px;
+#buttonSpacer {
+  flex: 1;
 }
 
 }
 
-#getMeOutOfHereButton,
-#exceptionDialogButton {
-  border-radius: 10px;
-  background: #C09070;
-  color: #000000;
-  border: none;
-  padding: 0 .5em;
+/* Pressing the retry button will cause the cursor to flicker from a pointer to
+ * not-allowed. Override the disabled cursor behaviour since we will never show
+ * the button disabled as the initial state. Remove this in Bug 1219861. */
+button:disabled {
+  cursor: pointer;
 }
 
 }
 
-.expander > button {
-  -moz-padding-start: 22px;
-  -moz-margin-start: -22px;
-  border-radius: 10px;
-  background: url("chrome://global/skin/tree/twisty-open-selected.gif") 3px center no-repeat;
+#returnButton {
+  background-color: var(--in-content-primary-button-background);
   border: none;
   border: none;
-  font: inherit;
-  color: inherit;
-  cursor: pointer;
+  color: var(--in-content-selected-text);
+  min-width: 250px;
+  margin-inline-start: 0;
+}
+
+#returnButton:hover {
+  background-color: var(--in-content-primary-button-background-hover) !important;
 }
 
 }
 
-#getMeOutOfHereButton:hover,
-#exceptionDialogButton:hover,
-.expander:hover,
-.expander:hover > button,
-.expander > button:hover,
-.expander > button:hover:active {
-  background-color: #FFCF00;
-  color: #000000;
+#returnButton:hover:active {
+  background-color: var(--in-content-primary-button-background-active) !important;
 }
 
 }
 
-.expander > button:-moz-dir(rtl) {
-  background-position: right center;
+#advancedButton {
+  min-width: 150px;
 }
 
 }
 
-.expander[collapsed] > button {
-  background-image: url("chrome://global/skin/tree/twisty-closed-selected.gif");
+/* Advanced section is hidden via inline styles until the link is clicked */
+#advancedPanel {
+  background-color: #000000;
+  color: var(--in-content-text-color);
+  border: 1px #A09090 solid;
+  /* Don't use top padding because the default p style has top padding, and it
+   * makes the overall div look uneven */
+  padding: 0 12px 10px;
+  margin-top: 10px;
+/*  box-shadow: 0 0 4px #ddd;*/
+  font-size: 0.9em;
 }
 
 }
 
-.expander[collapsed] > button:-moz-dir(rtl) {
-  background-image: url("chrome://global/skin/tree/twisty-closed-rtl-selected.gif");
+.hostname {
+  font-weight: bold;
 }
 }