browser/metro/theme/crashprompt.css

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:cd18c4750d67
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 %filter substitution
6 %include defines.inc
7
8 body {
9 background-color: #F4F4F4;
10 margin-left: 16%;
11 margin-right: 23%;
12 margin-top: 115px;
13 }
14
15 a {
16 text-decoration: none;
17 }
18
19 #detailsLink {
20 color: black;
21 display: table-row;
22 }
23
24 #detailsGrid {
25 display: table;
26 }
27
28 #detailsContainer {
29 display: table-row;
30 }
31
32 #detailsLinkLabel {
33 display: table-cell;
34 }
35
36 .detailsSpacer {
37 display: table-cell;
38 padding-right: 8px;
39 }
40
41 #crashpromptDetailedMessage {
42 font-size: @metro_font_snormal@;
43 display: table-cell;
44 }
45
46 #crashPromptTitle {
47 color: #737980;
48 font-weight: normal;
49 }
50
51 .hidden {
52 display: none !important;
53 }
54
55 #crashPromptButtonContainer {
56 margin-top: 40px;
57 }
58
59 #lightboxBackdrop {
60 position: fixed;
61 top: 0%;
62 left: 0%;
63 width: 100%;
64 height: 100%;
65 z-index: 1001;
66 background-color: rgba(0,0,0,0.7);
67 }
68
69 #lightbox {
70 position: fixed;
71 top: 20%;
72 left: 15%;
73 width: 70%;
74 height: 60%;
75 padding-bottom: 1%;
76 padding-top: 1%;
77 background-color: white;
78 z-index: 1002;
79 }
80
81 #privacyPolicyTitle {
82 margin-left: 10%;
83 }
84
85 #privacyPolicyBody {
86 margin-left: 10%;
87 margin-right: 10%;
88 padding-right: 20px;
89 max-height: 75%;
90 overflow: auto;
91 }
92
93 #lightboxCloseButton {
94 background-image: -moz-image-rect(url("chrome://browser/skin/images/infobar-close.png"), 0, 40, 40, 0);
95 width: 40px;
96 height: 40px;
97 float: right;
98 margin-right: 30px;
99 margin-top: 10px;
100 }
101
102 button {
103 color: #FFFFFF;
104 }
105
106 button:not([disabled]):hover {
107 color: #FFFFFF;
108 }
109
110 #refuseButton {
111 background: #847F7C;
112 }
113
114 #refuseButton:hover {
115 background: #B0B0B0;
116 }
117
118 hr {
119 border: 1px solid #C7C7C7;
120 }
121
122 #privacyPolicyLink {
123 color: #649FEF;
124 }
125
126 .button-default {
127 background: #649FEF;
128 border-color: #9DCFF2;
129 }
130
131 .button-default:not([disabled]):hover {
132 background: #2990D9;
133 border-color: #8DBAD9;
134 }

mercurial