fourth and final part of syncing LCARStrek with Firefox 31 windows theme changes
[themes.git] / LCARStrek / browser / devtools / webaudioeditor.css
CommitLineData
acc20e5d
RK
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/* Reload and waiting notices */
6.notice-container {
7 margin-top: -50vh;
8}
9
10.notice-container {
11 background-color: #000000; /* Toolbars */
12 color: #A09090; /* Light foreground text */
13}
14
15#reload-notice {
16 font-size: 120%;
17}
18
19#waiting-notice {
20 font-size: 110%;
21}
22
23#waiting-notice::before {
24 display: inline-block;
25 content: "";
26 background: url("chrome://global/skin/icons/loading.gif") center no-repeat;
27 width: 16px;
28 height: 16px;
29 -moz-margin-end: 6px;
30}
31
32/* Context Graph */
33svg {
34 overflow: hidden;
35 -moz-box-flex: 1;
36}
37
38/* Edges in graph */
39.edgePath path {
40 stroke-width: 1px;
41 fill: none;
42}
43
44.edgePath path {
45 stroke: #9C9CFF; /* Grey foreground text */
46}
47
48/* Audio Nodes */
49.nodes rect {
50 stroke-width: 1px;
51 cursor: pointer;
52}
53
54.nodes rect {
55 stroke: #9C9CFF; /* Tab toolbar */
56 fill: #000000; /* Toolbars */
57}
58
59.nodes g.selected rect {
60 fill: #008484; /* Select Highlight Blue */
61}
62
63/* Text in nodes */
64text {
65 cursor: pointer;
66 font-weight: 300;
67 font-family: "Helvetica Neue", Helvetica, Arial, sans-serf;
68 font-size: 14px;
69}
70
71text {
72 fill: #A09090; /* Grey foreground text */
73}
74g.selected text {
75/* fill: #f0f1f2; / Toolbars */
76}
77
78/**
79 * Inspector Styles
80 */
81
82.web-audio-inspector .error {
83 background-image: url("alerticon-warning.png");
84 background-size: 13px 12px;
85 -moz-appearance: none;
86 opacity: 0;
87 transition: opacity .5s ease-out 0s;
88}
89
90#inspector-pane-toggle {
91 background: none;
92 box-shadow: none;
93 border: none;
94 list-style-image: url("debugger-collapse.png");
95 -moz-image-region: rect(0px,16px,16px,0px);
96}
97
98#inspector-pane-toggle > .toolbarbutton-icon {
99 width: 16px;
100 height: 16px;
101}
102
103#inspector-pane-toggle[pane-collapsed] {
104 list-style-image: url("debugger-expand.png");
105}
106
107#inspector-pane-toggle:active {
108 -moz-image-region: rect(0px,32px,16px,16px);
109}
110
111@media (min-resolution: 2dppx) {
112 #inspector-pane-toggle {
113 list-style-image: url("debugger-collapse@2x.png");
114 -moz-image-region: rect(0px,32px,32px,0px);
115 }
116
117 #inspector-pane-toggle[pane-collapsed] {
118 list-style-image: url("debugger-expand@2x.png");
119 }
120
121 #inspector-pane-toggle:active {
122 -moz-image-region: rect(0px,64px,32px,32px);
123 }
124
125 .web-audio-inspector .error {
126 background-image: url("alerticon-warning@2x.png");
127 }
128}
129
130/**
131 * Responsive Styles
132 * `.devtools-responsive-container` takes care of most of
133 * the changing of host types.
134 */
135@media (max-width: 700px) {
136 /**
137 * Override the inspector toggle so it's always open
138 * in the portrait view, with the toggle button hidden.
139 */
140 #inspector-pane-toggle {
141 display: none;
142 }
143
144 #web-audio-inspector {
145 margin-left: 0px !important;
146 margin-right: 0px !important;
147 }
148}