update versions to current nightlies
[themes.git] / LCARStrek / browser / aboutNetError.css
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5 @import url("chrome://browser/skin/error-pages.css");
6
7 body {
8   background-image: linear-gradient(-45deg, #A09090,     #A09090 33%,
9                                             #000000 33%, #000000 66%,
10                                             #A09090 66%, #A09090);
11 }
12
13 body.certerror {
14   background-image: linear-gradient(-45deg, #FFCF00,     #FFCF00 33%,
15                                             #000000 33%, #000000 66%,
16                                             #FFCF00 66%, #FFCF00);
17 }
18
19 body.certerror .title {
20   background-image: url("cert-error.svg");
21 }
22
23 #errorContainer {
24   display: none;
25 }
26
27 /* Pressing the retry button will cause the cursor to flicker from a pointer to
28  * not-allowed. Override the disabled cursor behaviour since we will never show
29  * the button disabled as the initial state. */
30 button:disabled {
31   cursor: pointer;
32 }
33
34 #prefChangeContainer {
35   display: none;
36 }
37
38 #learnMoreContainer {
39   display: none;
40 }
41
42 #certErrorButtonContainer {
43   display: none;
44 }
45
46 body.certerror #certErrorButtonContainer {
47   display: flex;
48 }
49
50 body.certerror #netErrorButtonContainer {
51   display: none;
52 }
53
54 #errorTryAgain {
55   margin-top: 1.2em;
56   min-width: 150px;
57 }
58
59 #returnButton {
60   min-width: 250px;
61 }
62
63 #advancedButton {
64   display: none;
65 }
66
67 body.certerror #advancedButton {
68   display: block;
69 }
70
71 #certificateErrorReporting {
72   display: none;
73 }
74
75 .container {
76   position: relative;
77 }
78
79 #advancedPanelContainer {
80   position: absolute;
81   padding: 24px 0;
82 }
83
84 .advanced-panel {
85   /* Hidden until the link is clicked */
86   display: none;
87   background-color: var(--in-content-box-background);
88   border: 1px var(--in-content-box-border-color) solid;
89   /* Don't use top padding because the default p style has top padding, and it
90    * makes the overall div look uneven */
91   padding: 0 12px 12px 12px;
92   font-size: 0.9em;
93 }
94
95 #overrideWeakCryptoPanel {
96   display: none;
97   flex-direction: row;
98   flex-wrap: wrap;
99   justify-content: space-between;
100   align-content: space-between;
101   align-items: flex-start;
102   margin-top: 1em;
103 }
104
105 span#hostname {
106   font-weight: bold;
107 }
108
109 #automaticallyReportInFuture {
110   cursor: pointer;
111 }
112
113 #errorCode:not([href]) {
114   color: var(--in-content-page-color);
115   cursor: text;
116   text-decoration: none;
117 }
118
119 #errorCode[href] {
120   white-space: nowrap;
121 }
122
123 #badCertTechnicalInfo {
124   overflow: auto;
125   white-space: pre-wrap;
126 }
127
128 #certificateErrorReporting {
129   display: none;
130 }
131
132 #certificateErrorDebugInformation {
133   display: none;
134   background-color: var(--in-content-box-background) !important;
135   border-top: 1px solid var(--in-content-border-color);
136   position: absolute;
137   left: 0%;
138   top: 100%;
139   width: 65%;
140   padding: 1em 17.5%;
141 }
142
143 #certificateErrorText {
144   font-family: monospace;
145   white-space: pre-wrap;
146   padding: 1em 0;
147 }