mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
135 lines
2.0 KiB
CSS
135 lines
2.0 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/. */
|
|
|
|
%filter substitution
|
|
%include defines.inc
|
|
|
|
body {
|
|
background-color: #F4F4F4;
|
|
margin-left: 16%;
|
|
margin-right: 23%;
|
|
margin-top: 115px;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
#detailsLink {
|
|
color: black;
|
|
display: table-row;
|
|
}
|
|
|
|
#detailsGrid {
|
|
display: table;
|
|
}
|
|
|
|
#detailsContainer {
|
|
display: table-row;
|
|
}
|
|
|
|
#detailsLinkLabel {
|
|
display: table-cell;
|
|
}
|
|
|
|
.detailsSpacer {
|
|
display: table-cell;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
#crashpromptDetailedMessage {
|
|
font-size: @metro_font_snormal@;
|
|
display: table-cell;
|
|
}
|
|
|
|
#crashPromptTitle {
|
|
color: #737980;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
#crashPromptButtonContainer {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
#lightboxBackdrop {
|
|
position: fixed;
|
|
top: 0%;
|
|
left: 0%;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1001;
|
|
background-color: rgba(0,0,0,0.7);
|
|
}
|
|
|
|
#lightbox {
|
|
position: fixed;
|
|
top: 20%;
|
|
left: 15%;
|
|
width: 70%;
|
|
height: 60%;
|
|
padding-bottom: 1%;
|
|
padding-top: 1%;
|
|
background-color: white;
|
|
z-index: 1002;
|
|
}
|
|
|
|
#privacyPolicyTitle {
|
|
margin-left: 10%;
|
|
}
|
|
|
|
#privacyPolicyBody {
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
padding-right: 20px;
|
|
max-height: 75%;
|
|
overflow: auto;
|
|
}
|
|
|
|
#lightboxCloseButton {
|
|
background-image: -moz-image-rect(url("chrome://browser/skin/images/infobar-close.png"), 0, 40, 40, 0);
|
|
width: 40px;
|
|
height: 40px;
|
|
float: right;
|
|
margin-right: 30px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
button {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
button:not([disabled]):hover {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
#refuseButton {
|
|
background: #847F7C;
|
|
}
|
|
|
|
#refuseButton:hover {
|
|
background: #B0B0B0;
|
|
}
|
|
|
|
hr {
|
|
border: 1px solid #C7C7C7;
|
|
}
|
|
|
|
#privacyPolicyLink {
|
|
color: #649FEF;
|
|
}
|
|
|
|
.button-default {
|
|
background: #649FEF;
|
|
border-color: #9DCFF2;
|
|
}
|
|
|
|
.button-default:not([disabled]):hover {
|
|
background: #2990D9;
|
|
border-color: #8DBAD9;
|
|
}
|