silence warnings about a missing light theme CSS file
[themes.git] / LCARStrek / browser / devtools / widgets.css
CommitLineData
cc7e70eb
RK
1/* vim:set ts=2 sw=2 sts=2 et: */
2/* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5
45dc7657
RK
6/* === BEGIN widgets.inc.css === */
7
cc7e70eb
RK
8/* Generic pane helpers */
9
10.generic-toggled-side-pane {
cc7e70eb
RK
11 -moz-margin-start: 0px !important;
12 /* Unfortunately, transitions don't work properly with locale-aware properties,
13 so both the left and right margins are set via js, while the start margin
14 is always overridden here. */
15}
16
17.generic-toggled-side-pane[animated] {
18 transition: margin 0.25s ease-in-out;
19}
20
c1d2ce3e
RK
21/* Responsive container */
22
23.devtools-responsive-container {
24 -moz-box-orient: horizontal;
25}
26
27@media (max-width: 700px) {
28 .devtools-responsive-container {
29 -moz-box-orient: vertical;
30 }
31
32 .devtools-responsive-container > .devtools-side-splitter {
33 border: 0;
34 margin: 0;
35 min-height: 3px;
36 height: 3px;
37 margin-bottom: -3px;
38 /* In some edge case the cursor is not changed to n-resize */
39 cursor: n-resize;
40 }
41
42 .devtools-responsive-container > .devtools-sidebar-tabs {
43 min-height: 35vh;
44 max-height: 75vh;
45 }
46}
47
cc7e70eb
RK
48/* BreacrumbsWidget */
49
50.breadcrumbs-widget-container {
fff8097b
RK
51 -moz-margin-start: 2px;
52 -moz-margin-start: 2px;
45dc7657
RK
53 max-height: 25px; /* Set max-height for proper sizing on linux */
54 height: 25px; /* Set height to prevent starting small waiting for content */
cc7e70eb
RK
55 /* A fake 1px-shadow is included in the border-images of the
56 breadcrumbs-widget-items, to match toolbar-buttons style.
57 This negative margin compensates the extra row of pixels created
58 by the shadow.*/
f7774352 59/* margin: -1px 0;*/
cc7e70eb
RK
60}
61
cc7e70eb
RK
62.scrollbutton-up,
63.scrollbutton-down {
45dc7657
RK
64 background: transparent;
65 box-shadow: none;
66 border: none;
67 margin: 0;
68 padding: 0;
cc7e70eb
RK
69}
70
71.scrollbutton-up {
72 -moz-margin-end: 1px;
73}
74
75.scrollbutton-down {
76 -moz-margin-end: 0;
77}
78
cc7e70eb
RK
79.scrollbutton-up > .toolbarbutton-icon,
80.scrollbutton-down > .toolbarbutton-icon {
81 /* margin: 0 5px; */
82}
83
84.scrollbutton-up:not([disabled]):active:hover > .toolbarbutton-icon,
85.scrollbutton-down:not([disabled]):active:hover > .toolbarbutton-icon {
86}
87
88.scrollbutton-up[disabled] > .toolbarbutton-icon,
89.scrollbutton-down[disabled] > .toolbarbutton-icon {
90}
91
92.scrollbutton-up:-moz-locale-dir(ltr) {
93 border-top-right-radius: 0;
94 border-bottom-right-radius: 0;
95}
96
97.scrollbutton-down:-moz-locale-dir(ltr) {
98 border-top-left-radius: 0;
99 border-bottom-left-radius: 0;
100}
101
102.scrollbutton-up:-moz-locale-dir(rtl) {
103 border-top-left-radius: 0;
104 border-bottom-left-radius: 0;
105}
106
107.scrollbutton-down:-moz-locale-dir(rtl) {
108 border-top-right-radius: 0;
109 border-bottom-right-radius: 0;
110}
111
45dc7657
RK
112/* Draw shadows to indicate there is more content 'behind' scrollbuttons. */
113/*
114.scrollbutton-up:-moz-locale-dir(ltr),
115.scrollbutton-down:-moz-locale-dir(rtl) {
116 border-right: solid 1px rgba(255, 255, 255, .1);
117 border-left: solid 1px transparent;
118 box-shadow: 3px 0px 3px -3px #181d20;
cc7e70eb
RK
119}
120
45dc7657
RK
121.scrollbutton-down:-moz-locale-dir(ltr),
122.scrollbutton-up:-moz-locale-dir(rtl) {
123 border-right: solid 1px transparent;
124 border-left: solid 1px rgba(255, 255, 255, .1);
125 box-shadow: -3px 0px 3px -3px #181d20;
cc7e70eb
RK
126}
127
45dc7657
RK
128.scrollbutton-up[disabled],
129.scrollbutton-down[disabled] {
130 box-shadow: none;
131 border-color: transparent;
cc7e70eb 132}
45dc7657 133*/
cc7e70eb 134
45dc7657
RK
135.scrollbutton-up > .toolbarbutton-icon:-moz-locale-dir(rtl),
136.scrollbutton-down > .toolbarbutton-icon:-moz-locale-dir(ltr) {
137/* transform: scaleX(-1); */
cc7e70eb
RK
138}
139
45dc7657
RK
140/* The breadcrumb separator elements are used as background images with
141 * -moz-element, so we position them offscreen since we don't care about
142 * seeing the original elements.
143 */
144.breadcrumb-separator-container {
145 position: fixed;
146 top: -1000px;
147 left: -1000px;
cc7e70eb
RK
148}
149
45dc7657
RK
150#breadcrumb-separator-before,
151#breadcrumb-separator-after,
152#breadcrumb-separator-normal {
153 width: 12px;
154 height: 25px;
155 overflow: hidden;
cc7e70eb
RK
156}
157
45dc7657
RK
158#breadcrumb-separator-before,
159#breadcrumb-separator-after:after {
fff8097b 160 background: #008484; /* Select Highlight Blue */
cc7e70eb
RK
161}
162
45dc7657
RK
163#breadcrumb-separator-after,
164#breadcrumb-separator-before:after {
fff8097b 165 background: #000000; /* Toolbars */
cc7e70eb
RK
166}
167
45dc7657
RK
168/* This chevron arrow cannot be replicated easily in CSS, so we are using
169 * a background image for it (still keeping it in a separate element so
170 * we can handle RTL support with a CSS transform).
171 */
172#breadcrumb-separator-normal {
173 background: url("breadcrumbs-divider@2x.png") no-repeat center right;
174 background-size: 12px 24px;
cc7e70eb
RK
175}
176
45dc7657
RK
177/* Fake a triangle by rotating a rectangle inside the elements */
178#breadcrumb-separator-before:after,
179#breadcrumb-separator-after:after {
180 content: "";
181 display: block;
182 width: 25px;
183 height: 25px;
184 transform: translateX(-18px) rotate(45deg);
1783ea50 185 box-sizing: border-box;
cc7e70eb
RK
186}
187
45dc7657
RK
188.breadcrumbs-widget-item {
189 background-color: #000000;
190 min-height: 25px;
191 min-width: 65px;
192 margin: 0;
193 padding: 0 8px 0 20px;
194 border: none;
fff8097b 195 border-radius: 0;
45dc7657
RK
196 outline: none;
197 color: #FF9F00;
cc7e70eb
RK
198}
199
45dc7657
RK
200.breadcrumbs-widget-item:hover {
201 background-color: #FFCF00;
202 color: #000000;
cc7e70eb
RK
203}
204
45dc7657
RK
205.breadcrumbs-widget-item[checked]:not(:hover) {
206 background-color: #008484;
207 color: #000000;
cc7e70eb
RK
208}
209
45dc7657
RK
210.breadcrumbs-widget-item[siblings-menu-open],
211.breadcrumbs-widget-item:active {
212 background-color: #FF9F00;
213 color: #000000;
cc7e70eb
RK
214}
215
45dc7657 216.breadcrumbs-widget-item:not([checked]) {
fff8097b
RK
217 background-image: -moz-element(#breadcrumb-separator-normal);
218 background-repeat: no-repeat;
219 background-position: center left;
220}
221
45dc7657 222.breadcrumbs-widget-item[checked] + .breadcrumbs-widget-item {
fff8097b
RK
223 background-image: -moz-element(#breadcrumb-separator-after);
224 background-repeat: no-repeat;
225 background-position: 0 0;
cc7e70eb
RK
226}
227
45dc7657 228.breadcrumbs-widget-item[checked] {
fff8097b
RK
229 background-image: -moz-element(#breadcrumb-separator-before);
230 background-repeat: no-repeat;
231 background-position: 0 0;
45dc7657 232 background-color: #008484; /* Select Highlight Blue */
cc7e70eb
RK
233}
234
45dc7657
RK
235.breadcrumbs-widget-item:first-child {
236 background-image: none;
cc7e70eb
RK
237}
238
45dc7657
RK
239/* RTL support: move the images that were on the left to the right,
240 * and move images that were on the right to the left.
241 */
cc7e70eb 242.breadcrumbs-widget-item:-moz-locale-dir(rtl) {
45dc7657 243 padding: 0 20px 0 8px;
cc7e70eb
RK
244}
245
45dc7657
RK
246.breadcrumbs-widget-item:-moz-locale-dir(rtl),
247.breadcrumbs-widget-item[checked] + .breadcrumbs-widget-item:-moz-locale-dir(rtl) {
248 background-position: center right;
cc7e70eb
RK
249}
250
45dc7657
RK
251#breadcrumb-separator-before:-moz-locale-dir(rtl),
252#breadcrumb-separator-after:-moz-locale-dir(rtl),
253#breadcrumb-separator-normal:-moz-locale-dir(rtl) {
254 transform: scaleX(-1);
cc7e70eb
RK
255}
256
45dc7657
RK
257#breadcrumb-separator-before:-moz-locale-dir(rtl):after,
258#breadcrumb-separator-after:-moz-locale-dir(rtl):after {
259 transform: translateX(-5px) rotate(45deg);
cc7e70eb
RK
260}
261
45dc7657
RK
262.breadcrumbs-widget-item[checked] .breadcrumbs-widget-item-id,
263.breadcrumbs-widget-item[checked] .breadcrumbs-widget-item-tag,
264.breadcrumbs-widget-item[checked] .breadcrumbs-widget-item-pseudo-classes,
265.breadcrumbs-widget-item[checked] .breadcrumbs-widget-item-classes {
266 color: #FF9F00; /* Foreground (Text) - Light */
cc7e70eb
RK
267}
268
fff8097b
RK
269.breadcrumbs-widget-item:not([checked]):hover .breadcrumbs-widget-item-id,
270.breadcrumbs-widget-item:not([checked]):hover .breadcrumbs-widget-item-tag,
271.breadcrumbs-widget-item:not([checked]):hover .breadcrumbs-widget-item-pseudo-classes,
272.breadcrumbs-widget-item:not([checked]):hover .breadcrumbs-widget-item-classes {
273 color: #000000 !important;
274}
275
46e71434 276.breadcrumbs-widget-item {
fff8097b 277 color: #FFCF00; /* Foreground (Text) - Light */
46e71434
RK
278}
279
280.breadcrumbs-widget-item-id {
45dc7657 281 color: #A09090; /* Foreground (Text) - Grey */
cc7e70eb
RK
282}
283
46e71434
RK
284.breadcrumbs-widget-item-classes {
285 color: #FF9F00; /* Content (Text) - Light */
286}
287
45dc7657
RK
288.breadcrumbs-widget-item-pseudo-classes {
289 color: #FFCF00; /* Light Orange */
cc7e70eb
RK
290}
291
45dc7657 292/* SimpleListWidget */
cc7e70eb 293
46e71434
RK
294.simple-list-widget-container {
295 /* Hack: force hardware acceleration */
296 transform: translateZ(1px);
cc7e70eb
RK
297}
298
45dc7657 299.simple-list-widget-item.selected {
46e71434
RK
300 background-color: #008484; /* Select Highlight Blue */
301 color: #FFCF00; /* Light foreground text */
302}
303
304.simple-list-widget-item:not(.selected):hover {
305 background-color: #FFCF00;
45dc7657 306 color: #FFCF00;
cc7e70eb
RK
307}
308
45dc7657
RK
309.simple-list-widget-perma-text,
310.simple-list-widget-empty-text {
311 color: #8050B0;
312 padding: 4px 8px;
cc7e70eb
RK
313}
314
45dc7657 315/* FastListWidget */
cc7e70eb 316
45dc7657
RK
317.fast-list-widget-container {
318 /* Hack: force hardware acceleration */
319 transform: translateZ(1px);
cc7e70eb
RK
320}
321
45dc7657
RK
322/* dark/light theme */
323.fast-list-widget-empty-text {
324 padding: 12px;
325 font-weight: 600;
326 color: #8050B0;
cc7e70eb
RK
327}
328
329/* SideMenuWidget */
330
45dc7657
RK
331/* SideMenuWidget container */
332
cc7e70eb 333.side-menu-widget-container {
dfa34f73
RK
334 /* Hack: force hardware acceleration */
335 transform: translateZ(1px);
336
cc7e70eb
RK
337 background-color: #000000;
338 color: #FF9F00;
339}
340
de57e474 341.side-menu-widget-container:-moz-locale-dir(ltr),
45dc7657 342.side-menu-widget-empty-text:-moz-locale-dir(ltr) {
cc7e70eb
RK
343}
344
de57e474 345.side-menu-widget-container:-moz-locale-dir(rtl),
45dc7657 346.side-menu-widget-empty-text:-moz-locale-dir(rtl)[with-arrows=true]:-moz-locale-dir(rtl) {
cc7e70eb
RK
347}
348
de57e474 349.side-menu-widget-group {
7600e0b1
RK
350 /* To allow visibility of the dark margin shadow. */
351/* -moz-margin-end: 1px; */
352}
353
354.side-menu-widget-container[with-arrows=true] .side-menu-widget-item {
355 /* To compensate for the arrow image's dark margin. */
356/* -moz-margin-end: -1px; */
357}
358
359/* SideMenuWidget groups */
360
cc7e70eb 361.side-menu-widget-group-title {
cc7e70eb 362 padding: 4px;
3a0880a9
RK
363
364 background-color: #A09090;
cc7e70eb 365 color: #000000;
cc7e70eb
RK
366}
367
7600e0b1
RK
368/* SideMenuWidget items */
369
cc7e70eb
RK
370.side-menu-widget-item {
371 border-top: 1px solid #9C9CFF;
45dc7657 372 /* To compensate for the top and bottom borders */
1b13529a
RK
373 margin-top: -1px;
374 margin-bottom: -1px;
45dc7657 375 background-clip: padding-box;
cc7e70eb
RK
376}
377
378.side-menu-widget-item:last-of-type {
379 border-bottom: 1px solid #9C9CFF;
380}
381
382.side-menu-widget-item.selected {
383 background-color: #008484 !important;
384 color: #000000;
385}
386
45dc7657
RK
387.side-menu-widget-item-arrow {
388 -moz-margin-start: -7px;
389 width: 7px; /* The image's width is 7 pixels */
390 /* Cover the border of the side-menu-widget-item */
391 margin-top: -1px;
392 margin-bottom: -1px;
393}
394
cc7e70eb
RK
395.side-menu-widget-item.selected > .side-menu-widget-item-arrow {
396 background-size: auto, 1px 100%;
397 background-repeat: no-repeat;
398}
399
400.side-menu-widget-item.selected > .side-menu-widget-item-arrow:-moz-locale-dir(ltr) {
45dc7657 401 background-position: center right;
cc7e70eb
RK
402}
403
404.side-menu-widget-item.selected > .side-menu-widget-item-arrow:-moz-locale-dir(rtl) {
45dc7657 405 background-position: center left;
cc7e70eb
RK
406}
407
5401f433 408.side-menu-widget-item.selected > .side-menu-widget-item-arrow:-moz-locale-dir(ltr) {
45dc7657 409 background-image: url("itemArrow-ltr.svg");
e447dcba
RK
410}
411
5401f433 412.side-menu-widget-item.selected > .side-menu-widget-item-arrow:-moz-locale-dir(rtl) {
45dc7657 413 background-image: url("itemArrow-rtl.svg");
1b13529a
RK
414}
415
45dc7657
RK
416/* SideMenuWidget items contents */
417
418.side-menu-widget-item-contents {
419 padding: 4px;
420 /* To avoid having content overlapping the arrow image. */
421 -moz-padding-end: 8px;
cc7e70eb
RK
422}
423
cc7e70eb 424.side-menu-widget-item-other {
45dc7657
RK
425 /* To avoid having content overlapping the arrow image. */
426 -moz-padding-end: 8px;
427 /* To compensate for the .side-menu-widget-item-contents padding. */
428 -moz-margin-start: -4px;
429 -moz-margin-end: -8px;
430
cc7e70eb 431 background-color: #000000;
cc7e70eb
RK
432}
433
434.side-menu-widget-item-other.selected {
435 background-color: #008484;
436 color: #000000;
437}
438
cc7e70eb 439.side-menu-widget-item-other:first-of-type {
45dc7657 440 margin-top: 4px;
1b13529a 441/* border-top-left-radius: 4px; */
cc7e70eb
RK
442}
443
45dc7657
RK
444.side-menu-widget-item-other:last-of-type {
445 margin-bottom: -4px;
446}
447
cc7e70eb
RK
448.side-menu-widget-item-other:not(.selected) > label {
449 color: #9C9CFF;
450}
451
6568957a
RK
452/* SideMenuWidget checkboxes */
453
454.side-menu-widget-group-checkbox {
455 margin: 0;
456 -moz-margin-end: 4px;
457}
458
459.side-menu-widget-item-checkbox {
460 margin: 0;
461 -moz-margin-start: 4px;
462 -moz-margin-end: -4px;
463}
464
7600e0b1
RK
465/* SideMenuWidget misc */
466
45dc7657 467.side-menu-widget-empty-text {
cc7e70eb 468 padding: 12px;
3a0880a9
RK
469
470 background-color: #000000;
cc7e70eb 471 font-weight: 600;
3a0880a9 472 color: #A09090;
cc7e70eb
RK
473}
474
475/* VariablesView */
476
dfa34f73
RK
477.variables-view-container:not([empty]) {
478 /* Hack: force hardware acceleration */
479 transform: translateZ(1px);
480}
481
cc7e70eb
RK
482.variables-view-empty-notice {
483 color: #A09090;
484 padding: 2px;
485}
486
c1d2ce3e
RK
487.variables-view-scope:focus > .title,
488.theme-dark .variable-or-property:focus > .title {
489 background-color: #008484; /* Selection colors */
490 color: #FFCF00;
491}
492
cc7e70eb
RK
493.variables-view-scope > .title {
494 background-color: #A09090;
495 color: #000000;
496}
497
dfa34f73 498/* Generic variables traits */
cc7e70eb 499
dfa34f73
RK
500.variables-view-variable:not(:last-child) {
501 border-bottom: 1px solid #A09090;
502}
cc7e70eb 503
dfa34f73
RK
504.variables-view-variable > .title > .name {
505 font-weight: 600;
cc7e70eb
RK
506}
507
dfa34f73
RK
508/* Generic variables *and* properties traits */
509
510.variable-or-property:focus > .title > label {
511 color: inherit !important;
cc7e70eb
RK
512}
513
dfa34f73
RK
514.variable-or-property > .title > .arrow {
515 -moz-margin-start: 3px;
cc7e70eb
RK
516}
517
2a8b2b48 518.variable-or-property:not([untitled]) > .variables-view-element-details {
dfa34f73 519 -moz-margin-start: 7px;
cc7e70eb
RK
520}
521
dfa34f73 522/* Traits applied when variables or properties are changed or overridden */
cc7e70eb 523
dfa34f73
RK
524.variable-or-property:not([overridden]) {
525 transition: background 1s ease-in-out, color 1s ease-in-out;
d2ce251d
RK
526}
527
dfa34f73
RK
528.variable-or-property:not([overridden])[changed] {
529 color: #000000;
530 transition-duration: .4s;
cc7e70eb
RK
531}
532
dfa34f73
RK
533.variable-or-property[overridden] {
534 background: rgba(160,144,144,0.0.5);
cc7e70eb
RK
535}
536
dfa34f73
RK
537.variable-or-property[overridden] .title > label {
538 /* Cross out the title for this variable and all child properties. */
539 font-style: italic;
540 text-decoration: line-through;
541 border-bottom: none !important;
542 color: #A09090;
543 opacity: 0.7;
cc7e70eb
RK
544}
545
dfa34f73
RK
546/* Traits applied when variables or properties are editable */
547
548.variable-or-property[editable] > .title > .value {
549 cursor: text;
550}
551
552.variable-or-property[overridden] .title > .value {
553 /* Disallow editing this variable and all child properties. */
554 pointer-events: none;
555}
cc7e70eb 556
e2734cc7
RK
557/* Custom configurable/enumerable/writable or frozen/sealed/extensible
558 * variables and properties */
cc7e70eb 559
dfa34f73 560.variable-or-property[non-enumerable]:not([self]):not([pseudo-item]) > .title > .name {
de57e474 561 opacity: 0.6;
cc7e70eb
RK
562}
563
dfa34f73 564.variable-or-property[non-configurable]:not([pseudo-item]) > .title > .name {
cc7e70eb
RK
565 border-bottom: 1px dashed #9C9CFF;
566}
567
dfa34f73 568.variable-or-property[non-writable]:not([pseudo-item]) > .title > .name {
cc7e70eb
RK
569 border-bottom: 1px dashed #FF0000;
570}
571
dfa34f73 572.variable-or-property[safe-getter]:not([pseudo-item]) > .title > .name {
de57e474
RK
573 border-bottom: 1px dashed #A09090;
574}
575
e2734cc7 576.variable-or-property-non-writable-icon {
46e71434 577 background: url("chrome://browser/skin/devtools/vview-lock.png") no-repeat;
dccbbf95 578 background-size: cover;
cc7e70eb
RK
579 width: 16px;
580 height: 16px;
581 opacity: 0.5;
582}
583
584@media (min-resolution: 2dppx) {
e2734cc7 585 .variable-or-property-non-writable-icon > .title:after {
46e71434 586 background-image: url("chrome://browser/skin/devtools/vview-lock@2x.png");
cc7e70eb
RK
587 }
588}
589
e2734cc7
RK
590.variable-or-property-frozen-label,
591.variable-or-property-sealed-label,
592.variable-or-property-non-extensible-label {
dccbbf95 593 height: 16px;
e2734cc7 594 -moz-padding-end: 4px;
b27cc46e
RK
595}
596
597.variable-or-property:not(:focus) > .title > .variable-or-property-frozen-label,
598.variable-or-property:not(:focus) > .title > .variable-or-property-sealed-label,
599.variable-or-property:not(:focus) > .title > .variable-or-property-non-extensible-label {
e2734cc7
RK
600 color: #A09090;
601}
602
7600e0b1
RK
603/* Aligned values */
604
605.variables-view-container[aligned-values] .title > .separator {
606 -moz-box-flex: 1;
607}
608
609.variables-view-container[aligned-values] .title > .value {
d2ce251d 610 -moz-box-flex: 0;
7600e0b1
RK
611 width: 70vw;
612}
613
614.variables-view-container[aligned-values] .title > .element-value-input {
615 width: calc(70vw - 10px);
616}
617
618/* Actions first */
619
dccbbf95
RK
620.variables-view-open-inspector {
621 -moz-box-ordinal-group: 1;
622}
623
624.variables-view-edit,
625.variables-view-add-property {
626 -moz-box-ordinal-group: 2;
627}
628
629.variable-or-property-frozen-label,
630.variable-or-property-sealed-label,
631.variable-or-property-non-extensible-label,
632.variable-or-property-non-writable-icon {
633 -moz-box-ordinal-group: 3;
634}
635
636.variables-view-delete {
637 -moz-box-ordinal-group: 4;
638}
639
d2ce251d 640.variables-view-container[actions-first] .variables-view-delete,
dccbbf95
RK
641.variables-view-container[actions-first] .variables-view-add-property,
642.variables-view-container[actions-first] .variables-view-open-inspector {
7600e0b1
RK
643 -moz-box-ordinal-group: 0;
644}
645
d2ce251d
RK
646.variables-view-container[actions-first] [invisible] {
647 visibility: hidden;
648}
649
cc7e70eb
RK
650/* Variables and properties tooltips */
651
652.variable-or-property > tooltip > label {
653 margin: 0 2px 0 2px;
654}
655
dfa34f73
RK
656.variable-or-property[non-enumerable] > tooltip > label.enumerable,
657.variable-or-property[non-configurable] > tooltip > label.configurable,
658.variable-or-property[non-writable] > tooltip > label.writable
659.variable-or-property[non-extensible] > tooltip > label.extensible {
e2734cc7 660 color: #A09090;
cc7e70eb
RK
661 text-decoration: line-through;
662}
663
dfa34f73
RK
664.variable-or-property[overridden] > tooltip > label.overridden {
665 -moz-padding-start: 4px;
666 -moz-border-start: 1px dotted #9C9CFF;
667}
668
669.variable-or-property[safe-getter] > tooltip > label.WebIDL {
e2734cc7
RK
670 -moz-padding-start: 4px;
671 -moz-border-start: 1px dotted #9C9CFF;
672 color: #008484;
c4460289
RK
673}
674
cc7e70eb
RK
675/* Variables and properties editing */
676
677.variables-view-delete {
dccbbf95
RK
678 background: url("chrome://browser/skin/devtools/vview-delete.png");
679 background-size: cover;
680 width: 16px;
681 height: 16px;
682}
683
684@media (min-resolution: 2dppx) {
685 .variables-view-delete {
686 background-image: url("chrome://browser/skin/devtools/vview-delete@2x.png");
687 }
cc7e70eb
RK
688}
689
690.variables-view-delete:hover {
dccbbf95 691 background-position: 32px;
cc7e70eb
RK
692}
693
b27cc46e 694.variables-view-delete:active {
dccbbf95 695 background-position: 16px;
46e71434
RK
696}
697
dccbbf95
RK
698.variable-or-property:focus > .title > .variables-view-delete {
699/* background-position: 0px; */
b27cc46e
RK
700}
701
cc7e70eb 702.variables-view-edit {
dccbbf95
RK
703 background: url("chrome://browser/skin/devtools/vview-edit.png");
704 background-size: cover;
705 width: 16px;
706 height: 16px;
46e71434 707 cursor: pointer;
dccbbf95
RK
708}
709
710@media (min-resolution: 2dppx) {
711 .variables-view-edit {
712 background-image: url("chrome://browser/skin/devtools/vview-edit@2x.png");
713 }
46e71434
RK
714}
715
716.variables-view-edit:hover {
dccbbf95 717 background-position: 32px;
46e71434
RK
718}
719
720.variables-view-edit:active {
dccbbf95 721 background-position: 16px;
46e71434
RK
722}
723
dccbbf95
RK
724.variable-or-property:focus > .title > .variables-view-edit {
725/* background-position: 0px; */
46e71434
RK
726}
727
728.variables-view-open-inspector {
dccbbf95
RK
729 background: url("chrome://browser/skin/devtools/vview-open-inspector.png");
730 background-size: cover;
731 width: 16px;
732 height: 16px;
cc7e70eb
RK
733 cursor: pointer;
734}
735
46e71434 736.variables-view-open-inspector:hover {
dccbbf95 737 background-position: 32px;
46e71434
RK
738}
739
740.variables-view-open-inspector:active {
dccbbf95 741 background-position: 16px;
46e71434
RK
742}
743
dccbbf95
RK
744.variable-or-property:focus > .title > .variables-view-open-inspector {
745/* background-position: 0px; */
46e71434
RK
746}
747
dccbbf95 748/* Variables and properties input boxes */
cc7e70eb 749
dccbbf95 750.variable-or-property > .title > .separator + .element-value-input {
dfa34f73 751 -moz-margin-start: -2px !important;
cc7e70eb 752 -moz-margin-end: 2px !important;
dccbbf95
RK
753}
754
755.variable-or-property > .title > .separator[hidden=true] + .element-value-input {
756 -moz-margin-start: 4px !important;
757 -moz-margin-end: 2px !important;
cc7e70eb
RK
758}
759
760.element-name-input {
761 -moz-margin-start: -2px !important;
762 -moz-margin-end: 2px !important;
cc7e70eb
RK
763 font-weight: 600;
764}
765
766.element-value-input,
767.element-name-input {
768 border: 1px solid #008484 !important;
de57e474 769 color: inherit;
cc7e70eb
RK
770}
771
772/* Variables and properties searching */
773
774.variables-view-searchinput {
775 min-height: 24px;
776}
777
2a8b2b48 778.variable-or-property[unmatched] {
cc7e70eb
RK
779 border: none;
780 margin: 0;
781}
782
783/* Expand/collapse arrow */
784
785.arrow {
82b4252f 786 background: url("chrome://global/skin/tree/twisty-closed.gif") center center no-repeat;
cc7e70eb 787 width: 9px;
e447dcba 788 height: 16px;
cc7e70eb
RK
789 -moz-margin-start: 5px;
790 -moz-margin-end: 5px;
791}
792
793.variables-view-scope > .title > .arrow {
794 background-image: url("chrome://global/skin/tree/twisty-closed-selected.gif");
795}
796
797.arrow[open] {
e447dcba 798 background-image: url("chrome://global/skin/tree/twisty-open.gif");
cc7e70eb
RK
799}
800
801.variables-view-scope > .title > .arrow[open] {
802 background-image: url("chrome://global/skin/tree/twisty-open-selected.gif");
803}
804
805.arrow[invisible] {
806 visibility: hidden;
807}
7600e0b1 808
46e71434
RK
809/* Charts */
810
811.generic-chart-container {
812 /* Hack: force hardware acceleration */
813 transform: translateZ(1px);
814}
815
5401f433 816.generic-chart-container {
46e71434
RK
817 color: #A09090; /* Light foreground text */
818}
819
5401f433 820.chart-colored-blob {
46e71434
RK
821 fill: #9C9CFF; /* Light content text */
822 background: #9C9CFF;
823}
824
825/* Charts: Pie */
826
827.pie-chart-slice {
828 stroke-width: 1px;
829 cursor: pointer;
830}
831
5401f433 832.pie-chart-slice {
46e71434
RK
833 stroke: #A09090;
834}
835
5401f433 836.pie-chart-slice[largest] {
46e71434
RK
837 stroke-width: 2px;
838 stroke: #9C9CFF;
839}
840
841.pie-chart-label {
842 text-anchor: middle;
843 dominant-baseline: middle;
844 pointer-events: none;
845}
846
5401f433 847.pie-chart-label {
46e71434
RK
848 fill: #000;
849}
850
851.pie-chart-container[slices="1"] > .pie-chart-slice {
852 stroke-width: 0px;
853}
854
855.pie-chart-slice,
856.pie-chart-label {
857 transition: all 0.1s ease-out;
858}
859
860.pie-chart-slice:not(:hover):not([focused]),
861.pie-chart-slice:not(:hover):not([focused]) + .pie-chart-label {
862 transform: none !important;
863}
864
865/* Charts: Table */
866
867.table-chart-title {
868 padding-bottom: 10px;
869 font-size: 120%;
870 font-weight: 600;
871}
872
873.table-chart-row {
874 margin-top: 1px;
875 cursor: pointer;
876}
877
878.table-chart-grid:hover > .table-chart-row {
879 transition: opacity 0.1s ease-in-out;
880}
881
882.table-chart-grid:not(:hover) > .table-chart-row {
883 transition: opacity 0.2s ease-in-out;
884}
885
886.generic-chart-container:hover > .table-chart-grid:hover > .table-chart-row:not(:hover),
887.generic-chart-container:hover ~ .table-chart-container > .table-chart-grid > .table-chart-row:not([focused]) {
888 opacity: 0.4;
889}
890
891.table-chart-row-box {
892 width: 8px;
893 height: 1.5em;
894 -moz-margin-end: 10px;
895}
896
897.table-chart-row-label {
898 width: 8em;
899 -moz-padding-end: 6px;
900 cursor: inherit;
901}
902
903.table-chart-totals {
904 margin-top: 8px;
905 padding-top: 6px;
906}
907
908.table-chart-totals {
909 border-top: 1px solid #A09090; /* Grey foreground text */
910}
911
912.table-chart-summary-label {
913 font-weight: 600;
914 padding: 1px 0px;
915}
916
917.table-chart-summary-label {
918 color: #A09090; /* Light foreground text */
919}
920
7600e0b1
RK
921/* === BEGIN manifest-editor.inc.css === */
922
923/* Manifest Editor overrides */
924
925.variables-view-container.manifest-editor {
926 background-color: #000000;
d2ce251d 927 padding: 20px 2px;
7600e0b1
RK
928}
929
930.manifest-editor .variable-or-property:focus > .title {
931/* background-color: #EDEDED;
932 color: #000; */
933 border-radius: 4px;
934}
935
936.manifest-editor .variables-view-property > .title > .name {
937/* color: #27406A; */
938}
939
d2ce251d
RK
940.manifest-editor .variable-or-property > .title > label,
941.manifest-editor textbox {
7600e0b1
RK
942 font-family: monospace;
943}
944
945.manifest-editor .variable-or-property > .title > .token-string {
946/* color: #54BC6A; */
947 font-weight: bold;
948}
949
950.manifest-editor .variable-or-property > .title > .token-boolean,
951.manifest-editor .variable-or-property > .title > .token-number {
952/* color: #009BD4; */
953 font-weight: bold;
954}
955
956.manifest-editor .variable-or-property > .title > .token-undefined {
957/* color: #bbb; */
958}
959
960.manifest-editor .variable-or-property > .title > .token-null {
961/* color: #999; */
962}
963
964.manifest-editor .variable-or-property > .title > .token-other {
965/* color: #333; */
966}
967
968.manifest-editor .variables-view-variable {
969 border-bottom: none;
970}
971
972.manifest-editor .variables-view-delete,
973.manifest-editor .variables-view-delete:hover,
d2ce251d 974.manifest-editor .variables-view-delete:active,
46e71434 975.manifest-editor .variable-or-property:focus .variables-view-delete,
c1d2ce3e 976.manifest-editor .variables-view-add-property,
d2ce251d 977.manifest-editor .variables-view-add-property:hover,
46e71434
RK
978.manifest-editor .variables-view-add-property:active,
979.manifest-editor .variable-or-property:focus .variables-view-add-property {
7600e0b1
RK
980 list-style-image: none;
981 -moz-image-region: initial;
982}
983
d2ce251d
RK
984.manifest-editor .variables-view-delete::before,
985.manifest-editor .variables-view-add-property::before {
986 width: 11px;
987 height: 11px;
7600e0b1
RK
988 content: "";
989 display: inline-block;
d2ce251d
RK
990 background-size: 11px auto;
991}
992
993.manifest-editor .variables-view-delete::before {
7600e0b1
RK
994 background-image: url("app-manager/remove.svg");
995 background-size: 12px auto;
996}
997
d2ce251d
RK
998.manifest-editor .variables-view-add-property::before {
999 background-image: url("app-manager/add.svg");
1000 -moz-margin-end: 2px;
1001}
1002
7600e0b1 1003/* === END manifest-editor.inc.css === */
45dc7657
RK
1004
1005/* === END widgets.inc.css === */