OLD | NEW |
1 /* dialog.css */ | 1 /* dialog.css */ |
2 | 2 |
3 .dialog { | 3 .dialog { |
4 position: absolute; | 4 position: absolute; |
5 | 5 |
6 padding: 10px; | 6 padding: 10px; |
7 border-radius: 10px; | 7 border-radius: 10px; |
8 border: 1px solid gray; | 8 border: 1px solid gray; |
9 | 9 |
10 box-shadow: rgb(40,40,40) 0 0 50px; | 10 box-shadow: rgb(40,40,40) 0 0 50px; |
11 | 11 |
12 display: -webkit-flex; | 12 display: -webkit-flex; |
13 -webkit-flex-direction: column; | 13 -webkit-flex-direction: column; |
14 | 14 |
15 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#E9E9E9), to
(#CFCFCF)); | 15 background-image: linear-gradient(to bottom, #E9E9E9, #CFCFCF); |
16 } | 16 } |
17 | 17 |
18 .dialog-contents { | 18 .dialog-contents { |
19 width: 100%; | 19 width: 100%; |
20 } | 20 } |
21 | 21 |
22 .go-to-line-dialog { | 22 .go-to-line-dialog { |
23 font-size: 11px; | 23 font-size: 11px; |
24 font-family: 'Lucida Grande', sans-serif; | 24 font-family: 'Lucida Grande', sans-serif; |
25 } | 25 } |
26 | 26 |
27 .go-to-line-dialog input { | 27 .go-to-line-dialog input { |
28 font-size: 11px; | 28 font-size: 11px; |
29 } | 29 } |
30 | 30 |
31 .go-to-line-dialog button { | 31 .go-to-line-dialog button { |
32 font-size: 11px; | 32 font-size: 11px; |
33 color: rgb(6, 6, 6); | 33 color: rgb(6, 6, 6); |
34 border: 1px solid rgb(165, 165, 165); | 34 border: 1px solid rgb(165, 165, 165); |
35 background-color: rgb(237, 237, 237); | 35 background-color: rgb(237, 237, 237); |
36 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
52, 252, 252)), to(rgb(223, 223, 223))); | 36 background-image: linear-gradient(to bottom, rgb(252, 252, 252), rgb(223, 22
3, 223)); |
37 border-radius: 12px; | 37 border-radius: 12px; |
38 -webkit-appearance: none; | 38 -webkit-appearance: none; |
39 | 39 |
40 padding: 3px 20px; | 40 padding: 3px 20px; |
41 margin: 0 0 0 10px; | 41 margin: 0 0 0 10px; |
42 } | 42 } |
43 | 43 |
44 .go-to-line-dialog button:active { | 44 .go-to-line-dialog button:active { |
45 background-color: rgb(215, 215, 215); | 45 background-color: rgb(215, 215, 215); |
46 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
94, 194, 194)), to(rgb(239, 239, 239))); | 46 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); |
47 } | 47 } |
48 | 48 |
49 | 49 |
50 /* tabbedPane.css */ | 50 /* tabbedPane.css */ |
51 | 51 |
52 /* | 52 /* |
53 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 53 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
54 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 54 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
55 * Copyright (C) 2011 Google Inc. All rights reserved. | 55 * Copyright (C) 2011 Google Inc. All rights reserved. |
56 * | 56 * |
(...skipping 17 matching lines...) Expand all Loading... |
74 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 74 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
75 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 75 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
76 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 76 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
77 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 77 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
78 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 78 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
79 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 79 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
80 */ | 80 */ |
81 | 81 |
82 .tabbed-pane { | 82 .tabbed-pane { |
83 flex: auto; | 83 flex: auto; |
| 84 overflow: hidden; |
84 } | 85 } |
85 | 86 |
86 .tabbed-pane-content { | 87 .tabbed-pane-content { |
87 position: relative; | 88 position: relative; |
88 overflow: auto; | 89 overflow: auto; |
89 flex: auto; | 90 flex: auto; |
90 display: flex; | 91 display: flex; |
| 92 flex-direction: column; |
91 } | 93 } |
92 | 94 |
93 .tabbed-pane-content.has-no-tabs { | 95 .tabbed-pane-content.has-no-tabs { |
94 background-color: lightgray; | 96 background-color: lightgray; |
95 } | 97 } |
96 | 98 |
| 99 .tabbed-pane-placeholder { |
| 100 font-size: 14px; |
| 101 text-align: center; |
| 102 margin-top: 20px; |
| 103 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; |
| 104 } |
| 105 |
97 .tabbed-pane-header { | 106 .tabbed-pane-header { |
98 flex: 0 0 23px; | 107 flex: 0 0 23px; |
99 border-bottom: 1px solid rgb(163, 163, 163); | 108 border-bottom: 1px solid rgb(163, 163, 163); |
100 overflow: hidden; | 109 overflow: hidden; |
101 width: 100%; | 110 width: 100%; |
102 } | 111 } |
103 | 112 |
104 .tabbed-pane-header-contents { | 113 .tabbed-pane-header-contents { |
105 margin: 0 10px; | 114 margin: 0 10px; |
106 } | 115 } |
107 | 116 |
108 .tabbed-pane-header-tabs { | 117 .tabbed-pane-header-tabs { |
109 float: left; | 118 float: left; |
110 } | 119 } |
111 | 120 |
112 .tabbed-pane-header-tab { | 121 .tabbed-pane-header-tab { |
113 float: left; | 122 float: left; |
114 margin-top: 2px; | 123 margin-top: 2px; |
115 padding: 2px 4px 2px 4px; | 124 padding: 2px 4px 2px 4px; |
116 height: 21px; | 125 height: 21px; |
117 border: 1px solid transparent; | 126 border: 1px solid transparent; |
118 border-bottom: none; | 127 border-bottom: none; |
119 line-height: 15px; | 128 line-height: 15px; |
120 | |
121 white-space: nowrap; | 129 white-space: nowrap; |
122 text-overflow: ellipsis; | 130 text-overflow: ellipsis; |
123 overflow: hidden; | 131 overflow: hidden; |
124 cursor: default; | 132 cursor: default; |
125 } | 133 } |
126 | 134 |
127 .tabbed-pane-header-tab.measuring { | 135 .tabbed-pane-header-tab.measuring { |
128 visibility: hidden; | 136 visibility: hidden; |
129 } | 137 } |
130 | 138 |
(...skipping 14 matching lines...) Expand all Loading... |
145 margin-left: 2px; | 153 margin-left: 2px; |
146 margin-top: -3px; | 154 margin-top: -3px; |
147 visibility: hidden; | 155 visibility: hidden; |
148 } | 156 } |
149 | 157 |
150 .tabbed-pane-header-tab:hover .close-button-gray, | 158 .tabbed-pane-header-tab:hover .close-button-gray, |
151 .tabbed-pane-header-tab.selected .close-button-gray { | 159 .tabbed-pane-header-tab.selected .close-button-gray { |
152 visibility: visible; | 160 visibility: visible; |
153 } | 161 } |
154 | 162 |
| 163 .tabbed-pane-header-tab-icon { |
| 164 width: 11px; |
| 165 height: 10px; |
| 166 margin-top: 3px; |
| 167 float: left; |
| 168 display: block; |
| 169 margin-right: 1px; |
| 170 } |
| 171 |
155 .tabbed-pane-header-tabs-drop-down-container { | 172 .tabbed-pane-header-tabs-drop-down-container { |
156 float: left; | 173 float: left; |
157 position: relative; | 174 position: relative; |
158 vertical-align: bottom; | 175 vertical-align: bottom; |
159 padding-left: 3px; | 176 padding-left: 3px; |
160 line-height: 20px; | 177 line-height: 20px; |
161 } | 178 } |
162 | 179 |
163 .tabbed-pane-header-tabs-drop-down-container.measuring { | 180 .tabbed-pane-header-tabs-drop-down-container.measuring { |
164 visibility: hidden; | 181 visibility: hidden; |
165 } | 182 } |
166 | 183 |
167 .tabbed-pane-header-tabs-drop-down { | 184 .tabbed-pane-header-tabs-drop-down { |
168 position: relative; | 185 position: relative; |
169 opacity: 0.7; | 186 opacity: 0.7; |
170 color: rgb(30, 30, 30); | 187 color: rgb(30, 30, 30); |
171 font-size: 133%; | 188 font-size: 133%; |
172 padding: 0 3px; | 189 padding: 0 3px; |
173 } | 190 } |
174 | 191 |
175 .tabbed-pane-header-tabs-drop-down:hover { | 192 .tabbed-pane-header-tabs-drop-down:hover { |
176 opacity: 1.0; | 193 opacity: 1.0; |
177 } | 194 } |
178 | 195 |
179 .tabbed-pane-header-tabs-drop-down:active { | 196 .tabbed-pane-header-tabs-drop-down:active { |
180 opacity: 0.8; | 197 opacity: 0.8; |
181 } | 198 } |
182 | 199 |
183 select.tabbed-pane-header-tabs-drop-down-select { | 200 .tabbed-pane-header-tabs-drop-down > select.drop-down-menu { |
184 position: absolute; | 201 position: absolute; |
185 top: 0; | 202 top: 0; |
186 right: 0; | 203 right: 0; |
187 bottom: 0; | 204 bottom: 0; |
188 left: 0; | 205 left: 0; |
189 opacity: 0; | 206 opacity: 0; |
190 border: none; | |
191 margin: 0; | |
192 font-size: 75%; | 207 font-size: 75%; |
193 -webkit-appearance: none; | |
194 width: 20px; | 208 width: 20px; |
195 } | 209 } |
196 | 210 |
197 /* inspector.css */ | 211 /* inspector.css */ |
198 | 212 |
199 /* | 213 /* |
200 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 214 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
201 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 215 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
202 * | 216 * |
203 * Redistribution and use in source and binary forms, with or without | 217 * Redistribution and use in source and binary forms, with or without |
(...skipping 19 matching lines...) Expand all Loading... |
223 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 237 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
224 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 238 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
225 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 239 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
226 */ | 240 */ |
227 | 241 |
228 input[type="search"]:focus, | 242 input[type="search"]:focus, |
229 input[type="text"]:focus { | 243 input[type="text"]:focus { |
230 outline: auto 5px -webkit-focus-ring-color; | 244 outline: auto 5px -webkit-focus-ring-color; |
231 } | 245 } |
232 | 246 |
| 247 input[type="checkbox"] { |
| 248 height: 12px; |
| 249 width: 12px; |
| 250 margin: auto 3px; |
| 251 flex-shrink: 0; |
| 252 } |
| 253 |
| 254 label:hover { |
| 255 cursor: pointer; |
| 256 } |
| 257 |
| 258 label:hover input { |
| 259 box-shadow: 0 0 3px highlight; |
| 260 } |
| 261 |
| 262 fieldset[disabled] label:hover input { |
| 263 box-shadow: none; |
| 264 } |
| 265 |
233 .fill { | 266 .fill { |
234 position: absolute; | 267 position: absolute; |
235 top: 0; | 268 top: 0; |
236 left: 0; | 269 left: 0; |
237 right: 0; | 270 right: 0; |
238 bottom: 0; | 271 bottom: 0; |
239 } | 272 } |
240 | 273 |
| 274 .view { |
| 275 position: relative; |
| 276 flex: auto; |
| 277 } |
| 278 |
241 .hbox { | 279 .hbox { |
242 display: flex !important; | 280 display: flex; |
243 flex-direction: row; | 281 flex-direction: row !important; |
| 282 position: relative; |
244 } | 283 } |
245 | 284 |
246 .vbox { | 285 .vbox { |
247 display: flex !important; | 286 display: flex; |
248 flex-direction: column; | 287 flex-direction: column !important; |
| 288 position: relative; |
| 289 } |
| 290 |
| 291 .flex-auto { |
| 292 flex: auto; |
249 } | 293 } |
250 | 294 |
251 .inline-block { | 295 .inline-block { |
252 display: inline-block; | 296 display: inline-block; |
253 } | 297 } |
254 | 298 |
255 .hidden { | 299 .hidden { |
256 display: none !important; | 300 display: none !important; |
257 } | 301 } |
258 | 302 |
259 .nowrap, | 303 .nowrap, |
260 .nowrap-below, | 304 .nowrap-below, |
261 .nowrap-below div, | 305 .nowrap-below div, |
262 .nowrap-below span { | 306 .nowrap-below span { |
263 white-space: nowrap !important; | 307 white-space: nowrap !important; |
264 } | 308 } |
265 | 309 |
266 .toolbar-background { | 310 .toolbar-background { |
267 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
91, 191, 191)), to(rgb(151, 151, 151))); | 311 background-image: linear-gradient(to bottom, rgb(191, 191, 191), rgb(151, 15
1, 151)); |
268 padding: 1px 0 0 1px; | 312 padding-left: 1px; |
269 border-bottom: 1px solid rgb(80, 80, 80); | 313 border-bottom: 1px solid rgb(64%, 64%, 64%); |
270 background-origin: padding-box; | 314 background-origin: padding-box; |
271 background-clip: padding-box; | 315 background-clip: padding-box; |
272 } | 316 } |
273 | 317 |
274 .toolbar { | 318 .toolbar { |
275 flex: 0 0 25px; | 319 flex: 0 0 24px; |
276 display: flex; | 320 display: flex; |
277 flex-direction: row; | 321 flex-direction: row; |
278 position: relative; | 322 position: relative; |
279 } | 323 } |
280 | 324 |
281 .toolbar .tabbed-pane-header { | 325 .toolbar .tabbed-pane-header { |
282 border: none; | 326 border: none; |
283 } | 327 } |
284 | 328 |
285 .toolbar .tabbed-pane-header-contents { | 329 .toolbar .tabbed-pane-header-contents { |
(...skipping 17 matching lines...) Expand all Loading... |
303 } | 347 } |
304 | 348 |
305 button, | 349 button, |
306 input, | 350 input, |
307 select { | 351 select { |
308 font-family: inherit; | 352 font-family: inherit; |
309 font-size: inherit; | 353 font-size: inherit; |
310 } | 354 } |
311 | 355 |
312 body.inactive .toolbar-background { | 356 body.inactive .toolbar-background { |
313 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
33, 233, 233)), to(rgb(207, 207, 207))); | 357 background-image: linear-gradient(to bottom, rgb(233, 233, 233), rgb(207, 20
7, 207)); |
314 border-bottom: 1px solid rgb(64%, 64%, 64%); | |
315 } | 358 } |
316 | 359 |
317 body.dock-to-bottom .toolbar-background { | 360 body.dock-to-bottom .toolbar-background { |
318 padding-top: 0; | 361 padding-top: 0; |
319 } | 362 } |
320 | 363 |
321 body.dock-to-bottom .toolbar-background .tabbed-pane-header { | 364 body.dock-to-bottom .toolbar-background .tabbed-pane-header { |
322 cursor: ns-resize; | 365 cursor: ns-resize; |
323 } | 366 } |
324 | 367 |
325 body.dock-to-bottom .toolbar-background .tabbed-pane-header .tabbed-pane-header-
tabs { | 368 body.dock-to-bottom .toolbar-background .tabbed-pane-header .tabbed-pane-header-
tabs { |
326 cursor: default; | 369 cursor: default; |
327 } | 370 } |
328 | 371 |
329 body.platform-windows .toolbar-background, | 372 body.platform-windows .toolbar-background, |
330 body.platform-windows.inactive .toolbar-background { | 373 body.platform-windows.inactive .toolbar-background { |
331 background-image: none; | 374 background-image: none; |
332 } | 375 } |
333 | 376 |
334 body.undocked.platform-mac-leopard .toolbar-background { | 377 body.undocked.platform-mac-leopard .toolbar-background { |
335 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
75, 175, 175)), to(rgb(151, 151, 151))) !important; | 378 background-image: linear-gradient(to bottom, rgb(175, 175, 175), rgb(151, 15
1, 151)) !important; |
336 color: #333 !important; | 379 color: #333 !important; |
337 } | 380 } |
338 | 381 |
339 body.undocked.platform-mac-leopard.inactive .toolbar-background { | 382 body.undocked.platform-mac-leopard.inactive .toolbar-background { |
340 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
21, 221, 221)), to(rgb(207, 207, 207))) !important; | 383 background-image: linear-gradient(to bottom, rgb(221, 221, 221), rgb(207, 20
7, 207)) !important; |
341 color: #555 !important; | 384 color: #555 !important; |
342 } | 385 } |
343 | 386 |
344 body.undocked.platform-mac-snowleopard .toolbar-background { | 387 body.undocked.platform-mac-snowleopard .toolbar-background { |
345 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
89, 189, 189)), to(rgb(167, 167, 167))) !important; | 388 background-image: linear-gradient(to bottom, rgb(189, 189, 189), rgb(167, 16
7, 167)) !important; |
346 color: #333 !important; | 389 color: #333 !important; |
347 } | 390 } |
348 | 391 |
349 body.undocked.platform-mac-snowleopard.inactive .toolbar-background { | 392 body.undocked.platform-mac-snowleopard.inactive .toolbar-background { |
350 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
28, 228, 228)), to(rgb(216, 216, 216))) !important; | 393 background-image: linear-gradient(to bottom, rgb(228, 228, 228), rgb(216, 21
6, 216)) !important; |
351 color: #555 !important; | 394 color: #555 !important; |
352 } | 395 } |
353 | 396 |
354 body.undocked.platform-mac .toolbar-background { | 397 body.undocked.platform-mac .toolbar-background { |
355 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
08, 208, 208)), to(rgb(200, 200, 200))) !important; | 398 background-image: linear-gradient(to bottom, rgb(208, 208, 208), rgb(200, 20
0, 200)) !important; |
356 color: #333 !important; | 399 color: #333 !important; |
357 } | 400 } |
358 | 401 |
359 body.undocked.platform-mac.inactive .toolbar-background { | 402 body.undocked.platform-mac.inactive .toolbar-background { |
360 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
38, 238, 238)), to(rgb(224, 224, 224))) !important; | 403 background-image: linear-gradient(to bottom, rgb(238, 238, 238), rgb(224, 22
4, 224)) !important; |
361 color: #555 !important; | 404 color: #555 !important; |
362 } | 405 } |
363 | 406 |
364 .toolbar > .tabbed-pane-header { | 407 .toolbar > .tabbed-pane-header { |
365 flex: auto; | 408 flex: auto; |
366 } | 409 } |
367 | 410 |
368 .toolbar-controls-left { | 411 .toolbar-controls-left { |
369 flex: none; | 412 flex: none; |
370 opacity: 0.8; | 413 opacity: 0.8; |
(...skipping 26 matching lines...) Expand all Loading... |
397 .scrollable-content::-webkit-scrollbar { | 440 .scrollable-content::-webkit-scrollbar { |
398 width: 11px; | 441 width: 11px; |
399 } | 442 } |
400 | 443 |
401 .scrollable-content::-webkit-scrollbar-corner, | 444 .scrollable-content::-webkit-scrollbar-corner, |
402 .scrollable-content::-webkit-resizer { | 445 .scrollable-content::-webkit-resizer { |
403 display: none; | 446 display: none; |
404 } | 447 } |
405 | 448 |
406 .scrollable-content::-webkit-scrollbar-thumb:vertical { | 449 .scrollable-content::-webkit-scrollbar-thumb:vertical { |
407 background: -webkit-gradient(linear, left top, right top, from(rgb(192, 192,
192)), to(rgb(192, 192, 192)), color-stop(40%, rgb(214, 214, 214))); | 450 background: linear-gradient(to right, rgb(192, 192, 192), rgb(214, 214, 214)
40%, rgb(192, 192, 192)); |
408 border-radius: 5px; | 451 border-radius: 5px; |
409 min-height: 20px; | 452 min-height: 20px; |
410 } | 453 } |
411 | 454 |
412 .scrollable-content::-webkit-scrollbar-thumb:vertical:hover, | 455 .scrollable-content::-webkit-scrollbar-thumb:vertical:hover, |
413 .scrollable-content::-webkit-scrollbar-thumb:vertical:active { | 456 .scrollable-content::-webkit-scrollbar-thumb:vertical:active { |
414 background: -webkit-gradient(linear, left top, right top, from(rgb(230, 230,
230)), to(rgb(230, 230, 230)), color-stop(40%, rgb(252, 252, 252))); | 457 background: linear-gradient(to right, rgb(230, 230, 230), rgb(252, 252, 252)
40%, rgb(230, 230, 230)); |
415 } | 458 } |
416 | 459 |
417 .scrollable-content::-webkit-scrollbar-track:vertical { | 460 .scrollable-content::-webkit-scrollbar-track:vertical { |
418 background: -webkit-gradient(linear, left top, right top, from(rgb(128, 128,
128)), to(rgb(164, 164, 164)), color-stop(25%, rgb(164, 164, 164))); | 461 background: linear-gradient(to right, rgb(128, 128, 128), rgb(164, 164, 164)
25%, rgb(164, 164, 164)); |
419 border-radius: 5px; | 462 border-radius: 5px; |
420 } | 463 } |
421 | 464 |
422 .search-replace { | 465 .search-replace { |
423 -webkit-appearance: none; | 466 -webkit-appearance: none; |
424 border: 0; | 467 border: 0; |
425 padding: 0 2px; | 468 padding: 0 3px; |
426 margin: 0; | 469 margin: 0; |
427 -webkit-flex: 1; | 470 flex: 1; |
428 } | 471 } |
429 | 472 |
430 .search-replace:focus { | 473 .search-replace:focus { |
431 outline: none; | 474 outline: none; |
432 } | 475 } |
433 | 476 |
| 477 #search-input-field { |
| 478 height: 18px; |
| 479 } |
| 480 |
434 .toolbar-search { | 481 .toolbar-search { |
435 border-spacing: 1px; | 482 border-spacing: 1px; |
436 } | 483 } |
437 | 484 |
438 .toolbar-search td { | 485 .toolbar-search td { |
439 padding: 0 5px 0 0; | 486 padding: 0 5px 0 0; |
440 } | 487 } |
441 | 488 |
| 489 .toolbar-search td > span { |
| 490 display: flex; |
| 491 } |
| 492 |
442 .toolbar-search-navigation-controls { | 493 .toolbar-search-navigation-controls { |
443 vertical-align: top; | 494 vertical-align: top; |
444 background-image: -webkit-linear-gradient(rgb(228, 228, 228), rgb(206, 206,
206)); | 495 background-image: linear-gradient(rgb(228, 228, 228), rgb(206, 206, 206)); |
445 } | 496 } |
446 | 497 |
447 .toolbar-search-navigation { | 498 .toolbar-search-navigation { |
448 display: inline-block; | 499 display: inline-block; |
449 width: 18px; | 500 width: 18px; |
450 height: 18px; | 501 height: 18px; |
451 background-repeat: no-repeat; | 502 background-repeat: no-repeat; |
452 background-position: 4px 7px; | 503 background-position: 4px 7px; |
453 border-left: 1px solid rgb(170, 170, 170); | 504 border-left: 1px solid rgb(170, 170, 170); |
454 opacity: 0.3; | 505 opacity: 0.3; |
455 } | 506 } |
456 | 507 |
457 .toolbar-search-navigation.enabled { | 508 .toolbar-search-navigation.enabled { |
458 opacity: 1.0; | 509 opacity: 1.0; |
459 } | 510 } |
460 | 511 |
461 .toolbar-search label { | 512 .toolbar-search label { |
462 vertical-align: bottom; | 513 margin: auto 0; |
463 } | |
464 | |
465 .toolbar-search input[type="checkbox"] { | |
466 position: relative; | |
467 margin-top: -1px; | |
468 margin-left: 15px; | |
469 top: 2px; | |
470 } | 514 } |
471 | 515 |
472 .toolbar-search button { | 516 .toolbar-search button { |
473 border: 1px solid rgb(163, 163, 163); | 517 border: 1px solid rgb(163, 163, 163); |
474 border-radius: 8px; | 518 border-radius: 8px; |
475 margin: 0; | 519 margin: 0; |
476 background-image: -webkit-linear-gradient(rgb(241, 241, 241), rgb(220, 220,
220)); | 520 background-image: linear-gradient(rgb(241, 241, 241), rgb(220, 220, 220)); |
477 width: 100%; | 521 width: 100%; |
478 height: 20px; | 522 height: 20px; |
479 } | 523 } |
480 | 524 |
481 .toolbar-search button:active { | 525 .toolbar-search button:active { |
482 background-image: -webkit-linear-gradient(rgb(185, 185, 185), rgb(156, 156,
156)); | 526 background-image: linear-gradient(rgb(185, 185, 185), rgb(156, 156, 156)); |
483 } | 527 } |
484 | 528 |
485 .toolbar-search-control { | 529 .toolbar-search-control { |
486 display: -webkit-flex; | 530 display: -webkit-flex; |
487 width: 253px; | 531 width: 253px; |
488 position: relative; | 532 position: relative; |
489 background-color: white; | 533 background-color: white; |
490 border: 1px solid rgb(163, 163, 163); | 534 border: 1px solid rgb(163, 163, 163); |
491 height: 20px; | 535 height: 20px; |
492 border-radius: 2px; | 536 border-radius: 2px; |
| 537 margin-left: 1px; |
493 } | 538 } |
494 | 539 |
495 .toolbar-replace-control { | 540 .toolbar-replace-control { |
496 border: 1px solid rgb(163, 163, 163); | 541 border: 1px solid rgb(163, 163, 163); |
497 height: 20px; | 542 height: 20px; |
498 border-radius: 2px; | 543 border-radius: 2px; |
499 width: 100%; | 544 width: 100%; |
| 545 margin: auto 0; |
500 } | 546 } |
501 | 547 |
502 .toolbar-search-navigation.enabled:active { | 548 .toolbar-search-navigation.enabled:active { |
503 background-position: 4px 7px, 0 0; | 549 background-position: 4px 7px, 0 0; |
504 } | 550 } |
505 | 551 |
506 .toolbar-search-navigation.toolbar-search-navigation-prev { | 552 .toolbar-search-navigation.toolbar-search-navigation-prev { |
507 background-image: url(Images/searchPrev.png); | 553 background-image: url(Images/searchPrev.png); |
508 border-left: 1px solid rgb(163, 163, 163); | 554 border-left: 1px solid rgb(163, 163, 163); |
509 } | 555 } |
510 | 556 |
511 .toolbar-search-navigation.toolbar-search-navigation-prev.enabled:active { | 557 .toolbar-search-navigation.toolbar-search-navigation-prev.enabled:active { |
512 background-image: url(Images/searchPrev.png), -webkit-linear-gradient(rgb(16
8, 168, 168), rgb(116, 116, 116)); | 558 background-image: url(Images/searchPrev.png), linear-gradient(rgb(168, 168,
168), rgb(116, 116, 116)); |
513 } | 559 } |
514 | 560 |
515 .toolbar-search-navigation.toolbar-search-navigation-next { | 561 .toolbar-search-navigation.toolbar-search-navigation-next { |
516 background-image: url(Images/searchNext.png); | 562 background-image: url(Images/searchNext.png); |
517 border-left: 1px solid rgb(230, 230, 230); | 563 border-left: 1px solid rgb(230, 230, 230); |
518 } | 564 } |
519 | 565 |
520 .toolbar-search-navigation.toolbar-search-navigation-next.enabled:active { | 566 .toolbar-search-navigation.toolbar-search-navigation-next.enabled:active { |
521 background-image: url(Images/searchNext.png), -webkit-linear-gradient(rgb(16
8, 168, 168), rgb(116, 116, 116)); | 567 background-image: url(Images/searchNext.png), linear-gradient(rgb(168, 168,
168), rgb(116, 116, 116)); |
522 } | 568 } |
523 | 569 |
524 .search-results-matches { | 570 .search-results-matches { |
525 display: inline-block; | 571 display: inline-block; |
526 min-height: 10px; | 572 min-height: 10px; |
527 text-align: right; | 573 text-align: right; |
528 font-size: 11px; | 574 font-size: 11px; |
529 padding: 1px 4px; | 575 padding: 1px 4px; |
530 color: rgb(165, 165, 165); | 576 color: rgb(165, 165, 165); |
531 } | 577 } |
(...skipping 13 matching lines...) Expand all Loading... |
545 | 591 |
546 .close-button-gray { | 592 .close-button-gray { |
547 width: 13px; | 593 width: 13px; |
548 height: 13px; | 594 height: 13px; |
549 background-position: -175px -96px; | 595 background-position: -175px -96px; |
550 } | 596 } |
551 | 597 |
552 @media (-webkit-min-device-pixel-ratio: 1.5) { | 598 @media (-webkit-min-device-pixel-ratio: 1.5) { |
553 .close-button, | 599 .close-button, |
554 .close-button-gray { | 600 .close-button-gray { |
555 background-image: url(Images/statusbarButtonGlyphs2x.png); | 601 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
556 } | 602 } |
557 } /* media */ | 603 } /* media */ |
558 | 604 |
559 .close-button:hover { | 605 .close-button:hover { |
560 background-position: -96px -96px; | 606 background-position: -96px -96px; |
561 } | 607 } |
562 | 608 |
563 .close-button:active { | 609 .close-button:active { |
564 background-position: -111px -96px; | 610 background-position: -111px -96px; |
565 } | 611 } |
(...skipping 15 matching lines...) Expand all Loading... |
581 } | 627 } |
582 | 628 |
583 .panel-status-bar { | 629 .panel-status-bar { |
584 border-top: none; | 630 border-top: none; |
585 display: flex; | 631 display: flex; |
586 background-color: white; | 632 background-color: white; |
587 flex: 0 0 23px; | 633 flex: 0 0 23px; |
588 position: relative; | 634 position: relative; |
589 } | 635 } |
590 | 636 |
591 .panel-status-bar label { | 637 .panel-status-bar > div { |
592 margin: 2px 20px 0 0; | 638 margin: auto 0; |
593 } | 639 } |
594 | 640 |
595 .panel-status-bar label > input { | 641 .panel-status-bar label { |
596 height: 13px; | 642 margin: auto 0; |
597 width: 13px; | 643 margin-right: 20px; |
598 vertical-align: -2px; | 644 display: flex; |
| 645 white-space: nowrap; |
| 646 overflow: hidden; |
599 } | 647 } |
600 | 648 |
601 .status-bar { | 649 .status-bar { |
602 position: relative; | 650 position: relative; |
603 white-space: nowrap; | 651 white-space: nowrap; |
604 height: 23px; | 652 height: 23px; |
605 overflow: hidden; | 653 overflow: hidden; |
606 width: 100%; | 654 width: 100%; |
607 z-index: 12; | 655 z-index: 12; |
608 border-top: 1px solid rgb(202, 202, 202); | 656 border-top: 1px solid rgb(202, 202, 202); |
609 display: -webkit-flex; | 657 display: -webkit-flex; |
610 } | 658 } |
611 | 659 |
612 .status-bar > div { | 660 .status-bar > div { |
613 display: inline-block; | 661 display: inline-flex; |
614 vertical-align: top; | |
615 overflow: visible; | 662 overflow: visible; |
616 } | 663 } |
617 | 664 |
618 .status-bar-item { | 665 .status-bar-item { |
619 display: inline-block; | 666 display: inline-block; |
620 cursor: default; | |
621 height: 22px; | 667 height: 22px; |
622 padding: 0; | 668 padding: 0; |
623 margin-left: -1px; | 669 margin-left: -1px; |
624 margin-right: 0; | 670 margin-right: 0; |
625 vertical-align: top; | 671 vertical-align: top; |
626 border: 0 transparent none; | 672 border: 0 transparent none; |
627 background-color: transparent; | 673 background-color: transparent; |
628 flex: none; | 674 flex: none; |
629 } | 675 } |
630 | 676 |
631 .status-bar-text { | 677 .status-bar-text { |
632 padding-left: 5px; | 678 padding-left: 5px; |
633 padding-right: 15px; | 679 padding-right: 15px; |
634 padding-top: 3px; | 680 height: auto; |
| 681 margin: auto 0; |
| 682 white-space: nowrap; |
| 683 overflow: hidden; |
635 } | 684 } |
636 | 685 |
637 #drawer-view-anchor { | 686 #drawer-view-anchor { |
638 display: inline-block; | 687 display: inline-block; |
639 } | 688 } |
640 | 689 |
641 .status-bar-item:active { | 690 .status-bar-item:active { |
642 position: relative; | 691 position: relative; |
643 z-index: 200; | 692 z-index: 200; |
644 } | 693 } |
(...skipping 18 matching lines...) Expand all Loading... |
663 .long-click-glyph { | 712 .long-click-glyph { |
664 background-color: rgba(0, 0, 0, 0.75); | 713 background-color: rgba(0, 0, 0, 0.75); |
665 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); | 714 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); |
666 -webkit-mask-position: -288px -48px; | 715 -webkit-mask-position: -288px -48px; |
667 -webkit-mask-size: 320px 144px; | 716 -webkit-mask-size: 320px 144px; |
668 z-index: 1; | 717 z-index: 1; |
669 } | 718 } |
670 | 719 |
671 @media (-webkit-min-device-pixel-ratio: 1.5) { | 720 @media (-webkit-min-device-pixel-ratio: 1.5) { |
672 .long-click-glyph { | 721 .long-click-glyph { |
673 -webkit-mask-image: url(Images/statusbarButtonGlyphs2x.png); | 722 -webkit-mask-image: url(Images/statusbarButtonGlyphs_2x.png); |
674 } | 723 } |
675 } /* media */ | 724 } /* media */ |
676 | 725 |
677 .long-click-glyph.shadow { | 726 .long-click-glyph.shadow { |
678 top: 1px; | 727 top: 1px; |
679 background-color: white !important; | 728 background-color: white !important; |
680 z-index: 0; | 729 z-index: 0; |
681 } | 730 } |
682 | 731 |
683 button.status-bar-item { | 732 button.status-bar-item { |
(...skipping 23 matching lines...) Expand all Loading... |
707 | 756 |
708 button.status-bar-item:disabled .glyph { | 757 button.status-bar-item:disabled .glyph { |
709 opacity: 0.5 !important; | 758 opacity: 0.5 !important; |
710 } | 759 } |
711 | 760 |
712 button.status-bar-item.extension { | 761 button.status-bar-item.extension { |
713 background-image: none; | 762 background-image: none; |
714 } | 763 } |
715 | 764 |
716 .status-bar-select-container { | 765 .status-bar-select-container { |
717 display: inline-block; | 766 display: inline-flex; |
| 767 flex-shrink: 0; |
718 } | 768 } |
719 | 769 |
720 .status-bar-select-arrow { | 770 .status-bar-select-arrow { |
721 background-image: url(Images/statusbarButtonGlyphs.png); | 771 background-image: url(Images/statusbarButtonGlyphs.png); |
722 background-size: 320px 144px; | 772 background-size: 320px 144px; |
723 opacity: 0.7; | 773 opacity: 0.7; |
724 width: 10px; | 774 width: 12px; |
725 height: 10px; | 775 height: 12px; |
726 background-position: -20px -96px; | 776 background-position: -18px -96px; |
727 display: inline-block; | 777 display: inline-block; |
728 pointer-events: none; | 778 pointer-events: none; |
729 position: relative; | 779 margin: auto 0; |
730 top: 3px; | |
731 left: -3px; | |
732 } | 780 } |
733 | 781 |
734 @media (-webkit-min-device-pixel-ratio: 1.5) { | 782 @media (-webkit-min-device-pixel-ratio: 1.5) { |
735 .status-bar-select-arrow { | 783 .status-bar-select-arrow { |
736 background-image: url(Images/statusbarButtonGlyphs2x.png); | 784 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
737 } | 785 } |
738 } /* media */ | 786 } /* media */ |
739 | 787 |
| 788 input.status-bar-item { |
| 789 width: 200px; |
| 790 height: 20px; |
| 791 padding: 3px; |
| 792 margin: 1px 3px; |
| 793 background-color: white; |
| 794 border: solid 1px rgb(236, 236, 236); |
| 795 } |
| 796 |
| 797 input.status-bar-item:focus, |
| 798 input.status-bar-item:hover { |
| 799 border: solid 1px rgb(202, 202, 202); |
| 800 } |
| 801 |
740 select.status-bar-item { | 802 select.status-bar-item { |
741 min-width: 48px; | 803 min-width: 48px; |
742 color: rgb(48, 48, 48); | 804 color: rgb(48, 48, 48); |
743 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; | 805 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; |
744 -webkit-appearance: none; | 806 -webkit-appearance: none; |
745 border: 0; | 807 border: 0; |
746 border-radius: 0; | 808 border-radius: 0; |
747 padding: 0 15px 0 5px; | 809 padding: 0 15px 0 5px; |
748 margin-right: -10px; | 810 margin-right: -10px; |
749 position: relative; | 811 position: relative; |
750 line-height: 20px; | 812 line-height: 22px; |
751 } | 813 } |
752 | 814 |
753 .status-bar-item.checkbox { | 815 .status-bar-item.checkbox { |
754 margin: 2px 0 0 0; | 816 margin: auto 0; |
| 817 height: auto; |
| 818 display: flex; |
755 } | 819 } |
756 | 820 |
757 .status-bar-item > .glyph { | 821 .status-bar-item > .glyph { |
758 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); | 822 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); |
759 -webkit-mask-size: 320px 144px; | 823 -webkit-mask-size: 320px 144px; |
760 opacity: 0.8; | 824 opacity: 0.8; |
761 } | 825 } |
762 | 826 |
763 .console-filter > .glyph { | 827 .console-filter > .glyph { |
764 -webkit-mask-position: -32px -48px; | 828 -webkit-mask-position: -32px -48px; |
765 } | 829 } |
766 | 830 |
767 @media (-webkit-min-device-pixel-ratio: 1.5) { | 831 @media (-webkit-min-device-pixel-ratio: 1.5) { |
768 .status-bar-item > .glyph { | 832 .status-bar-item > .glyph { |
769 -webkit-mask-image: url(Images/statusbarButtonGlyphs2x.png); | 833 -webkit-mask-image: url(Images/statusbarButtonGlyphs_2x.png); |
770 } | 834 } |
771 } /* media */ | 835 } /* media */ |
772 | 836 |
773 button.status-bar-item.dock-status-bar-item.toggled-undocked .glyph { | 837 button.status-bar-item.dock-status-bar-item.toggled-undocked .glyph { |
774 -webkit-mask-position: 0 -48px; | 838 -webkit-mask-position: 0 -48px; |
775 } | 839 } |
776 | 840 |
777 button.status-bar-item.dock-status-bar-item.toggled-bottom .glyph { | 841 button.status-bar-item.dock-status-bar-item.toggled-bottom .glyph { |
778 -webkit-mask-position: -32px -24px; | 842 -webkit-mask-position: -32px -24px; |
779 } | 843 } |
780 | 844 |
781 button.status-bar-item.dock-status-bar-item.toggled-right .glyph { | 845 button.status-bar-item.dock-status-bar-item.toggled-right .glyph { |
782 -webkit-mask-position: -256px -48px; | 846 -webkit-mask-position: -256px -48px; |
783 } | 847 } |
784 | 848 |
| 849 button.status-bar-item.dock-status-bar-item.toggled-left .glyph { |
| 850 -webkit-mask-position: -32px -120px; |
| 851 } |
| 852 |
785 body.undocked .alternate-status-bar-buttons-bar { | 853 body.undocked .alternate-status-bar-buttons-bar { |
786 margin-left: 1px; | 854 margin-left: 1px; |
787 } | 855 } |
788 | 856 |
789 .alternate-status-bar-buttons-bar { | 857 .alternate-status-bar-buttons-bar { |
790 position: absolute; | 858 position: absolute; |
791 width: 31px; | 859 width: 31px; |
792 bottom: -3px; | 860 bottom: -3px; |
793 background: white; | 861 background: white; |
794 } | 862 } |
795 | 863 |
796 .alternate-status-bar-buttons-bar .status-bar-item { | 864 .alternate-status-bar-buttons-bar .status-bar-item { |
797 height: 24px; | 865 height: 24px; |
798 margin-top: -1px; | 866 margin-top: -1px; |
799 border: 1px solid rgb(202, 202, 202); | 867 border: 1px solid rgb(202, 202, 202); |
800 } | 868 } |
801 | 869 |
802 .alternate-status-bar-buttons-bar .status-bar-item.emulate-active { | 870 .alternate-status-bar-buttons-bar .status-bar-item.emulate-active { |
803 background-color: rgb(163,163,163); | 871 background-color: rgb(163,163,163); |
804 border: 1px solid rgb(120, 120, 120); | 872 border: 1px solid rgb(120, 120, 120); |
805 } | 873 } |
806 | 874 |
807 button.status-bar-item.settings-status-bar-item, | 875 button.status-bar-item.settings-status-bar-item, |
808 button.status-bar-item.settings-status-bar-item:active { | 876 button.status-bar-item.settings-status-bar-item:active { |
809 border-right: 0 transparent none; | 877 border-right: 0 transparent none; |
810 } | 878 } |
811 | 879 |
812 button.status-bar-item.left-sidebar-show-hide-button, | |
813 button.status-bar-item.right-sidebar-show-hide-button { | |
814 position: absolute; | |
815 top: 0; | |
816 background-image: none; | |
817 height: 16px; | |
818 width: 16px; | |
819 margin: 4px 2px 2px 2px; | |
820 border: none; | |
821 z-index: 10; | |
822 } | |
823 | |
824 button.status-bar-item.left-sidebar-show-hide-button:active, | |
825 button.status-bar-item.right-sidebar-show-hide-button:active { | |
826 margin: 5px 1px 1px 3px; | |
827 } | |
828 | |
829 button.status-bar-item.left-sidebar-show-hide-button.toggled-left > .glyph { | |
830 -webkit-mask-position: -199px -76px; | |
831 } | |
832 | |
833 button.status-bar-item.left-sidebar-show-hide-button.toggled-right > .glyph { | |
834 -webkit-mask-position: -168px -76px; | |
835 } | |
836 | |
837 button.status-bar-item.right-sidebar-show-hide-button.toggled-left > .glyph { | |
838 -webkit-mask-position: -296px -76px; | |
839 } | |
840 | |
841 button.status-bar-item.right-sidebar-show-hide-button.toggled-right > .glyph { | |
842 -webkit-mask-position: -264px -76px; | |
843 } | |
844 | |
845 button.status-bar-item.left-sidebar-show-hide-button.toggled-overlay > .glyph { | |
846 -webkit-mask-position: -231px -76px; | |
847 } | |
848 | |
849 div.resizer-widget { | 880 div.resizer-widget { |
850 position: absolute; | 881 position: absolute; |
851 top: 0; | 882 top: 0; |
852 right: 0; | 883 right: 0; |
853 height: 24px; | 884 height: 24px; |
854 width: 16px; | 885 width: 16px; |
855 background-image: url(Images/statusbarResizerHorizontal.png); | 886 background-image: url(Images/statusbarResizerHorizontal.png); |
856 background-repeat: no-repeat; | 887 background-repeat: no-repeat; |
857 background-position: center; | 888 background-position: center; |
858 z-index: 13; | 889 z-index: 13; |
859 } | 890 } |
860 | 891 |
| 892 .ns-resizer-widget { |
| 893 cursor: ns-resize; |
| 894 } |
| 895 |
| 896 .ew-resizer-widget { |
| 897 cursor: ew-resize; |
| 898 } |
| 899 |
861 .settings-status-bar-item .glyph { | 900 .settings-status-bar-item .glyph { |
862 -webkit-mask-position: -160px -24px; | 901 -webkit-mask-position: -160px -24px; |
863 } | 902 } |
864 | 903 |
865 body.remote .dock-status-bar-item { | 904 body.remote .dock-status-bar-item { |
866 display: none; | 905 display: none; |
867 } | 906 } |
868 | 907 |
869 .console-status-bar-item .glyph { | 908 .console-status-bar-item .glyph { |
870 -webkit-mask-position: -64px -24px; | 909 -webkit-mask-position: -64px -24px; |
(...skipping 26 matching lines...) Expand all Loading... |
897 height: 10px; | 936 height: 10px; |
898 display: inline-block; | 937 display: inline-block; |
899 } | 938 } |
900 | 939 |
901 @media (-webkit-min-device-pixel-ratio: 1.5) { | 940 @media (-webkit-min-device-pixel-ratio: 1.5) { |
902 .error-icon-small, | 941 .error-icon-small, |
903 .warning-icon-small, | 942 .warning-icon-small, |
904 .red-ball, | 943 .red-ball, |
905 .green-ball, | 944 .green-ball, |
906 .orange-ball { | 945 .orange-ball { |
907 background-image: url(Images/statusbarButtonGlyphs2x.png); | 946 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
908 } | 947 } |
909 } /* media */ | 948 } /* media */ |
910 | 949 |
911 .error-icon-small { | 950 .error-icon-small { |
912 background-position: -213px -96px; | 951 background-position: -213px -96px; |
913 } | 952 } |
914 | 953 |
915 .warning-icon-small { | 954 .warning-icon-small { |
916 background-position: -202px -107px; | 955 background-position: -202px -107px; |
917 } | 956 } |
(...skipping 26 matching lines...) Expand all Loading... |
944 #error-warning-count .error-icon-small, | 983 #error-warning-count .error-icon-small, |
945 #error-warning-count .warning-icon-small { | 984 #error-warning-count .warning-icon-small { |
946 vertical-align: -1px; | 985 vertical-align: -1px; |
947 margin-right: 2px; | 986 margin-right: 2px; |
948 } | 987 } |
949 | 988 |
950 #error-warning-count .warning-icon-small { | 989 #error-warning-count .warning-icon-small { |
951 margin-left: 6px; | 990 margin-left: 6px; |
952 } | 991 } |
953 | 992 |
954 .drawer { | 993 #drawer-tabbed-pane > .tabbed-pane-header { |
955 display: none; | |
956 flex: 0 0 200px; | |
957 position: relative; | |
958 background-color: white; | |
959 z-index: 1; | |
960 } | |
961 | |
962 #drawer-contents { | |
963 position: absolute; | |
964 top: 0; | |
965 bottom: 0; | |
966 left: 0; | |
967 right: 0; | |
968 display: flex; | |
969 } | |
970 | |
971 #drawer-contents > .tabbed-pane > .tabbed-pane-header { | |
972 background-color: rgb(236, 236, 236); | 994 background-color: rgb(236, 236, 236); |
973 border-top: 1px solid rgb(124, 124, 124); | |
974 border-bottom: 1px solid rgb(203, 203, 203); | |
975 } | |
976 | |
977 body.inactive #drawer-contents .tabbed-pane-header { | |
978 border-top: 1px solid rgb(64%, 64%, 64%); | |
979 } | 995 } |
980 | 996 |
981 #drawer-contents .tabbed-pane-header .tabbed-pane-header-tab { | 997 #drawer-contents .tabbed-pane-header .tabbed-pane-header-tab { |
982 cursor: default; | 998 cursor: default; |
983 } | 999 } |
984 | 1000 |
985 .drawer-resizer { | |
986 position: absolute; | |
987 right: 0; | |
988 top: 8px; | |
989 content: url(Images/statusbarResizerVertical.png); | |
990 height: 8px; | |
991 pointer-events: none; | |
992 } | |
993 | |
994 #drawer-footer { | |
995 position: absolute; | |
996 bottom: 0; | |
997 left: 0; | |
998 right: 0; | |
999 font-size: 11px; | |
1000 height: 23px; | |
1001 background-color: rgb(236, 236, 236); | |
1002 } | |
1003 | |
1004 body.drawer-visible .drawer { | |
1005 display: block; | |
1006 } | |
1007 | |
1008 body.platform-mac .monospace, | 1001 body.platform-mac .monospace, |
1009 body.platform-mac .source-code { | 1002 body.platform-mac .source-code { |
1010 font-size: 11px !important; | 1003 font-size: 11px !important; |
1011 font-family: Menlo, monospace; | 1004 font-family: Menlo, monospace; |
1012 } | 1005 } |
1013 | 1006 |
1014 body.platform-mac.platform-mac-tiger .monospace, | 1007 body.platform-mac.platform-mac-tiger .monospace, |
1015 body.platform-mac.platform-mac-tiger .source-code { | 1008 body.platform-mac.platform-mac-tiger .source-code { |
1016 font-size: 10px !important; | 1009 font-size: 10px !important; |
1017 font-family: Monaco, monospace; | 1010 font-family: Monaco, monospace; |
(...skipping 18 matching lines...) Expand all Loading... |
1036 .console-view-wrapper { | 1029 .console-view-wrapper { |
1037 background-color: rgb(236, 236, 236); | 1030 background-color: rgb(236, 236, 236); |
1038 } | 1031 } |
1039 | 1032 |
1040 .console-status-bar, | 1033 .console-status-bar, |
1041 .console-filters-header { | 1034 .console-filters-header { |
1042 flex: 0 0 23px; | 1035 flex: 0 0 23px; |
1043 overflow: hidden; | 1036 overflow: hidden; |
1044 } | 1037 } |
1045 | 1038 |
| 1039 .console-status-bar { |
| 1040 display: flex; |
| 1041 } |
| 1042 |
1046 #console-messages { | 1043 #console-messages { |
1047 flex: 1 1; | 1044 flex: 1 1; |
1048 padding: 2px 0; | 1045 padding: 2px 0; |
1049 overflow-y: auto; | 1046 overflow-y: auto; |
1050 word-wrap: break-word; | 1047 word-wrap: break-word; |
1051 -webkit-user-select: text; | 1048 -webkit-user-select: text; |
1052 border-top: 1px solid rgb(230, 230, 230); | 1049 border-top: 1px solid rgb(230, 230, 230); |
| 1050 -webkit-transform: translateZ(0); |
1053 } | 1051 } |
1054 | 1052 |
1055 #console-prompt { | 1053 #console-prompt { |
1056 clear: right; | 1054 clear: right; |
1057 position: relative; | 1055 position: relative; |
1058 padding: 1px 22px 1px 0; | 1056 padding: 1px 22px 1px 0; |
1059 margin-left: 24px; | 1057 margin-left: 24px; |
1060 min-height: 16px; | 1058 min-height: 16px; |
1061 white-space: pre-wrap; | 1059 white-space: pre-wrap; |
1062 -webkit-user-modify: read-write-plaintext-only; | 1060 -webkit-user-modify: read-write-plaintext-only; |
(...skipping 22 matching lines...) Expand all Loading... |
1085 } | 1083 } |
1086 | 1084 |
1087 .console-adjacent-user-command-result { | 1085 .console-adjacent-user-command-result { |
1088 border-bottom: none; | 1086 border-bottom: none; |
1089 } | 1087 } |
1090 | 1088 |
1091 .console-adjacent-user-command-result + .console-user-command-result.console-log
-level::before { | 1089 .console-adjacent-user-command-result + .console-user-command-result.console-log
-level::before { |
1092 background-image: none; | 1090 background-image: none; |
1093 } | 1091 } |
1094 | 1092 |
| 1093 .console-timestamp { |
| 1094 color: gray; |
| 1095 margin-right: 10px; |
| 1096 -webkit-user-select: none; |
| 1097 } |
| 1098 |
1095 .console-message::before, | 1099 .console-message::before, |
1096 .console-user-command::before, | 1100 .console-user-command::before, |
1097 #console-prompt::before, | 1101 #console-prompt::before, |
1098 .console-group-title::before { | 1102 .console-group-title::before { |
1099 position: absolute; | 1103 position: absolute; |
1100 display: block; | 1104 display: block; |
1101 content: ""; | 1105 content: ""; |
1102 left: -17px; | 1106 left: -17px; |
1103 top: 0.8em; | 1107 top: 0.8em; |
1104 width: 10px; | 1108 width: 10px; |
1105 height: 10px; | 1109 height: 10px; |
1106 margin-top: -6px; | 1110 margin-top: -6px; |
1107 -webkit-user-select: none; | 1111 -webkit-user-select: none; |
1108 background-image: url(Images/statusbarButtonGlyphs.png); | 1112 background-image: url(Images/statusbarButtonGlyphs.png); |
1109 background-size: 320px 144px; | 1113 background-size: 320px 144px; |
1110 } | 1114 } |
1111 | 1115 |
1112 @media (-webkit-min-device-pixel-ratio: 1.5) { | 1116 @media (-webkit-min-device-pixel-ratio: 1.5) { |
1113 .console-message::before, | 1117 .console-message::before, |
1114 .console-user-command::before, | 1118 .console-user-command::before, |
1115 #console-prompt::before, | 1119 #console-prompt::before, |
1116 .console-group-title::before { | 1120 .console-group-title::before { |
1117 background-image: url(Images/statusbarButtonGlyphs2x.png); | 1121 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
1118 } | 1122 } |
1119 } /* media */ | 1123 } /* media */ |
1120 | 1124 |
1121 .console-message > .outline-disclosure li.parent::before { | 1125 .console-message > .outline-disclosure li.parent::before { |
1122 top: 0; | 1126 top: 0; |
1123 } | 1127 } |
1124 | 1128 |
1125 .console-message .outline-disclosure .stacktrace-entry:hover { | 1129 .console-message .outline-disclosure .stacktrace-entry:hover { |
1126 background-color: rgba(0, 0, 0, 0.05); | 1130 background-color: rgba(0, 0, 0, 0.05); |
1127 } | 1131 } |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1182 width: 8px; | 1186 width: 8px; |
1183 content: "a"; | 1187 content: "a"; |
1184 color: transparent; | 1188 color: transparent; |
1185 text-shadow: none; | 1189 text-shadow: none; |
1186 margin-left: 3px; | 1190 margin-left: 3px; |
1187 margin-top: -7px; | 1191 margin-top: -7px; |
1188 } | 1192 } |
1189 | 1193 |
1190 @media (-webkit-min-device-pixel-ratio: 1.5) { | 1194 @media (-webkit-min-device-pixel-ratio: 1.5) { |
1191 .console-group-title::before { | 1195 .console-group-title::before { |
1192 -webkit-mask-image: url(Images/statusbarButtonGlyphs2x.png); | 1196 -webkit-mask-image: url(Images/statusbarButtonGlyphs_2x.png); |
1193 } | 1197 } |
1194 } /* media */ | 1198 } /* media */ |
1195 | 1199 |
1196 .console-group .console-group-title::before { | 1200 .console-group .console-group-title::before { |
1197 -webkit-mask-position: -20px -96px; | 1201 -webkit-mask-position: -20px -96px; |
1198 background-color: rgb(110, 110, 110); | 1202 background-color: rgb(110, 110, 110); |
1199 } | 1203 } |
1200 | 1204 |
1201 .console-group.collapsed .console-group-title::before { | 1205 .console-group.collapsed .console-group-title::before { |
1202 -webkit-mask-position: -4px -96px; | 1206 -webkit-mask-position: -4px -96px; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1242 background-size: 320px 144px; | 1246 background-size: 320px 144px; |
1243 width: 10px; | 1247 width: 10px; |
1244 height: 10px; | 1248 height: 10px; |
1245 } | 1249 } |
1246 | 1250 |
1247 @media (-webkit-min-device-pixel-ratio: 1.5) { | 1251 @media (-webkit-min-device-pixel-ratio: 1.5) { |
1248 .console-error-level::before, | 1252 .console-error-level::before, |
1249 .console-warning-level::before, | 1253 .console-warning-level::before, |
1250 .console-debug-level::before, | 1254 .console-debug-level::before, |
1251 .console-info-level::before { | 1255 .console-info-level::before { |
1252 background-image: url(Images/statusbarButtonGlyphs2x.png); | 1256 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
1253 } | 1257 } |
1254 } /* media */ | 1258 } /* media */ |
1255 | 1259 |
1256 .console-warning-level::before { | 1260 .console-warning-level::before { |
1257 background-position: -202px -107px; | 1261 background-position: -202px -107px; |
1258 } | 1262 } |
1259 | 1263 |
1260 .console-error-level::before { | 1264 .console-error-level::before { |
1261 background-position: -213px -96px; | 1265 background-position: -213px -96px; |
1262 } | 1266 } |
1263 | 1267 |
1264 .console-info-level::before { | 1268 .console-info-level::before { |
1265 background-position: -213px -107px; | 1269 background-position: -213px -107px; |
1266 } | 1270 } |
1267 | 1271 |
1268 .console-user-command .console-message { | 1272 .console-user-command .console-message { |
1269 margin-left: -24px; | 1273 margin-left: -24px; |
1270 padding-right: 0; | 1274 padding-right: 0; |
1271 border-bottom: none; | 1275 border-bottom: none; |
1272 } | 1276 } |
1273 | 1277 |
1274 .console-user-command::before { | 1278 .console-user-command::before { |
1275 background-position: -192px -107px; | 1279 background-position: -192px -107px; |
1276 } | 1280 } |
1277 | 1281 |
1278 .console-user-command > .console-message-text { | 1282 .console-user-command > .console-message-text { |
1279 color: rgb(0, 128, 255); | 1283 color: rgb(0, 128, 255); |
1280 } | 1284 } |
1281 | 1285 |
| 1286 #console-messages .link { |
| 1287 text-decoration: underline; |
| 1288 } |
| 1289 |
| 1290 #console-messages .link, |
1282 #console-messages a { | 1291 #console-messages a { |
1283 color: rgb(33%, 33%, 33%); | 1292 color: rgb(33%, 33%, 33%); |
1284 cursor: pointer; | 1293 cursor: pointer; |
1285 } | 1294 } |
1286 | 1295 |
| 1296 #console-messages .link:hover, |
1287 #console-messages a:hover { | 1297 #console-messages a:hover { |
1288 color: rgb(15%, 15%, 15%); | 1298 color: rgb(15%, 15%, 15%); |
1289 } | 1299 } |
1290 | 1300 |
1291 ol.watch-expressions > li.hovered { | 1301 ol.watch-expressions > li.hovered { |
1292 background-color: #F0F0F0; | 1302 background-color: #F0F0F0; |
1293 } | 1303 } |
1294 | 1304 |
1295 .console-message-url { | 1305 .console-message-url { |
1296 float: right; | 1306 float: right; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1352 .console-group-messages .add-attribute { | 1362 .console-group-messages .add-attribute { |
1353 display: none; | 1363 display: none; |
1354 } | 1364 } |
1355 | 1365 |
1356 .console-formatted-object, | 1366 .console-formatted-object, |
1357 .console-formatted-node, | 1367 .console-formatted-node, |
1358 .console-formatted-array { | 1368 .console-formatted-array { |
1359 position: relative; | 1369 position: relative; |
1360 display: inline-block; | 1370 display: inline-block; |
1361 vertical-align: top; | 1371 vertical-align: top; |
1362 color: #222; | 1372 color: inherit; |
1363 } | 1373 } |
1364 | 1374 |
1365 .console-formatted-node:hover { | 1375 .console-formatted-node:hover { |
1366 background-color: rgba(56, 121, 217, 0.1); | 1376 background-color: rgba(56, 121, 217, 0.1); |
1367 } | 1377 } |
1368 | 1378 |
1369 .console-formatted-object .section, | 1379 .console-formatted-object .section, |
1370 .console-formatted-node .section, | 1380 .console-formatted-node .section, |
1371 .console-formatted-array .section { | 1381 .console-formatted-array .section { |
1372 position: static; | 1382 position: static; |
1373 } | 1383 } |
1374 | 1384 |
1375 .console-formatted-object .section > .header::before { | 1385 .console-formatted-object .section > .header::before { |
1376 margin-top: 0; | 1386 margin-top: 0; |
1377 } | 1387 } |
1378 | 1388 |
1379 .console-formatted-object .properties, | 1389 .console-formatted-object .properties, |
1380 .console-formatted-node .properties { | 1390 .console-formatted-node .properties { |
1381 padding-left: 0 !important; | 1391 padding-left: 0 !important; |
1382 } | 1392 } |
1383 | 1393 |
1384 .console-formatted-number { | 1394 .console-formatted-number { |
1385 color: rgb(28, 0, 207); | 1395 color: rgb(28, 0, 207); |
1386 } | 1396 } |
1387 | 1397 |
1388 .console-formatted-string, | 1398 .console-formatted-string, |
1389 .console-formatted-regexp { | 1399 .console-formatted-regexp { |
1390 color: rgb(196, 26, 22); | 1400 color: rgb(196, 26, 22); |
1391 white-space: pre; | 1401 white-space: pre; |
| 1402 unicode-bidi: -webkit-isolate; |
1392 } | 1403 } |
1393 | 1404 |
1394 .console-formatted-null, | 1405 .console-formatted-null, |
1395 .console-formatted-undefined { | 1406 .console-formatted-undefined { |
1396 color: rgb(128, 128, 128); | 1407 color: rgb(128, 128, 128); |
1397 } | 1408 } |
1398 | 1409 |
1399 .console-formatted-preview-node, | 1410 .console-formatted-preview-node, |
1400 .section .console-formatted-node { | 1411 .section .console-formatted-node { |
1401 color: rgb(136, 18, 128); | 1412 color: rgb(136, 18, 128); |
1402 } | 1413 } |
1403 | 1414 |
1404 .console-object-preview { | 1415 .console-object-preview { |
1405 font-style: italic; | 1416 font-style: italic; |
1406 } | 1417 } |
1407 | 1418 |
1408 .object-info-state-note { | 1419 .object-info-state-note { |
1409 display: none; | 1420 display: inline-block; |
1410 width: 11px; | 1421 width: 11px; |
1411 height: 11px; | 1422 height: 11px; |
1412 background-color: rgb(179, 203, 247); | 1423 background-color: rgb(179, 203, 247); |
1413 color: white; | 1424 color: white; |
1414 text-align: center; | 1425 text-align: center; |
1415 border-radius: 3px; | 1426 border-radius: 3px; |
1416 line-height: 13px; | 1427 line-height: 13px; |
1417 margin: 0 6px; | 1428 margin: 0 6px; |
1418 font-size: 9px; | 1429 font-size: 9px; |
1419 } | 1430 } |
1420 | 1431 |
1421 .object-info-state-note::before { | 1432 .object-info-state-note::before { |
1422 content: "i"; | 1433 content: "i"; |
1423 } | 1434 } |
1424 | 1435 |
1425 .section.expanded .object-info-state-note { | 1436 .section:not(.expanded) .object-info-state-note { |
1426 display: inline-block; | 1437 display: none; |
1427 } | 1438 } |
1428 | 1439 |
1429 .error-message { | 1440 .error-message { |
1430 color: red; | 1441 color: red; |
1431 } | 1442 } |
1432 | 1443 |
1433 .error-input { | 1444 .error-input { |
1434 background-color: rgb(220, 130, 130); | 1445 background-color: rgb(220, 130, 130); |
1435 } | 1446 } |
1436 | 1447 |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1562 .outline-disclosure li.parent { | 1573 .outline-disclosure li.parent { |
1563 margin-left: -12px | 1574 margin-left: -12px |
1564 } | 1575 } |
1565 | 1576 |
1566 .outline-disclosure li .webkit-html-tag.close { | 1577 .outline-disclosure li .webkit-html-tag.close { |
1567 margin-left: -12px; | 1578 margin-left: -12px; |
1568 } | 1579 } |
1569 | 1580 |
1570 .outline-disclosure li.parent::before { | 1581 .outline-disclosure li.parent::before { |
1571 float: left; | 1582 float: left; |
1572 width: 8px; | 1583 width: 10px; |
1573 padding-right: 2px; | 1584 padding-right: 2px; |
1574 } | 1585 } |
1575 | 1586 |
1576 .outline-disclosure li.parent::before { | 1587 .outline-disclosure li.parent::before { |
1577 -webkit-user-select: none; | 1588 -webkit-user-select: none; |
1578 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); | 1589 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); |
1579 -webkit-mask-size: 320px 144px; | 1590 -webkit-mask-size: 320px 144px; |
1580 content: "a"; | 1591 content: "a"; |
1581 color: transparent; | 1592 color: transparent; |
1582 text-shadow: none; | 1593 text-shadow: none; |
1583 position: relative; | 1594 position: relative; |
1584 top: 2px; | 1595 top: 2px; |
1585 margin-right: 1px; | 1596 margin-right: 1px; |
1586 height: 12px; | 1597 height: 12px; |
1587 } | 1598 } |
1588 | 1599 |
1589 @media (-webkit-min-device-pixel-ratio: 1.5) { | 1600 @media (-webkit-min-device-pixel-ratio: 1.5) { |
1590 .outline-disclosure li.parent::before { | 1601 .outline-disclosure li.parent::before { |
1591 -webkit-mask-image: url(Images/statusbarButtonGlyphs2x.png); | 1602 -webkit-mask-image: url(Images/statusbarButtonGlyphs_2x.png); |
1592 } | 1603 } |
1593 } /* media */ | 1604 } /* media */ |
1594 | 1605 |
1595 .outline-disclosure li.parent::before { | 1606 .outline-disclosure li.parent::before { |
1596 -webkit-mask-position: -4px -96px; | 1607 -webkit-mask-position: -4px -96px; |
1597 background-color: rgb(110, 110, 110); | 1608 background-color: rgb(110, 110, 110); |
1598 } | 1609 } |
1599 | 1610 |
1600 .outline-disclosure li.parent.expanded::before { | 1611 .outline-disclosure li.parent.expanded::before { |
1601 -webkit-mask-position: -20px -96px; | 1612 -webkit-mask-position: -20px -96px; |
1602 } | 1613 } |
1603 | 1614 |
1604 .outline-disclosure ol.children { | 1615 .outline-disclosure ol.children { |
1605 display: none; | 1616 display: none; |
1606 } | 1617 } |
1607 | 1618 |
1608 .outline-disclosure ol.children.expanded { | 1619 .outline-disclosure ol.children.expanded { |
1609 display: block; | 1620 display: block; |
1610 } | 1621 } |
1611 | 1622 |
1612 .placard { | 1623 .placard { |
1613 position: relative; | 1624 position: relative; |
1614 border-top: 1px solid transparent; | 1625 border-top: 1px solid transparent; |
1615 padding: 3px 8px 4px 18px; | 1626 padding: 3px 8px 4px 18px; |
1616 min-height: 18px; | 1627 min-height: 18px; |
1617 white-space: nowrap; | 1628 white-space: nowrap; |
1618 } | 1629 } |
1619 | 1630 |
1620 .placard.grouped { | |
1621 padding-left: 36px; | |
1622 } | |
1623 | |
1624 .placard:nth-of-type(2n) { | 1631 .placard:nth-of-type(2n) { |
1625 background-color: rgb(234, 243, 255); | 1632 background-color: rgb(234, 243, 255); |
1626 } | 1633 } |
1627 | 1634 |
1628 .placard.selected { | 1635 .placard.selected { |
1629 border-top: 1px solid rgb(172, 172, 172); | 1636 border-top: 1px solid rgb(172, 172, 172); |
1630 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
82, 182, 182)), to(rgb(162, 162, 162))); | 1637 background-image: linear-gradient(to bottom, rgb(182, 182, 182), rgb(162, 16
2, 162)); |
1631 background-origin: padding-box; | 1638 background-origin: padding-box; |
1632 background-clip: padding-box; | 1639 background-clip: padding-box; |
1633 } | 1640 } |
1634 | 1641 |
1635 :focus .placard.selected { | 1642 :focus .placard.selected { |
1636 border-top: 1px solid rgb(70, 103, 215); | 1643 border-top: 1px solid rgb(70, 103, 215); |
1637 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(9
2, 147, 213)), to(rgb(56, 121, 217))); | 1644 background-image: linear-gradient(to bottom, rgb(92, 147, 213), rgb(56, 121,
217)); |
1638 } | 1645 } |
1639 | 1646 |
1640 .placard .title { | 1647 .placard .title { |
1641 font-weight: normal; | 1648 font-weight: normal; |
1642 word-wrap: break-word; | 1649 word-wrap: break-word; |
1643 white-space: normal; | 1650 white-space: normal; |
1644 } | 1651 } |
1645 | 1652 |
1646 .placard.selected .title { | 1653 .placard.selected .title { |
1647 color: white; | 1654 color: white; |
(...skipping 10 matching lines...) Expand all Loading... |
1658 } | 1665 } |
1659 | 1666 |
1660 .placard.selected .subtitle { | 1667 .placard.selected .subtitle { |
1661 color: rgba(255, 255, 255, 0.7); | 1668 color: rgba(255, 255, 255, 0.7); |
1662 } | 1669 } |
1663 | 1670 |
1664 .placard .subtitle a { | 1671 .placard .subtitle a { |
1665 color: inherit; | 1672 color: inherit; |
1666 } | 1673 } |
1667 | 1674 |
| 1675 .placard-label { |
| 1676 text-align: center; |
| 1677 } |
| 1678 |
| 1679 .placard-label .title, |
| 1680 .placard-label .subtitle { |
| 1681 font-style: italic; |
| 1682 font-weight: bold; |
| 1683 color: #999; |
| 1684 } |
| 1685 |
1668 .section { | 1686 .section { |
1669 position: relative; | 1687 position: relative; |
1670 margin-top: 1px; | 1688 margin-top: 1px; |
1671 } | 1689 } |
1672 | 1690 |
1673 .events-pane .section { | 1691 .events-pane .section { |
1674 margin: 0; | 1692 margin: 0; |
1675 } | 1693 } |
1676 .events-pane .section:not(:nth-of-type(1)) { | 1694 .events-pane .section:not(:nth-of-type(1)) { |
1677 border-top: 1px solid rgb(231, 231, 231); | 1695 border-top: 1px solid rgb(231, 231, 231); |
1678 } | 1696 } |
1679 | 1697 |
1680 .section > .header { | 1698 .section > .header { |
1681 padding: 0 8px 0 5px; | 1699 padding: 0px 8px 0 5px; |
1682 min-height: 18px; | 1700 min-height: 18px; |
1683 white-space: nowrap; | 1701 white-space: nowrap; |
1684 background-origin: padding-box; | 1702 background-origin: padding-box; |
1685 background-clip: padding-box; | 1703 background-clip: padding-box; |
1686 } | 1704 } |
1687 | 1705 |
1688 .section > .header::before { | 1706 .section > .header::before { |
1689 -webkit-user-select: none; | 1707 -webkit-user-select: none; |
1690 background-image: url(Images/statusbarButtonGlyphs.png); | 1708 background-image: url(Images/statusbarButtonGlyphs.png); |
1691 background-size: 320px 144px; | 1709 background-size: 320px 144px; |
1692 opacity: 0.5; | 1710 opacity: 0.5; |
1693 content: "a"; | 1711 content: "a"; |
1694 color: transparent; | 1712 color: transparent; |
1695 text-shadow: none; | 1713 text-shadow: none; |
1696 float: left; | 1714 float: left; |
1697 width: 8px; | 1715 width: 8px; |
1698 margin-right: 4px; | 1716 margin-right: 4px; |
1699 margin-top: 2px; | 1717 margin-top: 2px; |
1700 } | 1718 } |
1701 | 1719 |
1702 @media (-webkit-min-device-pixel-ratio: 1.5) { | 1720 @media (-webkit-min-device-pixel-ratio: 1.5) { |
1703 .section > .header::before { | 1721 .section > .header::before { |
1704 background-image: url(Images/statusbarButtonGlyphs2x.png); | 1722 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
1705 } | 1723 } |
1706 } /* media */ | 1724 } /* media */ |
1707 | 1725 |
1708 .section > .header::before { | 1726 .section > .header::before { |
1709 background-position: -4px -96px; | 1727 background-position: -4px -96px; |
1710 } | 1728 } |
1711 | 1729 |
1712 .section.expanded > .header::before { | 1730 .section.expanded > .header::before { |
1713 background-position: -20px -96px; | 1731 background-position: -20px -96px; |
1714 } | 1732 } |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1809 .properties-calculate-value-button:hover { | 1827 .properties-calculate-value-button:hover { |
1810 text-decoration: underline; | 1828 text-decoration: underline; |
1811 } | 1829 } |
1812 | 1830 |
1813 .properties-accessor-property-name { | 1831 .properties-accessor-property-name { |
1814 font-style: italic; | 1832 font-style: italic; |
1815 } | 1833 } |
1816 | 1834 |
1817 @media (-webkit-min-device-pixel-ratio: 1.5) { | 1835 @media (-webkit-min-device-pixel-ratio: 1.5) { |
1818 .properties-tree li.parent::before { | 1836 .properties-tree li.parent::before { |
1819 background-image: url(Images/statusbarButtonGlyphs2x.png); | 1837 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
1820 } | 1838 } |
1821 } /* media */ | 1839 } /* media */ |
1822 | 1840 |
1823 .properties-tree li.parent::before { | 1841 .properties-tree li.parent::before { |
1824 background-position: -4px -96px; | 1842 background-position: -4px -96px; |
1825 } | 1843 } |
1826 | 1844 |
1827 .properties-tree li.parent.expanded::before { | 1845 .properties-tree li.parent.expanded::before { |
1828 background-position: -20px -96px; | 1846 background-position: -20px -96px; |
1829 } | 1847 } |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1879 .section .properties li.editing { | 1897 .section .properties li.editing { |
1880 margin-left: 10px; | 1898 margin-left: 10px; |
1881 text-overflow: clip; | 1899 text-overflow: clip; |
1882 } | 1900 } |
1883 | 1901 |
1884 li.editing .swatch, li.editing .enabled-button, | 1902 li.editing .swatch, li.editing .enabled-button, |
1885 li.editing-sub-part .delete-button { | 1903 li.editing-sub-part .delete-button { |
1886 display: none !important; | 1904 display: none !important; |
1887 } | 1905 } |
1888 | 1906 |
| 1907 .sidebar-tabbed-pane .watch-expressions { |
| 1908 margin-top: 17px; |
| 1909 } |
| 1910 |
1889 .properties-tree.watch-expressions { | 1911 .properties-tree.watch-expressions { |
1890 padding-left: 0 !important; | 1912 padding-left: 0 !important; |
1891 } | 1913 } |
1892 | 1914 |
1893 .properties-tree.watch-expressions > li { | 1915 .properties-tree.watch-expressions > li { |
1894 padding-left: 4px; | 1916 padding-left: 4px; |
1895 } | 1917 } |
1896 | 1918 |
1897 .properties-tree.watch-expressions > li > .value { | 1919 .properties-tree.watch-expressions > li > .value { |
1898 display: inline; | 1920 display: inline; |
1899 position: static; | 1921 position: static; |
1900 } | 1922 } |
1901 | 1923 |
1902 .properties-tree.watch-expressions > li:not(.parent) { | 1924 .properties-tree.watch-expressions > li:not(.parent) { |
1903 margin-left: 1px; | 1925 margin-left: 1px; |
1904 padding-left: 15px; | 1926 padding-left: 15px; |
1905 } | 1927 } |
1906 | 1928 |
1907 .properties-tree.watch-expressions > li.hovered { | 1929 .properties-tree.watch-expressions > li.hovered { |
1908 padding-right: 14px; | 1930 padding-right: 14px; |
1909 } | 1931 } |
1910 | 1932 |
1911 .watch-expressions > li.editing-sub-part .text-prompt { | 1933 .watch-expressions > li.editing-sub-part .text-prompt { |
1912 display: block; | 1934 display: block; |
1913 width: 100%; | 1935 width: 100%; |
| 1936 overflow: hidden; |
1914 } | 1937 } |
1915 | 1938 |
1916 .watch-expressions > li.editing-sub-part .value, | 1939 .watch-expressions > li.editing-sub-part .value, |
1917 .watch-expressions > li.editing-sub-part .separator { | 1940 .watch-expressions > li.editing-sub-part .separator { |
1918 display: none; | 1941 display: none; |
1919 } | 1942 } |
1920 | 1943 |
1921 .section .properties li.editing-sub-part { | 1944 .section .properties li.editing-sub-part { |
1922 padding: 3px 6px 8px 18px; | 1945 padding: 3px 6px 8px 18px; |
1923 margin: -3px -6px -8px -6px; | 1946 margin: -3px -6px -8px -6px; |
1924 text-overflow: clip; | 1947 text-overflow: clip; |
1925 } | 1948 } |
1926 | 1949 |
1927 .section .properties .delete-button { | 1950 .section .properties .delete-button { |
1928 width: 10px; | 1951 width: 10px; |
1929 height: 10px; | 1952 height: 10px; |
1930 background-image: url(Images/deleteIcon.png); | 1953 background-image: url(Images/deleteIcon.png); |
1931 background-position: 0 0; | 1954 background-position: 0 0; |
1932 background-color: transparent; | 1955 background-color: transparent; |
1933 background-repeat: no-repeat; | 1956 background-repeat: no-repeat; |
1934 border: 0 none transparent; | 1957 border: 0 none transparent; |
1935 position: absolute; | 1958 position: absolute; |
1936 right: 8px; | 1959 right: 8px; |
1937 display: none; | 1960 display: none; |
1938 } | 1961 } |
1939 | 1962 |
1940 .sidebar-tabbed-pane .watch-expressions li:first-child .delete-button { | |
1941 right: 55px; | |
1942 top: 3px; | |
1943 } | |
1944 | |
1945 .section .properties li.hovered .delete-button { | 1963 .section .properties li.hovered .delete-button { |
1946 display: inline; | 1964 display: inline; |
1947 } | 1965 } |
1948 | 1966 |
1949 .section .properties .name, | 1967 .section .properties .name, |
1950 .event-properties .name, | 1968 .event-properties .name, |
1951 .console-formatted-object .name { | 1969 .console-formatted-object .name { |
1952 color: rgb(136, 19, 145); | 1970 color: rgb(136, 19, 145); |
1953 } | 1971 } |
1954 | 1972 |
(...skipping 16 matching lines...) Expand all Loading... |
1971 } | 1989 } |
1972 | 1990 |
1973 .section .properties .color, | 1991 .section .properties .color, |
1974 .event-properties .color { | 1992 .event-properties .color { |
1975 color: rgb(118, 15, 21); | 1993 color: rgb(118, 15, 21); |
1976 } | 1994 } |
1977 | 1995 |
1978 .swatch { | 1996 .swatch { |
1979 margin-left: 1px; | 1997 margin-left: 1px; |
1980 margin-right: 2px; | 1998 margin-right: 2px; |
1981 width: 1em; | 1999 width: 10px; |
1982 height: 1em; | 2000 height: 10px; |
1983 position: relative; | 2001 position: relative; |
1984 top: 1px; | 2002 top: 1px; |
1985 display: inline-block; | 2003 display: inline-block; |
1986 background-image: url(Images/checker.png); | 2004 background-image: url(Images/checker.png); |
1987 -webkit-user-select: none; | 2005 -webkit-user-select: none; |
1988 } | 2006 } |
1989 | 2007 |
1990 .swatch-inner { | 2008 .swatch-inner { |
1991 width: 100%; | 2009 width: 100%; |
1992 height: 100%; | 2010 height: 100%; |
1993 display: inline-block; | 2011 display: inline-block; |
1994 border: 1px solid rgba(128, 128, 128, 0.6); | 2012 border: 1px solid rgba(128, 128, 128, 0.6); |
1995 } | 2013 } |
1996 | 2014 |
1997 .swatch-inner:hover { | 2015 .swatch-inner:hover { |
1998 border: 1px solid rgba(64, 64, 64, 0.8); | 2016 border: 1px solid rgba(64, 64, 64, 0.8); |
1999 } | 2017 } |
2000 | 2018 |
2001 .sidebar { | 2019 .sidebar { |
2002 overflow-x: hidden; | 2020 overflow-x: hidden; |
2003 background-color: rgb(214, 221, 229); | |
2004 } | |
2005 | |
2006 body.inactive .sidebar { | |
2007 background-color: rgb(232, 232, 232); | 2021 background-color: rgb(232, 232, 232); |
2008 } | 2022 } |
2009 | 2023 |
2010 .pane-title-button { | 2024 .pane-title-button { |
2011 color: rgb(6, 6, 6); | 2025 color: rgb(6, 6, 6); |
2012 background-color: transparent; | 2026 background-color: transparent; |
2013 border: 1px solid rgb(165, 165, 165); | 2027 border: 1px solid rgb(165, 165, 165); |
2014 background-color: rgb(237, 237, 237); | 2028 background-color: rgb(237, 237, 237); |
2015 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
52, 252, 252)), to(rgb(223, 223, 223))); | 2029 background-image: linear-gradient(to bottom, rgb(252, 252, 252), rgb(223, 22
3, 223)); |
2016 border-radius: 12px; | 2030 border-radius: 12px; |
2017 -webkit-appearance: none; | 2031 -webkit-appearance: none; |
2018 } | 2032 } |
2019 | 2033 |
2020 .pane-title-button:active { | 2034 .pane-title-button:active { |
2021 background-color: rgb(215, 215, 215); | 2035 background-color: rgb(215, 215, 215); |
2022 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
94, 194, 194)), to(rgb(239, 239, 239))); | 2036 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); |
2023 } | 2037 } |
2024 | 2038 |
2025 button.show-all-nodes { | 2039 button.show-all-nodes { |
2026 font-size: 13px; | 2040 font-size: 13px; |
2027 margin: 0; | 2041 margin: 0; |
2028 padding: 0 20px; | 2042 padding: 0 20px; |
2029 height: 20px; | 2043 height: 20px; |
2030 color: rgb(6, 6, 6); | 2044 color: rgb(6, 6, 6); |
2031 background-color: transparent; | 2045 background-color: transparent; |
2032 border: 1px solid rgb(165, 165, 165); | 2046 border: 1px solid rgb(165, 165, 165); |
2033 background-color: rgb(237, 237, 237); | 2047 background-color: rgb(237, 237, 237); |
2034 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
52, 252, 252)), to(rgb(223, 223, 223))); | 2048 background-image: linear-gradient(to bottom, rgb(252, 252, 252), rgb(223, 22
3, 223)); |
2035 border-radius: 12px; | 2049 border-radius: 12px; |
2036 -webkit-appearance: none; | 2050 -webkit-appearance: none; |
2037 } | 2051 } |
2038 | 2052 |
2039 body.inactive button.show-all-nodes { | 2053 body.inactive button.show-all-nodes { |
2040 color: rgb(130, 130, 130); | 2054 color: rgb(130, 130, 130); |
2041 border-color: rgb(212, 212, 212); | 2055 border-color: rgb(212, 212, 212); |
2042 background-color: rgb(239, 239, 239); | 2056 background-color: rgb(239, 239, 239); |
2043 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2
50, 250, 250)), to(rgb(235, 235, 235))); | 2057 background-image: linear-gradient(to bottom, rgb(250, 250, 250), rgb(235, 23
5, 235)); |
2044 } | 2058 } |
2045 | 2059 |
2046 button.show-all-nodes:active { | 2060 button.show-all-nodes:active { |
2047 background-color: rgb(215, 215, 215); | 2061 background-color: rgb(215, 215, 215); |
2048 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
94, 194, 194)), to(rgb(239, 239, 239))); | 2062 background-image: linear-gradient(to bottom, rgb(194, 194, 194), rgb(239, 23
9, 239)); |
2049 } | |
2050 | |
2051 button.enable-toggle-status-bar-item .glyph { | |
2052 -webkit-mask-position: -192px 0; | |
2053 } | |
2054 | |
2055 button.enable-toggle-status-bar-item.toggled-on .glyph { | |
2056 -webkit-mask-position: -96px -24px; | |
2057 } | 2063 } |
2058 | 2064 |
2059 #console-messages.console-filter-top { | 2065 #console-messages.console-filter-top { |
2060 margin-top: 23px; | 2066 margin-top: 23px; |
2061 } | 2067 } |
2062 | 2068 |
2063 .scope-bar { | 2069 .scope-bar { |
2064 line-height: 19px; | 2070 line-height: 19px; |
2065 padding-right: 10px; | 2071 padding-right: 10px; |
2066 overflow: hidden; | 2072 overflow: hidden; |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2208 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); | 2214 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); |
2209 -webkit-mask-size: 320px 144px; | 2215 -webkit-mask-size: 320px 144px; |
2210 -webkit-appearance: none; | 2216 -webkit-appearance: none; |
2211 background-color: rgba(0, 0, 0, 0.75); | 2217 background-color: rgba(0, 0, 0, 0.75); |
2212 position: relative; | 2218 position: relative; |
2213 top: 10px; | 2219 top: 10px; |
2214 } | 2220 } |
2215 | 2221 |
2216 @media (-webkit-min-device-pixel-ratio: 1.5) { | 2222 @media (-webkit-min-device-pixel-ratio: 1.5) { |
2217 .sidebar-tree-item .disclosure-button { | 2223 .sidebar-tree-item .disclosure-button { |
2218 -webkit-mask-image: url(Images/statusbarButtonGlyphs2x.png); | 2224 -webkit-mask-image: url(Images/statusbarButtonGlyphs_2x.png); |
2219 } | 2225 } |
2220 } /* media */ | 2226 } /* media */ |
2221 | 2227 |
2222 .sidebar-tree.hide-disclosure-buttons .sidebar-tree-item .disclosure-button { | 2228 .sidebar-tree.hide-disclosure-buttons .sidebar-tree-item .disclosure-button { |
2223 display: none; | 2229 display: none; |
2224 } | 2230 } |
2225 | 2231 |
2226 .sidebar-tree-item .disclosure-button { | 2232 .sidebar-tree-item .disclosure-button { |
2227 -webkit-mask-position: -4px -96px; | 2233 -webkit-mask-position: -4px -96px; |
2228 } | 2234 } |
(...skipping 13 matching lines...) Expand all Loading... |
2242 } | 2248 } |
2243 | 2249 |
2244 .sidebar-tree-item .icon { | 2250 .sidebar-tree-item .icon { |
2245 float: left; | 2251 float: left; |
2246 width: 32px; | 2252 width: 32px; |
2247 height: 32px; | 2253 height: 32px; |
2248 margin-top: 1px; | 2254 margin-top: 1px; |
2249 margin-right: 3px; | 2255 margin-right: 3px; |
2250 } | 2256 } |
2251 | 2257 |
| 2258 .sidebar-tree-item.wait .icon { |
| 2259 content: none; |
| 2260 } |
| 2261 |
| 2262 .spinner-icon::before, |
| 2263 .sidebar-tree-item.wait .icon::before { |
| 2264 display: block; |
| 2265 width: 24px; |
| 2266 height: 24px; |
| 2267 margin: 4px; |
| 2268 border: 3px solid grey; |
| 2269 border-radius: 12px; |
| 2270 clip: rect(0px, 15px, 15px, 0px); |
| 2271 content: ""; |
| 2272 position: absolute; |
| 2273 -webkit-animation: spinner-animation 1s linear infinite; |
| 2274 } |
| 2275 |
| 2276 .spinner-icon.small::before, |
| 2277 .sidebar-tree-item.wait.small .icon::before { |
| 2278 width: 14px; |
| 2279 height: 14px; |
| 2280 margin: 1px; |
| 2281 clip: rect(0px, 9px, 9px, 0px); |
| 2282 border-width: 2px; |
| 2283 } |
| 2284 |
| 2285 .sidebar-tree-item.wait.selected .icon::before { |
| 2286 border-color: white; |
| 2287 } |
| 2288 |
| 2289 @-webkit-keyframes spinner-animation { |
| 2290 from { -webkit-transform: rotate(0); } |
| 2291 to { -webkit-transform: rotate(360deg); } |
| 2292 } |
| 2293 |
2252 li .status { | 2294 li .status { |
2253 float: right; | 2295 float: right; |
2254 height: 16px; | 2296 height: 16px; |
2255 margin-top: 9px; | 2297 margin-top: 9px; |
2256 margin-left: 4px; | 2298 margin-left: 4px; |
2257 line-height: 1em; | 2299 line-height: 1em; |
2258 } | 2300 } |
2259 | 2301 |
2260 li .status:empty { | 2302 li .status:empty { |
2261 display: none; | 2303 display: none; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2326 | 2368 |
2327 :focus .sidebar-tree-item.selected { | 2369 :focus .sidebar-tree-item.selected { |
2328 background-color: rgb(56, 121, 217); | 2370 background-color: rgb(56, 121, 217); |
2329 } | 2371 } |
2330 | 2372 |
2331 body.inactive .sidebar-tree-item.selected { | 2373 body.inactive .sidebar-tree-item.selected { |
2332 background-color: rgb(180,180,180); | 2374 background-color: rgb(180,180,180); |
2333 } | 2375 } |
2334 | 2376 |
2335 .sidebar-tree-item .titles { | 2377 .sidebar-tree-item .titles { |
| 2378 display: flex; |
| 2379 flex-direction: column; |
2336 position: relative; | 2380 position: relative; |
2337 top: 5px; | 2381 top: 5px; |
2338 line-height: 12px; | 2382 line-height: 12px; |
2339 padding-bottom: 1px; | 2383 padding-bottom: 1px; |
2340 text-overflow: ellipsis; | 2384 text-overflow: ellipsis; |
2341 overflow: hidden; | 2385 overflow: hidden; |
2342 white-space: nowrap; | 2386 white-space: nowrap; |
2343 } | 2387 } |
2344 | 2388 |
| 2389 .titles > .title-container { |
| 2390 display: flex; |
| 2391 } |
| 2392 |
2345 .sidebar-tree-item .titles.no-subtitle { | 2393 .sidebar-tree-item .titles.no-subtitle { |
2346 top: 10px; | 2394 top: 10px; |
2347 } | 2395 } |
2348 | 2396 |
2349 .sidebar-tree.small .sidebar-tree-item .titles, | 2397 .sidebar-tree.small .sidebar-tree-item .titles, |
2350 .sidebar-tree .children.small .sidebar-tree-item .titles, | 2398 .sidebar-tree .children.small .sidebar-tree-item .titles, |
2351 .sidebar-tree-item.small .titles { | 2399 .sidebar-tree-item.small .titles { |
2352 top: 2px; | 2400 top: 2px; |
2353 line-height: normal; | 2401 line-height: normal; |
2354 } | 2402 } |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2482 bottom: 0; | 2530 bottom: 0; |
2483 left: 0; | 2531 left: 0; |
2484 right: 0; | 2532 right: 0; |
2485 } | 2533 } |
2486 | 2534 |
2487 .source-frame-eval-expression { | 2535 .source-frame-eval-expression { |
2488 outline: 1px solid rgb(163, 41, 34); | 2536 outline: 1px solid rgb(163, 41, 34); |
2489 background-color: rgb(255, 255, 194); | 2537 background-color: rgb(255, 255, 194); |
2490 } | 2538 } |
2491 | 2539 |
2492 .source-frame-stepin-mark { | |
2493 cursor: pointer; | |
2494 text-decoration: underline; | |
2495 } | |
2496 | |
2497 .source-frame-stepin-mark-highlighted { | |
2498 font-weight: 800; | |
2499 cursor: pointer; | |
2500 text-decoration: underline; | |
2501 } | |
2502 | |
2503 .workers-list { | 2540 .workers-list { |
2504 list-style: none; | 2541 list-style: none; |
2505 margin: 0; | 2542 margin: 0; |
2506 padding: 0; | 2543 padding: 0; |
2507 } | 2544 } |
2508 | 2545 |
2509 .resource-content-unavailable { | 2546 .resource-content-unavailable { |
2510 color: rgb(50%, 50%, 50%); | 2547 color: rgb(50%, 50%, 50%); |
2511 font-style: italic; | 2548 font-style: italic; |
2512 font-size: 14px; | 2549 font-size: 14px; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2597 .soft-context-menu-item-mouse-over { | 2634 .soft-context-menu-item-mouse-over { |
2598 border-top: 1px solid rgb(56, 121, 217); | 2635 border-top: 1px solid rgb(56, 121, 217); |
2599 border-bottom: 1px solid rgb(56, 121, 217); | 2636 border-bottom: 1px solid rgb(56, 121, 217); |
2600 background-color: rgb(56, 121, 217); | 2637 background-color: rgb(56, 121, 217); |
2601 color: white; | 2638 color: white; |
2602 } | 2639 } |
2603 | 2640 |
2604 body.platform-mac .soft-context-menu-item-mouse-over { | 2641 body.platform-mac .soft-context-menu-item-mouse-over { |
2605 border-top: 1px solid rgb(90, 131, 236); | 2642 border-top: 1px solid rgb(90, 131, 236); |
2606 border-bottom: 1px solid rgb(18, 88, 233); | 2643 border-bottom: 1px solid rgb(18, 88, 233); |
2607 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1
00, 140, 243)), to(rgb(36, 101, 243))); | 2644 background-image: linear-gradient(to bottom, rgb(100, 140, 243), rgb(36, 101
, 243)); |
2608 } | 2645 } |
2609 | 2646 |
2610 .soft-context-menu-item-checkmark { | 2647 .soft-context-menu-item-checkmark { |
2611 color: rgb(108, 108, 108); | 2648 color: rgb(108, 108, 108); |
2612 pointer-events: none; | 2649 pointer-events: none; |
2613 } | 2650 } |
2614 | 2651 |
2615 .soft-context-menu-item-submenu-arrow { | 2652 .soft-context-menu-item-submenu-arrow { |
2616 color: #222; | 2653 color: #222; |
2617 float: right; | 2654 float: right; |
2618 pointer-events: none; | 2655 pointer-events: none; |
2619 } | 2656 } |
2620 | 2657 |
2621 .soft-context-menu-item-mouse-over .soft-context-menu-item-checkmark { | 2658 .soft-context-menu-item-mouse-over .soft-context-menu-item-checkmark { |
2622 color: white; | 2659 color: white; |
2623 } | 2660 } |
2624 | 2661 |
2625 .search-view { | 2662 .search-view { |
2626 position: absolute; | 2663 position: absolute; |
2627 top: 0; | 2664 top: 0; |
2628 bottom: 0; | 2665 bottom: 0; |
2629 left: 0; | 2666 left: 0; |
2630 right: 0; | 2667 right: 0; |
2631 } | 2668 } |
2632 | 2669 |
2633 .search-drawer-header { | 2670 .search-drawer-header { |
2634 flex: none; | 2671 flex: none; |
2635 padding: 4px; | 2672 padding: 4px; |
| 2673 display: flex; |
2636 } | 2674 } |
2637 | 2675 |
2638 .search-drawer-header input[type="text"].search-config-search { | 2676 .search-drawer-header input[type="text"].search-config-search { |
2639 -webkit-appearance: none; | 2677 -webkit-appearance: none; |
2640 padding: 0 2px; | 2678 padding: 0 3px; |
2641 margin: 0; | 2679 margin: 0; |
2642 border: 1px solid rgb(163, 163, 163); | 2680 border: 1px solid rgb(163, 163, 163); |
2643 height: 20px; | 2681 height: 20px; |
2644 border-radius: 2px; | 2682 border-radius: 2px; |
2645 color: #303030; | 2683 color: #303030; |
2646 } | 2684 } |
2647 | 2685 |
2648 .search-drawer-header input[type="search"].search-config-search:focus { | 2686 .search-drawer-header input[type="search"].search-config-search:focus { |
2649 border: 1px solid rgb(190, 190, 190); | 2687 border: 1px solid rgb(190, 190, 190); |
2650 outline: none; | 2688 outline: none; |
2651 } | 2689 } |
2652 | 2690 |
2653 body.platform-mac .search-drawer-header input[type="search"].search-config-searc
h { | 2691 body.platform-mac .search-drawer-header input[type="search"].search-config-searc
h { |
2654 top: 1px; | 2692 top: 1px; |
2655 } | 2693 } |
2656 | 2694 |
2657 .search-drawer-header label.search-config-label { | 2695 .search-drawer-header label.search-config-label { |
| 2696 margin: auto 0; |
2658 margin-left: 8px; | 2697 margin-left: 8px; |
2659 color: #303030; | 2698 color: #303030; |
2660 } | 2699 display: flex; |
2661 | |
2662 .search-drawer-header input[type="checkbox"].search-config-checkbox { | |
2663 vertical-align: bottom; | |
2664 } | |
2665 | |
2666 body:not(.platform-mac) .search-drawer-header input[type="checkbox"].search-conf
ig-checkbox { | |
2667 margin-bottom: 5px; | |
2668 } | |
2669 | |
2670 body.platform-mac .search-drawer-header input[type="checkbox"].search-config-che
ckbox { | |
2671 margin-bottom: 4px; | |
2672 } | 2700 } |
2673 | 2701 |
2674 #bottom-status-bar-container { | 2702 #bottom-status-bar-container { |
2675 -webkit-flex: 1 1 0; | 2703 -webkit-flex: 1 1 0; |
2676 width: 0; | 2704 width: 0; |
2677 overflow: hidden; | 2705 overflow: hidden; |
2678 } | 2706 } |
2679 | 2707 |
2680 .search-status-bar-summary { | 2708 .search-status-bar-summary { |
2681 background-color: rgb(236, 236, 236); | 2709 background-color: rgb(236, 236, 236); |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2719 | 2747 |
2720 #search-results-pane-file-based ol.children.expanded { | 2748 #search-results-pane-file-based ol.children.expanded { |
2721 display: block; | 2749 display: block; |
2722 } | 2750 } |
2723 | 2751 |
2724 #search-results-pane-file-based li.parent::before { | 2752 #search-results-pane-file-based li.parent::before { |
2725 -webkit-user-select: none; | 2753 -webkit-user-select: none; |
2726 background-image: url(Images/statusbarButtonGlyphs.png); | 2754 background-image: url(Images/statusbarButtonGlyphs.png); |
2727 background-size: 320px 144px; | 2755 background-size: 320px 144px; |
2728 opacity: 0.5; | 2756 opacity: 0.5; |
2729 width: 8px; | 2757 width: 12px; |
2730 content: "a"; | 2758 content: "a"; |
2731 color: transparent; | 2759 color: transparent; |
2732 margin-left: -5px; | 2760 margin-left: -5px; |
2733 padding-right: 4px; | 2761 padding-right: 4px; |
| 2762 display: inline-block; |
2734 } | 2763 } |
2735 | 2764 |
2736 @media (-webkit-min-device-pixel-ratio: 1.5) { | 2765 @media (-webkit-min-device-pixel-ratio: 1.5) { |
2737 #search-results-pane-file-based li.parent::before { | 2766 #search-results-pane-file-based li.parent::before { |
2738 background-image: url(Images/statusbarButtonGlyphs2x.png); | 2767 background-image: url(Images/statusbarButtonGlyphs_2x.png); |
2739 } | 2768 } |
2740 } /* media */ | 2769 } /* media */ |
2741 | 2770 |
2742 #search-results-pane-file-based li.parent::before { | 2771 #search-results-pane-file-based li.parent::before { |
2743 background-position: -4px -96px; | 2772 background-position: -4px -96px; |
2744 } | 2773 } |
2745 | 2774 |
2746 #search-results-pane-file-based li.parent.expanded::before { | 2775 #search-results-pane-file-based li.parent.expanded::before { |
2747 background-position: -20px -96px; | 2776 background-position: -20px -96px; |
2748 } | 2777 } |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2973 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:increment
{ | 3002 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:increment
{ |
2974 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0; | 3003 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0; |
2975 border-color: transparent; | 3004 border-color: transparent; |
2976 border-width: 0 0 11px 0; | 3005 border-width: 0 0 11px 0; |
2977 } | 3006 } |
2978 | 3007 |
2979 .console-context { | 3008 .console-context { |
2980 max-width: 200px; | 3009 max-width: 200px; |
2981 } | 3010 } |
2982 | 3011 |
2983 .inspector-view { | 3012 .root-view { |
2984 overflow: hidden; | 3013 overflow: hidden; |
| 3014 position: absolute !important; |
| 3015 left: 0; |
| 3016 top: 0; |
2985 } | 3017 } |
2986 | 3018 |
2987 .inspector-footer.status-bar { | 3019 .search-bar { |
2988 flex: 0 0 auto; | 3020 flex: 0 0 23px; |
2989 background-color: rgb(236, 236, 236); | 3021 background-color: rgb(236, 236, 236); |
2990 height: auto; | 3022 } |
| 3023 |
| 3024 .search-bar.replaceable { |
| 3025 flex: 0 0 44px; |
2991 } | 3026 } |
2992 | 3027 |
2993 .progress-bar-container { | 3028 .progress-bar-container { |
2994 display: inline-flex; | 3029 display: inline-flex; |
2995 margin: 0 8px; | 3030 margin: 0 8px; |
2996 -webkit-flex: 1 0; | 3031 -webkit-flex: 1 0; |
2997 } | 3032 } |
2998 | 3033 |
2999 .progress-bar-container span { | 3034 .progress-bar-container span { |
3000 padding: 6px; | 3035 padding: 6px; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3033 float: right; | 3068 float: right; |
3034 padding-right: 4px; | 3069 padding-right: 4px; |
3035 padding-top: 4px; | 3070 padding-top: 4px; |
3036 padding-left: 2px; | 3071 padding-left: 2px; |
3037 } | 3072 } |
3038 | 3073 |
3039 body.undocked .toolbar-close-button-item { | 3074 body.undocked .toolbar-close-button-item { |
3040 display: none; | 3075 display: none; |
3041 } | 3076 } |
3042 | 3077 |
3043 body.dock-to-bottom #inspector-split-view > .split-view-resizer { | 3078 .root-view > .split-view > .split-view-sidebar { |
3044 display: none; | 3079 position: relative; |
| 3080 } |
| 3081 |
| 3082 select.drop-down-menu { |
| 3083 border: none; |
| 3084 -webkit-appearance: none; |
3045 } | 3085 } |
3046 | 3086 |
3047 /* inspectorCommon.css */ | 3087 /* inspectorCommon.css */ |
3048 | 3088 |
3049 html { | 3089 html { |
3050 height: 100%; | 3090 height: 100%; |
3051 } | 3091 } |
3052 | 3092 |
3053 body { | 3093 body { |
3054 cursor: default; | 3094 cursor: default; |
3055 position: absolute; | 3095 position: relative; |
3056 top: 0; | 3096 height: 100%; |
3057 bottom: 0; | 3097 width: 100%; |
3058 left: 0; | |
3059 right: 0; | |
3060 overflow: hidden; | 3098 overflow: hidden; |
3061 font-family: Lucida Grande, sans-serif; | 3099 font-family: Lucida Grande, sans-serif; |
3062 font-size: 12px; | 3100 font-size: 12px; |
3063 margin: 0; | 3101 margin: 0; |
3064 tab-size: 4; | 3102 tab-size: 4; |
3065 -webkit-user-select: none; | 3103 -webkit-user-select: none; |
3066 color: #222; | 3104 color: #222; |
3067 } | 3105 } |
3068 | 3106 |
3069 body.platform-linux { | 3107 body.platform-linux { |
3070 color: rgb(48, 57, 66); | 3108 color: rgb(48, 57, 66); |
3071 font-family: Ubuntu, Arial, sans-serif; | 3109 font-family: Ubuntu, Arial, sans-serif; |
3072 } | 3110 } |
3073 | 3111 |
3074 body.platform-mac { | 3112 body.platform-mac { |
3075 color: rgb(48, 57, 66); | 3113 color: rgb(48, 57, 66); |
3076 font-family: 'Lucida Grande', sans-serif; | 3114 font-family: 'Lucida Grande', sans-serif; |
3077 } | 3115 } |
3078 | 3116 |
3079 body.platform-windows { | 3117 body.platform-windows { |
3080 font-family: 'Segoe UI', Tahoma, sans-serif; | 3118 font-family: 'Segoe UI', Tahoma, sans-serif; |
3081 } | 3119 } |
3082 | 3120 |
3083 * { | 3121 *, *::before, *::after { |
3084 box-sizing: border-box; | 3122 box-sizing: border-box; |
3085 } | 3123 } |
3086 | 3124 |
3087 :focus { | 3125 :focus { |
3088 outline: none; | 3126 outline: none; |
3089 } | 3127 } |
3090 | 3128 |
3091 img { | 3129 img { |
3092 -webkit-user-drag: none; | 3130 -webkit-user-drag: none; |
3093 } | 3131 } |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3237 margin-left: -3px; | 3275 margin-left: -3px; |
3238 margin-right: -2px; | 3276 margin-right: -2px; |
3239 } | 3277 } |
3240 | 3278 |
3241 /* Network timing is shared between popover and network item view pane */ | 3279 /* Network timing is shared between popover and network item view pane */ |
3242 | 3280 |
3243 .network-timing-table td { | 3281 .network-timing-table td { |
3244 padding: 0; | 3282 padding: 0; |
3245 } | 3283 } |
3246 | 3284 |
| 3285 .network-timing-table td.caution { |
| 3286 font-weight: bold; |
| 3287 color: rgb(255, 128, 0); |
| 3288 padding: 2px 0; |
| 3289 } |
| 3290 |
3247 .network-timing-row { | 3291 .network-timing-row { |
3248 position: relative; | 3292 position: relative; |
3249 height: 16px; | 3293 height: 16px; |
3250 } | 3294 } |
3251 | 3295 |
3252 .network-timing-bar { | 3296 .network-timing-bar { |
3253 position: absolute; | 3297 position: absolute; |
3254 background-color: red; | 3298 background-color: red; |
3255 border-left: 1px solid red; | 3299 border-left: 1px solid red; |
3256 opacity: 0.4; | 3300 opacity: 0.4; |
(...skipping 23 matching lines...) Expand all Loading... |
3280 white-space: nowrap; | 3324 white-space: nowrap; |
3281 text-overflow: ellipsis; | 3325 text-overflow: ellipsis; |
3282 overflow: hidden; | 3326 overflow: hidden; |
3283 line-height: 16px; | 3327 line-height: 16px; |
3284 } | 3328 } |
3285 | 3329 |
3286 .sidebar-label { | 3330 .sidebar-label { |
3287 font-size: 11px; | 3331 font-size: 11px; |
3288 } | 3332 } |
3289 | 3333 |
| 3334 .pie-chart { |
| 3335 position: relative; |
| 3336 } |
| 3337 |
| 3338 .pie-chart-foreground { |
| 3339 position: absolute; |
| 3340 width: 100%; |
| 3341 height: 100%; |
| 3342 text-align: center; |
| 3343 z-index: 10; |
| 3344 top: 0; |
| 3345 } |
3290 | 3346 |
3291 /* inspectorSyntaxHighlight.css */ | 3347 /* inspectorSyntaxHighlight.css */ |
3292 | 3348 |
3293 /* | 3349 /* |
3294 * Copyright (C) 2009 Apple Inc. All rights reserved. | 3350 * Copyright (C) 2009 Apple Inc. All rights reserved. |
3295 * | 3351 * |
3296 * Redistribution and use in source and binary forms, with or without | 3352 * Redistribution and use in source and binary forms, with or without |
3297 * modification, are permitted provided that the following conditions | 3353 * modification, are permitted provided that the following conditions |
3298 * are met: | 3354 * are met: |
3299 * | 3355 * |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3384 color: rgb(26, 26, 166); | 3440 color: rgb(26, 26, 166); |
3385 unicode-bidi: -webkit-isolate; | 3441 unicode-bidi: -webkit-isolate; |
3386 } | 3442 } |
3387 | 3443 |
3388 .webkit-html-external-link, | 3444 .webkit-html-external-link, |
3389 .webkit-html-resource-link { | 3445 .webkit-html-resource-link { |
3390 /* Keep this in sync with view-source.css (.webkit-html-external-link, .webk
it-html-resource-link) */ | 3446 /* Keep this in sync with view-source.css (.webkit-html-external-link, .webk
it-html-resource-link) */ |
3391 color: #00e; | 3447 color: #00e; |
3392 } | 3448 } |
3393 | 3449 |
| 3450 .webkit-html-resource-link { |
| 3451 /* Required for consistency with view-source.css, since anchors may not have
href attributes */ |
| 3452 text-decoration: underline; |
| 3453 cursor: pointer; |
| 3454 } |
| 3455 |
3394 .webkit-html-external-link { | 3456 .webkit-html-external-link { |
3395 /* Keep this in sync with view-source.css (.webkit-html-external-link) */ | 3457 /* Keep this in sync with view-source.css (.webkit-html-external-link) */ |
3396 text-decoration: none; | 3458 text-decoration: none; |
3397 } | 3459 } |
3398 | 3460 |
3399 .webkit-html-external-link:hover { | 3461 .webkit-html-external-link:hover { |
3400 /* Keep this in sync with view-source.css (.webkit-html-external-link:hover)
*/ | 3462 /* Keep this in sync with view-source.css (.webkit-html-external-link:hover)
*/ |
3401 text-decoration: underline; | 3463 text-decoration: underline; |
3402 } | 3464 } |
3403 | 3465 |
3404 .webkit-html-end-of-file { | 3466 .webkit-html-end-of-file { |
3405 /* Keep this in sync with view-source.css (.webkit-html-end-of-file) */ | 3467 /* Keep this in sync with view-source.css (.webkit-html-end-of-file) */ |
3406 color: rgb(255, 0, 0); | 3468 color: rgb(255, 0, 0); |
3407 font-weight: bold; | 3469 font-weight: bold; |
3408 } | 3470 } |
3409 | 3471 |
3410 /* popover.css */ | 3472 /* popover.css */ |
3411 | 3473 |
3412 .popover { | 3474 .popover { |
3413 position: absolute; | 3475 position: absolute; |
3414 -webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25; | 3476 -webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25; |
3415 border-width: 25px; | 3477 border-width: 25px; |
3416 z-index: 100; | 3478 z-index: 600; |
3417 pointer-events: none; | 3479 pointer-events: none; |
3418 } | 3480 } |
3419 | 3481 |
3420 .popover .content { | 3482 .popover .content { |
3421 position: absolute; | 3483 position: absolute; |
3422 top: 0; | 3484 top: 0; |
3423 bottom: 0; | 3485 bottom: 0; |
3424 left: 0; | 3486 left: 0; |
3425 right: 0; | 3487 right: 0; |
3426 pointer-events: auto; | 3488 pointer-events: auto; |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3498 .popover.right-bottom-arrow .arrow { | 3560 .popover.right-bottom-arrow .arrow { |
3499 right: 0; | 3561 right: 0; |
3500 left: auto; | 3562 left: auto; |
3501 top: auto; | 3563 top: auto; |
3502 bottom: 0; | 3564 bottom: 0; |
3503 margin-bottom: 15px; | 3565 margin-bottom: 15px; |
3504 margin-right: -25px; | 3566 margin-right: -25px; |
3505 background-position: 0 -57px; | 3567 background-position: 0 -57px; |
3506 } | 3568 } |
3507 | 3569 |
OLD | NEW |