silence warnings about a missing light theme CSS file
[themes.git] / LCARStrek / browser / devtools / widgets.css
... / ...
CommitLineData
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
6/* === BEGIN widgets.inc.css === */
7
8/* Generic pane helpers */
9
10.generic-toggled-side-pane {
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
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
48/* BreacrumbsWidget */
49
50.breadcrumbs-widget-container {
51 -moz-margin-start: 2px;
52 -moz-margin-start: 2px;
53 max-height: 25px; /* Set max-height for proper sizing on linux */
54 height: 25px; /* Set height to prevent starting small waiting for content */
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.*/
59/* margin: -1px 0;*/
60}
61
62.scrollbutton-up,
63.scrollbutton-down {
64 background: transparent;
65 box-shadow: none;
66 border: none;
67 margin: 0;
68 padding: 0;
69}
70
71.scrollbutton-up {
72 -moz-margin-end: 1px;
73}
74
75.scrollbutton-down {
76 -moz-margin-end: 0;
77}
78
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
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;
119}
120
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;
126}
127
128.scrollbutton-up[disabled],
129.scrollbutton-down[disabled] {
130 box-shadow: none;
131 border-color: transparent;
132}
133*/
134
135.scrollbutton-up > .toolbarbutton-icon:-moz-locale-dir(rtl),
136.scrollbutton-down > .toolbarbutton-icon:-moz-locale-dir(ltr) {
137/* transform: scaleX(-1); */
138}
139
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;
148}
149
150#breadcrumb-separator-before,
151#breadcrumb-separator-after,
152#breadcrumb-separator-normal {
153 width: 12px;
154 height: 25px;
155 overflow: hidden;
156}
157
158#breadcrumb-separator-before,
159#breadcrumb-separator-after:after {
160 background: #008484; /* Select Highlight Blue */
161}
162
163#breadcrumb-separator-after,
164#breadcrumb-separator-before:after {
165 background: #000000; /* Toolbars */
166}
167
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;
175}
176
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);
185 box-sizing: border-box;
186}
187
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;
195 border-radius: 0;
196 outline: none;
197 color: #FF9F00;
198}
199
200.breadcrumbs-widget-item:hover {
201 background-color: #FFCF00;
202 color: #000000;
203}
204
205.breadcrumbs-widget-item[checked]:not(:hover) {
206 background-color: #008484;
207 color: #000000;
208}
209
210.breadcrumbs-widget-item[siblings-menu-open],
211.breadcrumbs-widget-item:active {
212 background-color: #FF9F00;
213 color: #000000;
214}
215
216.breadcrumbs-widget-item:not([checked]) {
217 background-image: -moz-element(#breadcrumb-separator-normal);
218 background-repeat: no-repeat;
219 background-position: center left;
220}
221
222.breadcrumbs-widget-item[checked] + .breadcrumbs-widget-item {
223 background-image: -moz-element(#breadcrumb-separator-after);
224 background-repeat: no-repeat;
225 background-position: 0 0;
226}
227
228.breadcrumbs-widget-item[checked] {
229 background-image: -moz-element(#breadcrumb-separator-before);
230 background-repeat: no-repeat;
231 background-position: 0 0;
232 background-color: #008484; /* Select Highlight Blue */
233}
234
235.breadcrumbs-widget-item:first-child {
236 background-image: none;
237}
238
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 */
242.breadcrumbs-widget-item:-moz-locale-dir(rtl) {
243 padding: 0 20px 0 8px;
244}
245
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;
249}
250
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);
255}
256
257#breadcrumb-separator-before:-moz-locale-dir(rtl):after,
258#breadcrumb-separator-after:-moz-locale-dir(rtl):after {
259 transform: translateX(-5px) rotate(45deg);
260}
261
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 */
267}
268
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
276.breadcrumbs-widget-item {
277 color: #FFCF00; /* Foreground (Text) - Light */
278}
279
280.breadcrumbs-widget-item-id {
281 color: #A09090; /* Foreground (Text) - Grey */
282}
283
284.breadcrumbs-widget-item-classes {
285 color: #FF9F00; /* Content (Text) - Light */
286}
287
288.breadcrumbs-widget-item-pseudo-classes {
289 color: #FFCF00; /* Light Orange */
290}
291
292/* SimpleListWidget */
293
294.simple-list-widget-container {
295 /* Hack: force hardware acceleration */
296 transform: translateZ(1px);
297}
298
299.simple-list-widget-item.selected {
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;
306 color: #FFCF00;
307}
308
309.simple-list-widget-perma-text,
310.simple-list-widget-empty-text {
311 color: #8050B0;
312 padding: 4px 8px;
313}
314
315/* FastListWidget */
316
317.fast-list-widget-container {
318 /* Hack: force hardware acceleration */
319 transform: translateZ(1px);
320}
321
322/* dark/light theme */
323.fast-list-widget-empty-text {
324 padding: 12px;
325 font-weight: 600;
326 color: #8050B0;
327}
328
329/* SideMenuWidget */
330
331/* SideMenuWidget container */
332
333.side-menu-widget-container {
334 /* Hack: force hardware acceleration */
335 transform: translateZ(1px);
336
337 background-color: #000000;
338 color: #FF9F00;
339}
340
341.side-menu-widget-container:-moz-locale-dir(ltr),
342.side-menu-widget-empty-text:-moz-locale-dir(ltr) {
343}
344
345.side-menu-widget-container:-moz-locale-dir(rtl),
346.side-menu-widget-empty-text:-moz-locale-dir(rtl)[with-arrows=true]:-moz-locale-dir(rtl) {
347}
348
349.side-menu-widget-group {
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
361.side-menu-widget-group-title {
362 padding: 4px;
363
364 background-color: #A09090;
365 color: #000000;
366}
367
368/* SideMenuWidget items */
369
370.side-menu-widget-item {
371 border-top: 1px solid #9C9CFF;
372 /* To compensate for the top and bottom borders */
373 margin-top: -1px;
374 margin-bottom: -1px;
375 background-clip: padding-box;
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
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
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) {
401 background-position: center right;
402}
403
404.side-menu-widget-item.selected > .side-menu-widget-item-arrow:-moz-locale-dir(rtl) {
405 background-position: center left;
406}
407
408.side-menu-widget-item.selected > .side-menu-widget-item-arrow:-moz-locale-dir(ltr) {
409 background-image: url("itemArrow-ltr.svg");
410}
411
412.side-menu-widget-item.selected > .side-menu-widget-item-arrow:-moz-locale-dir(rtl) {
413 background-image: url("itemArrow-rtl.svg");
414}
415
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;
422}
423
424.side-menu-widget-item-other {
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
431 background-color: #000000;
432}
433
434.side-menu-widget-item-other.selected {
435 background-color: #008484;
436 color: #000000;
437}
438
439.side-menu-widget-item-other:first-of-type {
440 margin-top: 4px;
441/* border-top-left-radius: 4px; */
442}
443
444.side-menu-widget-item-other:last-of-type {
445 margin-bottom: -4px;
446}
447
448.side-menu-widget-item-other:not(.selected) > label {
449 color: #9C9CFF;
450}
451
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
465/* SideMenuWidget misc */
466
467.side-menu-widget-empty-text {
468 padding: 12px;
469
470 background-color: #000000;
471 font-weight: 600;
472 color: #A09090;
473}
474
475/* VariablesView */
476
477.variables-view-container:not([empty]) {
478 /* Hack: force hardware acceleration */
479 transform: translateZ(1px);
480}
481
482.variables-view-empty-notice {
483 color: #A09090;
484 padding: 2px;
485}
486
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
493.variables-view-scope > .title {
494 background-color: #A09090;
495 color: #000000;
496}
497
498/* Generic variables traits */
499
500.variables-view-variable:not(:last-child) {
501 border-bottom: 1px solid #A09090;
502}
503
504.variables-view-variable > .title > .name {
505 font-weight: 600;
506}
507
508/* Generic variables *and* properties traits */
509
510.variable-or-property:focus > .title > label {
511 color: inherit !important;
512}
513
514.variable-or-property > .title > .arrow {
515 -moz-margin-start: 3px;
516}
517
518.variable-or-property:not([untitled]) > .variables-view-element-details {
519 -moz-margin-start: 7px;
520}
521
522/* Traits applied when variables or properties are changed or overridden */
523
524.variable-or-property:not([overridden]) {
525 transition: background 1s ease-in-out, color 1s ease-in-out;
526}
527
528.variable-or-property:not([overridden])[changed] {
529 color: #000000;
530 transition-duration: .4s;
531}
532
533.variable-or-property[overridden] {
534 background: rgba(160,144,144,0.0.5);
535}
536
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;
544}
545
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}
556
557/* Custom configurable/enumerable/writable or frozen/sealed/extensible
558 * variables and properties */
559
560.variable-or-property[non-enumerable]:not([self]):not([pseudo-item]) > .title > .name {
561 opacity: 0.6;
562}
563
564.variable-or-property[non-configurable]:not([pseudo-item]) > .title > .name {
565 border-bottom: 1px dashed #9C9CFF;
566}
567
568.variable-or-property[non-writable]:not([pseudo-item]) > .title > .name {
569 border-bottom: 1px dashed #FF0000;
570}
571
572.variable-or-property[safe-getter]:not([pseudo-item]) > .title > .name {
573 border-bottom: 1px dashed #A09090;
574}
575
576.variable-or-property-non-writable-icon {
577 background: url("chrome://browser/skin/devtools/vview-lock.png") no-repeat;
578 background-size: cover;
579 width: 16px;
580 height: 16px;
581 opacity: 0.5;
582}
583
584@media (min-resolution: 2dppx) {
585 .variable-or-property-non-writable-icon > .title:after {
586 background-image: url("chrome://browser/skin/devtools/vview-lock@2x.png");
587 }
588}
589
590.variable-or-property-frozen-label,
591.variable-or-property-sealed-label,
592.variable-or-property-non-extensible-label {
593 height: 16px;
594 -moz-padding-end: 4px;
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 {
600 color: #A09090;
601}
602
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 {
610 -moz-box-flex: 0;
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
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
640.variables-view-container[actions-first] .variables-view-delete,
641.variables-view-container[actions-first] .variables-view-add-property,
642.variables-view-container[actions-first] .variables-view-open-inspector {
643 -moz-box-ordinal-group: 0;
644}
645
646.variables-view-container[actions-first] [invisible] {
647 visibility: hidden;
648}
649
650/* Variables and properties tooltips */
651
652.variable-or-property > tooltip > label {
653 margin: 0 2px 0 2px;
654}
655
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 {
660 color: #A09090;
661 text-decoration: line-through;
662}
663
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 {
670 -moz-padding-start: 4px;
671 -moz-border-start: 1px dotted #9C9CFF;
672 color: #008484;
673}
674
675/* Variables and properties editing */
676
677.variables-view-delete {
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 }
688}
689
690.variables-view-delete:hover {
691 background-position: 32px;
692}
693
694.variables-view-delete:active {
695 background-position: 16px;
696}
697
698.variable-or-property:focus > .title > .variables-view-delete {
699/* background-position: 0px; */
700}
701
702.variables-view-edit {
703 background: url("chrome://browser/skin/devtools/vview-edit.png");
704 background-size: cover;
705 width: 16px;
706 height: 16px;
707 cursor: pointer;
708}
709
710@media (min-resolution: 2dppx) {
711 .variables-view-edit {
712 background-image: url("chrome://browser/skin/devtools/vview-edit@2x.png");
713 }
714}
715
716.variables-view-edit:hover {
717 background-position: 32px;
718}
719
720.variables-view-edit:active {
721 background-position: 16px;
722}
723
724.variable-or-property:focus > .title > .variables-view-edit {
725/* background-position: 0px; */
726}
727
728.variables-view-open-inspector {
729 background: url("chrome://browser/skin/devtools/vview-open-inspector.png");
730 background-size: cover;
731 width: 16px;
732 height: 16px;
733 cursor: pointer;
734}
735
736.variables-view-open-inspector:hover {
737 background-position: 32px;
738}
739
740.variables-view-open-inspector:active {
741 background-position: 16px;
742}
743
744.variable-or-property:focus > .title > .variables-view-open-inspector {
745/* background-position: 0px; */
746}
747
748/* Variables and properties input boxes */
749
750.variable-or-property > .title > .separator + .element-value-input {
751 -moz-margin-start: -2px !important;
752 -moz-margin-end: 2px !important;
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;
758}
759
760.element-name-input {
761 -moz-margin-start: -2px !important;
762 -moz-margin-end: 2px !important;
763 font-weight: 600;
764}
765
766.element-value-input,
767.element-name-input {
768 border: 1px solid #008484 !important;
769 color: inherit;
770}
771
772/* Variables and properties searching */
773
774.variables-view-searchinput {
775 min-height: 24px;
776}
777
778.variable-or-property[unmatched] {
779 border: none;
780 margin: 0;
781}
782
783/* Expand/collapse arrow */
784
785.arrow {
786 background: url("chrome://global/skin/tree/twisty-closed.gif") center center no-repeat;
787 width: 9px;
788 height: 16px;
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] {
798 background-image: url("chrome://global/skin/tree/twisty-open.gif");
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}
808
809/* Charts */
810
811.generic-chart-container {
812 /* Hack: force hardware acceleration */
813 transform: translateZ(1px);
814}
815
816.generic-chart-container {
817 color: #A09090; /* Light foreground text */
818}
819
820.chart-colored-blob {
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
832.pie-chart-slice {
833 stroke: #A09090;
834}
835
836.pie-chart-slice[largest] {
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
847.pie-chart-label {
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
921/* === BEGIN manifest-editor.inc.css === */
922
923/* Manifest Editor overrides */
924
925.variables-view-container.manifest-editor {
926 background-color: #000000;
927 padding: 20px 2px;
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
940.manifest-editor .variable-or-property > .title > label,
941.manifest-editor textbox {
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,
974.manifest-editor .variables-view-delete:active,
975.manifest-editor .variable-or-property:focus .variables-view-delete,
976.manifest-editor .variables-view-add-property,
977.manifest-editor .variables-view-add-property:hover,
978.manifest-editor .variables-view-add-property:active,
979.manifest-editor .variable-or-property:focus .variables-view-add-property {
980 list-style-image: none;
981 -moz-image-region: initial;
982}
983
984.manifest-editor .variables-view-delete::before,
985.manifest-editor .variables-view-add-property::before {
986 width: 11px;
987 height: 11px;
988 content: "";
989 display: inline-block;
990 background-size: 11px auto;
991}
992
993.manifest-editor .variables-view-delete::before {
994 background-image: url("app-manager/remove.svg");
995 background-size: 12px auto;
996}
997
998.manifest-editor .variables-view-add-property::before {
999 background-image: url("app-manager/add.svg");
1000 -moz-margin-end: 2px;
1001}
1002
1003/* === END manifest-editor.inc.css === */
1004
1005/* === END widgets.inc.css === */