first part of syncing LCARStrek with Firefox 33 windows theme changes
[themes.git] / LCARStrek / browser / devtools / webaudioeditor.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 /* 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 */
33 svg {
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   stroke: #9C9CFF; /* Grey foreground text */
44 }
45
46 /* Audio Nodes */
47 .nodes rect {
48   stroke-width: 1px;
49   cursor: pointer;
50 }
51
52 .nodes rect {
53   stroke: #9C9CFF; /* Tab toolbar */
54   fill: #000000; /* Toolbars */
55 }
56
57 .nodes g.selected rect {
58   fill: #008484; /* Select Highlight Blue */
59 }
60
61 /* Text in nodes */
62 text {
63   cursor: pointer;
64   font-weight: 300;
65   font-family: "Helvetica Neue", Helvetica, Arial, sans-serf;
66   font-size: 14px;
67 }
68
69 text {
70   fill: #A09090; /* Grey foreground text */
71 }
72 g.selected text {
73 /*  fill: #f0f1f2; / Toolbars */
74 }
75
76 /**
77  * Inspector Styles
78  */
79
80 .web-audio-inspector .error {
81   background-image: url("alerticon-warning.png");
82   background-size: 13px 12px;
83   -moz-appearance: none;
84   opacity: 0;
85   transition: opacity .5s ease-out 0s;
86 }
87
88 #inspector-pane-toggle {
89   background: none;
90   box-shadow: none;
91   border: none;
92   list-style-image: url("debugger-collapse.png");
93   -moz-image-region: rect(0px,16px,16px,0px);
94 }
95
96 #inspector-pane-toggle > .toolbarbutton-icon {
97   width: 16px;
98   height: 16px;
99 }
100
101 #inspector-pane-toggle[pane-collapsed] {
102   list-style-image: url("debugger-expand.png");
103 }
104
105 #inspector-pane-toggle:active {
106   -moz-image-region: rect(0px,32px,16px,16px);
107 }
108
109 @media (min-resolution: 2dppx) {
110   #inspector-pane-toggle {
111     list-style-image: url("debugger-collapse@2x.png");
112     -moz-image-region: rect(0px,32px,32px,0px);
113   }
114
115   #inspector-pane-toggle[pane-collapsed] {
116     list-style-image: url("debugger-expand@2x.png");
117   }
118
119   #inspector-pane-toggle:active {
120     -moz-image-region: rect(0px,64px,32px,32px);
121   }
122
123   .web-audio-inspector .error {
124     background-image: url("alerticon-warning@2x.png");
125   }
126 }
127
128 /**
129  * Responsive Styles
130  * `.devtools-responsive-container` takes care of most of
131  * the changing of host types.
132  */
133 @media (max-width: 700px) {
134   /**
135    * Override the inspector toggle so it's always open
136    * in the portrait view, with the toggle button hidden.
137    */
138   #inspector-pane-toggle {
139     display: none;
140   }
141
142   #web-audio-inspector {
143     margin-left: 0px !important;
144     margin-right: 0px !important;
145   }
146 }
147
148 #inspector-pane-toggle {
149   background: none;
150   box-shadow: none;
151   border: none;
152   list-style-image: url("debugger-collapse.png");
153   -moz-image-region: rect(0px,16px,16px,0px);
154 }
155
156 #inspector-pane-toggle[pane-collapsed] {
157   list-style-image: url("debugger-expand.png");
158 }
159
160 #inspector-pane-toggle:active {
161   -moz-image-region: rect(0px,32px,16px,16px);
162 }