6175092e2138dc050efe32741702d18055f11769
[themes.git] / LCARStrek / browser / preferences / in-content / preferences.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 file,
3    - You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5 /* === BEGIN shared/in-content/preferences.css === */
6
7 @namespace html "http://www.w3.org/1999/xhtml";
8
9 .main-content {
10   padding: 1.5em 0 0; /* That padding needs to match the upper stripe. */
11   overflow: auto;
12
13   /* This actually results in two black boxes extending to the right and bottom,
14    * leaving the LCARS-gray background only in a top stripe and
15    * a bit larger area on the top left.
16    * The prefpane will overlay that with the rounded shape we want. */
17   background-color: #A09090;
18   background-position: 3em 1.5em, 0px 5em;
19   background-image: linear-gradient(0deg, #000, #000), linear-gradient(0deg, #000, #000);
20   background-repeat: no-repeat;
21 }
22
23 #mainPrefPane {
24   padding: 10px 20px 0px;
25   border-radius: 1em 0 0 0;
26   background-color: #000000;
27
28   max-width: 800px;
29   font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
30   font-size: 1.25rem;
31   line-height: 22px;
32   color: #FF9F00;
33 }
34
35 * {
36   -moz-user-select: text;
37 }
38
39 button,
40 treecol {
41   /* override the * rule */
42   -moz-user-select: none;
43 }
44
45 /* Category List */
46
47 #categories {
48   background-color: #A09090;
49   padding-top: 4em;
50   margin: 0;
51   border-radius: 1em 0 0 0;
52   border: none;
53 }
54
55 .category {
56   background-color: #000000;
57   color: #FFCF00;
58   -moz-border-end-width: 0;
59   -moz-padding-start: 15px;
60   -moz-padding-end: 21px;
61   min-height: 40px;
62   transition: background-color 150ms;
63 }
64
65 .category:hover {
66   background-color: #FFCF00;
67   color: #000000;
68 }
69
70 .category[selected] {
71   background-color: #008484;
72   color: #000000;
73 }
74
75 #categories[keyboard-navigation="true"]:-moz-focusring > .category[current] {
76   border-top: 1px dotted #000000;
77   border-bottom: 1px dotted #000000;
78 }
79
80 .category-name {
81   line-height: 22px;
82   font-size: 1.25rem;
83   padding-bottom: 2px;
84   -moz-padding-start: 9px;
85   margin: 0;
86 }
87
88 .category-icon {
89   width: 24px;
90   height: 24px;
91   list-style-image: url("chrome://browser/skin/preferences/in-content/icons.png");
92 }
93
94 #category-general > .category-icon {
95   -moz-image-region: rect(0, 24px, 24px, 0);
96 }
97
98 #category-general:hover > .category-icon,
99 #category-general[selected] > .category-icon {
100   -moz-image-region: rect(24px, 24px, 48px, 0);
101 }
102
103 #category-search > .category-icon {
104   -moz-image-region: rect(0, 192px, 24px, 168px);
105 }
106
107 #category-search:hover > .category-icon,
108 #category-search[selected] > .category-icon {
109   -moz-image-region: rect(24px, 192px, 48px, 168px);
110 }
111
112 #category-content > .category-icon {
113   -moz-image-region: rect(0, 48px,  24px, 24px)
114 }
115
116 #category-content:hover > .category-icon,
117 #category-content[selected] > .category-icon {
118   -moz-image-region: rect(24px, 48px, 48px, 24px);
119 }
120
121 #category-application > .category-icon {
122   -moz-image-region: rect(0, 72px,  24px, 48px)
123 }
124
125 #category-application:hover > .category-icon,
126 #category-application[selected] > .category-icon {
127   -moz-image-region: rect(24px, 72px, 48px, 48px);
128 }
129
130 #category-privacy > .category-icon {
131   -moz-image-region: rect(0, 96px,  24px, 72px)
132 }
133
134 #category-privacy:hover > .category-icon,
135 #category-privacy[selected] > .category-icon {
136   -moz-image-region: rect(24px, 96px, 48px, 72px);
137 }
138
139 #category-security > .category-icon {
140   -moz-image-region: rect(0, 120px,  24px, 96px)
141 }
142
143 #category-security:hover > .category-icon,
144 #category-security[selected] > .category-icon {
145   -moz-image-region: rect(24px, 120px, 48px, 96px);
146 }
147
148 #category-sync > .category-icon {
149   -moz-image-region: rect(0, 144px, 24px, 120px);
150 }
151
152 #category-sync:hover > .category-icon,
153 #category-sync[selected] > .category-icon {
154   -moz-image-region: rect(24px, 144px, 48px, 120px);
155 }
156
157 #category-advanced > .category-icon {
158   -moz-image-region: rect(0, 168px, 24px, 144px)
159 }
160
161 #category-advanced:hover > .category-icon,
162 #category-advanced[selected] > .category-icon {
163   -moz-image-region: rect(24px, 168px, 48px, 144px);
164 }
165
166 @media (max-width: 800px) {
167   .category-name {
168     display: none;
169   }
170 }
171
172 /* header */
173
174 #header-advanced {
175   border-bottom: none;
176   padding-bottom: 0;
177 }
178
179 .indent {
180   margin-top: 7px;
181   margin-bottom: 7px;
182 }
183
184 /* General Pane */
185
186 #useFirefoxSync  {
187   font-size: 90%;
188   -moz-margin-end: 8px !important;
189 }
190
191 #getStarted {
192   font-size: 90%;
193 }
194
195 #isNotDefaultLabel {
196   font-weight: bold;
197 }
198
199 /* Content pane */
200 #playDRMContentLink {
201   /* Line up with the buttons in the other grid bits: */
202   margin-left: 4px !important;
203   margin-right: 4px !important;
204 }
205
206 /* Applications Pane Styles */
207
208 #applicationsContent {
209   padding: 15px 0;
210 }
211
212 #filter {
213   -moz-margin-start: 0;
214 }
215
216 #handlersView > richlistitem {
217   min-height: 36px !important;
218 }
219
220 .typeIcon {
221   -moz-margin-start: 10px !important;
222   -moz-margin-end: 9px !important;
223 }
224
225 .actionIcon {
226   -moz-margin-start: 11px !important;
227   -moz-margin-end: 8px !important;
228 }
229
230 .actionsMenu {
231   min-height: 36px;
232 }
233
234 .actionsMenu > menupopup > menuitem {
235   -moz-padding-start: 10px !important;
236 }
237
238 .actionsMenu > menupopup > menuitem > .menu-iconic-left {
239   -moz-margin-end: 8px !important;
240 }
241
242 /* XXX This style is for bug 740213 and should be removed once that
243    bug has a solution. */
244 description > html|a {
245   cursor: pointer;
246 }
247
248 #noFxaAccount {
249   /* Overriding the margins from the base preferences.css theme file.
250      These overrides can be simplified by fixing bug 1027174 */
251   margin: 0;
252 }
253
254 #weavePrefsDeck > vbox > label,
255 #weavePrefsDeck > vbox > groupbox,
256 #weavePrefsDeck > vbox > description,
257 #weavePrefsDeck > vbox > #pairDevice > label,
258 #weavePrefsDeck > #needsUpdate > hbox > #loginError,
259 #weavePrefsDeck > #hasFxaAccount > hbox:not(#tosPP-normal) > label,
260 #weavePrefsDeck > #hasFxaAccount > hbox:not(#tosPP-small) > label {
261   /* no margin-start for elements at the begin of a line */
262   -moz-margin-start: 0;
263 }
264
265 #advancedPrefs {
266   padding-bottom: 0; /* no padding needed in inContent prefs */
267 }
268
269 #tabsElement {
270 /*  -moz-margin-end: 4px; / add the 4px end-margin of other elements */
271 }
272
273 #encryptionPanel {
274   margin-top: 15px;
275 }
276
277 #telemetryLearnMore,
278 #FHRLearnMore,
279 #crashReporterLearnMore {
280   /* center the links */
281   margin-top: 8px;
282   margin-bottom: 8px;
283 }
284
285 #trackingProtectionImage {
286   width: 16px;
287   height: 16px;
288   list-style-image: url("chrome://browser/skin/bad-content-blocked-16.png");
289 }
290
291 @media (min-resolution: 2dppx) {
292   #trackingProtectionImage {
293     list-style-image: url("chrome://browser/skin/bad-content-blocked-16@2x.png");
294   }
295 }
296
297 /**
298  * Dialog
299  */
300
301 #dialogOverlay {
302   background-color: rgba(0,0,0,0.75);
303   visibility: hidden;
304 }
305
306 #dialogBox {
307   background-color: #000000;
308   background-clip: content-box;
309   color: #FF9F00;
310   /* font-size: 14px; */
311   border: 1px solid #9C9CFF;
312   border-radius: 10px;
313   display: -moz-box;
314   margin: 0;
315   padding-right: 6px;
316   padding-left: 6px;
317 }
318
319 #dialogBox[resizable="true"] {
320   resize: both;
321   overflow: hidden;
322   min-height: 20em;
323   min-width: 66ch;
324 }
325
326 #dialogBox > .groupbox-title {
327   -moz-margin-start: 0;
328   -moz-margin-end: 0;
329 /*  padding: 3.5px 0;
330   background-color: #F1F1F1; */
331 }
332
333 #dialogTitle {
334   text-align: center;
335 }
336
337 .close-icon {
338   background-color: transparent !important;
339   border: none;
340   box-shadow: none;
341   height: 18px;
342   padding: 0;
343   min-width: 18px;
344 }
345
346 #dialogBox > .groupbox-title > caption {
347   margin: 0;
348   border-radius: 1000px;
349   background-color: #A09090;
350 }
351
352 #dialogBox > .groupbox-body {
353   -moz-appearance: none;
354   padding: 0;
355 }
356
357 #dialogFrame {
358   -moz-box-flex: 1;
359   /* Default dialog dimensions */
360   height: 20em;
361   width: 66ch;
362 }
363
364 /**
365  * End Dialog
366  */
367
368 /**
369  * Sync migration
370  */
371 #sync-migrate-upgrade-description {
372   /* description elts need a min-width to wrap correctly - bug 630864? */
373   min-width: 100px
374 }
375
376 #sync-migration {
377   border: 1px solid #9C9CFF;
378   background-color: #000000;
379   color: #A09090;
380   text-shadow: none;
381   margin: 5px 0 0 0;
382   animation: fadein 3000ms;
383 }
384
385 @keyframes fadein {
386   from { opacity: 0; }
387   to   { opacity: 1; }
388 }
389
390 /* === END shared/in-content/preferences.css === */
391
392 caption {
393 }
394
395 .indent-small {
396   -moz-margin-start: 10px;
397 }
398
399 @media (min-resolution: 2dppx) {
400   checkbox:hover::before,
401   checkbox[checked]::before {
402   }
403
404   checkbox[checked]::before {
405   }
406
407   .category-icon {
408     list-style-image: url("chrome://browser/skin/preferences/in-content/icons@2x.png");
409   }
410
411   #category-general > .category-icon {
412     -moz-image-region: rect(0, 48px, 48px, 0);
413   }
414
415   #category-general:hover > .category-icon,
416   #category-general[selected] > .category-icon {
417     -moz-image-region: rect(48px, 48px, 96px, 0);
418   }
419
420   #category-search > .category-icon {
421     -moz-image-region: rect(0, 384px, 48px, 336px);
422   }
423
424   #category-search:hover > .category-icon,
425   #category-search[selected] > .category-icon {
426     -moz-image-region: rect(48, 384px, 96px, 336px);
427   }
428
429   #category-content > .category-icon {
430     -moz-image-region: rect(0, 96px, 48px, 48px);
431   }
432
433   #category-content:hover > .category-icon,
434   #category-content[selected] > .category-icon {
435     -moz-image-region: rect(48px, 96px, 96px, 48px);
436   }
437
438   #category-application > .category-icon {
439     -moz-image-region: rect(0, 144px, 48px, 96px);
440   }
441
442   #category-application:hover > .category-icon,
443   #category-application[selected] > .category-icon {
444     -moz-image-region: rect(48px, 144px, 96px, 96px);
445   }
446
447   #category-privacy > .category-icon {
448     -moz-image-region: rect(0, 192px, 48px, 144px);
449   }
450
451   #category-privacy:hover > .category-icon,
452   #category-privacy[selected] > .category-icon {
453     -moz-image-region: rect(48px, 192px, 96px, 144px);
454   }
455
456   #category-security > .category-icon {
457     -moz-image-region: rect(0, 240px, 48px, 192px);
458   }
459
460   #category-security:hover > .category-icon,
461   #category-security[selected] > .category-icon {
462     -moz-image-region: rect(48px, 240px, 96px, 192px);
463   }
464
465   #category-sync > .category-icon {
466     -moz-image-region: rect(0, 288px, 48px, 240px);
467   }
468
469   #category-sync:hover > .category-icon,
470   #category-sync[selected] > .category-icon {
471     -moz-image-region: rect(48px, 288px, 96px, 240px);
472   }
473
474   #category-advanced > .category-icon {
475     -moz-image-region: rect(0, 336px, 48px, 288px);
476   }
477
478   #category-advanced:hover > .category-icon,
479   #category-advanced[selected] > .category-icon {
480     -moz-image-region: rect(48px, 336px, 96px, 288px);
481   }
482 }