third and last part of syncing LCARStrek with Firefox 51 browser windows theme changes
[themes.git] / LCARStrek / browser / aboutNetError.css
CommitLineData
9168a62c
RK
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
b4888bae 5@import url("chrome://browser/skin/error-pages.css");
9168a62c
RK
6
7body {
b4888bae
RK
8 background-image: linear-gradient(-45deg, #A09090, #A09090 33%,
9 #000000 33%, #000000 66%,
10 #A09090 66%, #A09090);
9168a62c
RK
11}
12
b4888bae
RK
13body.certerror {
14 background-image: linear-gradient(-45deg, #FFCF00, #FFCF00 33%,
15 #000000 33%, #000000 66%,
16 #FFCF00 66%, #FFCF00);
9168a62c
RK
17}
18
b4888bae 19body.certerror .title {
13875a54
RK
20 background-image: url("cert-error.svg");
21}
22
9168a62c
RK
23#errorContainer {
24 display: none;
25}
26
9168a62c
RK
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. */
30button:disabled {
31 cursor: pointer;
32}
8c5bee4f 33
b4888bae 34#prefChangeContainer {
13875a54
RK
35 display: none;
36}
37
b4888bae 38#learnMoreContainer {
13875a54 39 display: none;
13875a54
RK
40}
41
b4888bae
RK
42#certErrorButtonContainer {
43 display: none;
13875a54
RK
44}
45
b4888bae
RK
46body.certerror #certErrorButtonContainer {
47 display: flex;
13875a54
RK
48}
49
b4888bae
RK
50body.certerror #netErrorButtonContainer {
51 display: none;
13875a54
RK
52}
53
b4888bae
RK
54#errorTryAgain {
55 margin-top: 1.2em;
13875a54
RK
56 min-width: 150px;
57}
58
b4888bae
RK
59#returnButton {
60 min-width: 250px;
13875a54
RK
61}
62
b4888bae 63#advancedButton {
8c5bee4f 64 display: none;
8c5bee4f
RK
65}
66
b4888bae
RK
67body.certerror #advancedButton {
68 display: block;
8c5bee4f
RK
69}
70
b4888bae
RK
71#certificateErrorReporting {
72 display: none;
8c5bee4f
RK
73}
74
b4888bae
RK
75.container {
76 position: relative;
8c5bee4f
RK
77}
78
b4888bae
RK
79#advancedPanelContainer {
80 position: absolute;
81 padding: 24px 0;
db1c5db1 82 width: 100%;
8c5bee4f
RK
83}
84
b4888bae 85.advanced-panel {
8c5bee4f
RK
86 /* Hidden until the link is clicked */
87 display: none;
b4888bae
RK
88 background-color: var(--in-content-box-background);
89 border: 1px var(--in-content-box-border-color) solid;
8c5bee4f
RK
90 /* Don't use top padding because the default p style has top padding, and it
91 * makes the overall div look uneven */
92 padding: 0 12px 12px 12px;
20752032 93 font-size: 0.9em;
8c5bee4f
RK
94}
95
b4888bae
RK
96#overrideWeakCryptoPanel {
97 display: none;
cb8b9460
RK
98 flex-direction: row;
99 flex-wrap: wrap;
100 justify-content: space-between;
101 align-content: space-between;
102 align-items: flex-start;
b4888bae 103 margin-top: 1em;
cb8b9460
RK
104}
105
8c5bee4f
RK
106span#hostname {
107 font-weight: bold;
108}
109
110#automaticallyReportInFuture {
111 cursor: pointer;
db1c5db1
RK
112 display: inline-block;
113 padding-inline-start: 2.3em;
114 text-indent: -2.3em;
115 line-height: 16px
8c5bee4f
RK
116}
117
b4888bae 118#errorCode:not([href]) {
13875a54
RK
119 color: var(--in-content-page-color);
120 cursor: text;
121 text-decoration: none;
122}
123
b4888bae
RK
124#errorCode[href] {
125 white-space: nowrap;
126}
127
128#badCertTechnicalInfo {
129 overflow: auto;
130 white-space: pre-wrap;
131}
132
133#certificateErrorReporting {
134 display: none;
135}
136
137#certificateErrorDebugInformation {
138 display: none;
139 background-color: var(--in-content-box-background) !important;
140 border-top: 1px solid var(--in-content-border-color);
141 position: absolute;
142 left: 0%;
143 top: 100%;
144 width: 65%;
145 padding: 1em 17.5%;
8c5bee4f
RK
146}
147
b4888bae
RK
148#certificateErrorText {
149 font-family: monospace;
150 white-space: pre-wrap;
151 padding: 1em 0;
8c5bee4f 152}