mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
142 lines
2.5 KiB
CSS
142 lines
2.5 KiB
CSS
/* 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/. */
|
|
|
|
@import url("chrome://global/skin/in-content/common.css");
|
|
|
|
body {
|
|
display: flex;
|
|
box-sizing: padding-box;
|
|
min-height: 100vh;
|
|
padding: 0 48px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
ul, ol {
|
|
margin: 0;
|
|
padding: 0;
|
|
-moz-margin-start: 1em;
|
|
}
|
|
|
|
ul > li, ol > li {
|
|
margin-bottom: .5em;
|
|
}
|
|
|
|
ul {
|
|
list-style: disc;
|
|
}
|
|
|
|
#errorPageContainer {
|
|
min-width: 320px;
|
|
max-width: 512px;
|
|
}
|
|
|
|
#errorTitleText {
|
|
background: url("aboutNetError_info.svg") left 0 no-repeat;
|
|
background-size: 1.2em;
|
|
-moz-margin-start: -2em;
|
|
-moz-padding-start: 2em;
|
|
}
|
|
|
|
#errorTitleText:-moz-dir(rtl) {
|
|
background-position: right 0;
|
|
}
|
|
|
|
#errorTryAgain {
|
|
margin-top: 1.2em;
|
|
min-width: 150px
|
|
}
|
|
|
|
#errorContainer {
|
|
display: none;
|
|
}
|
|
|
|
@media (max-width: 675px) {
|
|
#errorTitleText {
|
|
padding-top: 0;
|
|
background-image: none;
|
|
-moz-padding-start: 0;
|
|
-moz-margin-start: 0;
|
|
}
|
|
}
|
|
|
|
/* 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. */
|
|
button:disabled {
|
|
cursor: pointer;
|
|
}
|
|
|
|
div#certificateErrorReporting {
|
|
display: none;
|
|
float:right;
|
|
/* Align with the "Try Again" button */
|
|
margin-top:24px;
|
|
margin-right:24px;
|
|
}
|
|
|
|
div#certificateErrorReporting a,
|
|
div#certificateErrorReportingPanel a {
|
|
color: #0095DD;
|
|
}
|
|
|
|
div#certificateErrorReporting a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
div#certificateErrorReporting a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
span.downArrow {
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
div#certificateErrorReportingPanel {
|
|
/* Hidden until the link is clicked */
|
|
display: none;
|
|
background-color: white;
|
|
border: 1px lightgray 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 12px 12px;
|
|
box-shadow: 0 0 4px #ddd;
|
|
position: relative;
|
|
width: 75%;
|
|
left: 34%;
|
|
font-size: 0.9em;
|
|
top: 8px;
|
|
}
|
|
|
|
span#hostname {
|
|
font-weight: bold;
|
|
}
|
|
|
|
#automaticallyReportInFuture {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#reportingState {
|
|
padding-left: 150px;
|
|
}
|
|
|
|
#reportSendingMessage {
|
|
position: relative;
|
|
display: none;
|
|
}
|
|
|
|
#reportSentMessage {
|
|
position: relative;
|
|
display: none;
|
|
}
|
|
|
|
button#reportCertificateError {
|
|
position: relative;
|
|
}
|
|
|
|
button#reportCertificateErrorRetry {
|
|
position: relative;
|
|
display: none;
|
|
}
|