summaryrefslogtreecommitdiffstats
path: root/devtools/client/themes/webaudioeditor.css
blob: 3ba9dad88c28ccaf4fb2bde2815bac772c97ace2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

/* Reload and waiting notices */
.notice-container {
  margin-top: -50vh;
  color: var(--theme-body-color-alt);
}

#reload-notice {
  font-size: 120%;
}

#waiting-notice {
  font-size: 110%;
}

/* Context Graph */
svg {
  overflow: hidden;
  -moz-box-flex: 1;
  --arrow-color: var(--theme-splitter-color);
  --text-color: var(--theme-body-color-alt);
}

.theme-dark svg {
  --arrow-color: var(--theme-body-color-alt);
}

/* Edges in graph */
.edgePath path {
  stroke-width: 1px;
  stroke: var(--arrow-color);
}
svg #arrowhead {
  /* !important is needed to override inline style */
  fill: var(--arrow-color) !important;
}

/* AudioParam connection edges */
g.edgePath.param-connection path {
  stroke-dasharray: 5,5;
  stroke: var(--arrow-colo);
}

/* Labels in AudioParam connection should have background that match
 * the main background so there's whitespace around the label, on top of the
 * dotted lines. */
g.edgeLabel rect {
  fill: var(--theme-body-background);
}
g.edgeLabel tspan {
  fill: var(--text-color);
}

/* Audio Nodes */
.nodes rect {
  stroke-width: 1px;
  cursor: pointer;
  stroke: var(--theme-splitter-color);
  fill: var(--theme-toolbar-background);
}

/**
 * Bypassed Nodes
 */

.theme-light .nodes g.bypassed rect {
  fill: url(chrome://devtools/skin/images/filters.svg#bypass-light);
}

.theme-dark .nodes g.bypassed rect {
  fill: url(chrome://devtools/skin/images/filters.svg#bypass-dark);
}

.nodes g.bypassed.selected rect {
  stroke: var(--theme-selection-background);
}

.nodes g.bypassed text {
  opacity: 0.6;
}

/**
 * Selected Nodes
 */
.nodes g.selected rect {
  fill: var(--theme-selection-background);
}

/* Don't style bypassed nodes text differently because it'd be illegible in light-theme */
g.selected:not(.bypassed) text {
  fill: var(--theme-selection-color);
}


/* Text in nodes and edges */
text {
  cursor: default; /* override the "text" cursor */
  fill: var(--text-color);
  font-size: 1.25em;
  /* Make sure text stays inside its container in RTL locales */
  direction: ltr;
}

.nodes text {
  cursor: pointer;
}

/**
 * Inspector Styles
 */

/* hide the variables view scope title as its redundant,
 * because there's only one scope displayed. */
.variables-view-scope > .title {
  display: none;
}

#web-audio-inspector-title {
  margin: 6px;
}

.web-audio-inspector .error {
  background-image: url(images/alerticon-warning.png);
  background-size: 13px 12px;
  -moz-appearance: none;
  opacity: 0;
  transition: opacity .5s ease-out 0s;
}

#inspector-pane-toggle {
  background: none;
  box-shadow: none;
  border: none;
  list-style-image: var(--theme-pane-collapse-image);
}

#inspector-pane-toggle > .toolbarbutton-icon {
  width: 16px;
  height: 16px;
}

#inspector-pane-toggle.pane-collapsed {
  list-style-image: var(--theme-pane-expand-image);
}

/**
 * Automation Styles
 */

#automation-param-toolbar .automation-param-button[selected] {
  color: var(--theme-selection-color);
  background-color: var(--theme-selection-background);
}

#automation-graph {
  overflow: hidden;
  -moz-box-flex: 1;
}

@media (min-resolution: 1.1dppx) {
  .web-audio-inspector .error {
    background-image: url(images/alerticon-warning@2x.png);
  }
}

/**
 * Inspector toolbar
 */

#audio-node-toolbar .bypass {
  list-style-image: url(images/power.svg);
}

/**
 * Responsive Styles
 * `.devtools-responsive-container` takes care of most of
 * the changing of host types.
 */
@media (max-width: 700px) {
  /**
   * Override the inspector toggle so it's always open
   * in the portrait view, with the toggle button hidden.
   */
  #inspector-pane-toggle {
    display: none;
  }

  #web-audio-inspector {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
}