Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: chrome_linux/resources/inspector/inspector.css

Issue 85333005: Update reference builds to Chrome 32.0.1700.19 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/reference_builds/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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;
(...skipping 29 matching lines...) Expand all
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: -webkit-gradient(linear, left top, left bottom, from(rgb(1 94, 194, 194)), to(rgb(239, 239, 239)));
47 } 47 }
48 48
49 49
50 /* tabbedPane.css */
51
52 /*
53 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
54 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
55 * Copyright (C) 2011 Google Inc. All rights reserved.
56 *
57 * Redistribution and use in source and binary forms, with or without
58 * modification, are permitted provided that the following conditions are
59 * met:
60 *
61 * 1. Redistributions of source code must retain the above copyright
62 * notice, this list of conditions and the following disclaimer.
63 *
64 * 2. Redistributions in binary form must reproduce the above
65 * copyright notice, this list of conditions and the following disclaimer
66 * in the documentation and/or other materials provided with the
67 * distribution.
68 *
69 * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. AND ITS CONTRIBUTORS
70 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
71 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
72 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC.
73 * OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
74 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
75 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
76 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
77 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
80 */
81
82 .tabbed-pane {
83 flex: auto;
84 }
85
86 .tabbed-pane-content {
87 position: relative;
88 overflow: auto;
89 flex: auto;
90 display: flex;
91 }
92
93 .tabbed-pane-content.has-no-tabs {
94 background-color: lightgray;
95 }
96
97 .tabbed-pane-header {
98 flex: 0 0 23px;
99 border-bottom: 1px solid rgb(163, 163, 163);
100 overflow: hidden;
101 width: 100%;
102 }
103
104 .tabbed-pane-header-contents {
105 margin: 0 10px;
106 }
107
108 .tabbed-pane-header-tabs {
109 float: left;
110 }
111
112 .tabbed-pane-header-tab {
113 float: left;
114 margin-top: 2px;
115 padding: 2px 4px 2px 4px;
116 height: 21px;
117 border: 1px solid transparent;
118 border-bottom: none;
119 line-height: 15px;
120
121 white-space: nowrap;
122 text-overflow: ellipsis;
123 overflow: hidden;
124 }
125
126 .tabbed-pane-header-tab.measuring {
127 visibility: hidden;
128 }
129
130 .tabbed-pane-header-tab.selected {
131 border: 1px solid rgb(163, 163, 163);
132 border-bottom: none;
133 }
134
135 .tabbed-pane-header-tab.selected {
136 background: white;
137 border-top-color: #bbb;
138 }
139
140 .tabbed-pane-header-tab .close-button-gray {
141 position: relative;
142 top: 2px;
143 left: 1px;
144 margin-left: 2px;
145 margin-top: -3px;
146 visibility: hidden;
147 }
148
149 .tabbed-pane-header-tab:hover .close-button-gray,
150 .tabbed-pane-header-tab.selected .close-button-gray {
151 visibility: visible;
152 }
153
154 .tabbed-pane-header-tabs-drop-down-container {
155 float: left;
156 position: relative;
157 vertical-align: bottom;
158 padding-left: 3px;
159 line-height: 20px;
160 }
161
162 .tabbed-pane-header-tabs-drop-down-container.measuring {
163 visibility: hidden;
164 }
165
166 .tabbed-pane-header-tabs-drop-down {
167 position: relative;
168 opacity: 0.7;
169 color: rgb(30, 30, 30);
170 font-size: 133%;
171 padding: 0 3px;
172 }
173
174 .tabbed-pane-header-tabs-drop-down:hover {
175 opacity: 1.0;
176 }
177
178 .tabbed-pane-header-tabs-drop-down:active {
179 opacity: 0.8;
180 }
181
182 select.tabbed-pane-header-tabs-drop-down-select {
183 position: absolute;
184 top: 0;
185 right: 0;
186 bottom: 0;
187 left: 0;
188 opacity: 0;
189 border: none;
190 margin: 0;
191 font-size: 75%;
192 -webkit-appearance: none;
193 width: 20px;
194 }
195
50 /* inspector.css */ 196 /* inspector.css */
51 197
52 /* 198 /*
53 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 199 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
54 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 200 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
55 * 201 *
56 * Redistribution and use in source and binary forms, with or without 202 * Redistribution and use in source and binary forms, with or without
57 * modification, are permitted provided that the following conditions 203 * modification, are permitted provided that the following conditions
58 * are met: 204 * are met:
59 * 205 *
(...skipping 24 matching lines...) Expand all
84 } 230 }
85 231
86 .fill { 232 .fill {
87 position: absolute; 233 position: absolute;
88 top: 0; 234 top: 0;
89 left: 0; 235 left: 0;
90 right: 0; 236 right: 0;
91 bottom: 0; 237 bottom: 0;
92 } 238 }
93 239
240 .hbox {
241 display: flex !important;
242 flex-direction: row;
243 }
244
245 .vbox {
246 display: flex !important;
247 flex-direction: column;
248 }
249
94 .inline-block { 250 .inline-block {
95 display: inline-block; 251 display: inline-block;
96 } 252 }
97 253
98 .hidden { 254 .hidden {
99 display: none; 255 display: none !important;
100 } 256 }
101 257
102 .nowrap { 258 .nowrap,
259 .nowrap-below,
260 .nowrap-below div,
261 .nowrap-below span {
103 white-space: nowrap !important; 262 white-space: nowrap !important;
104 } 263 }
105 264
106 #toolbar { 265 .toolbar-background {
107 position: absolute;
108 top: 0;
109 left: 0;
110 right: 0;
111 height: 26px;
112 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 91, 191, 191)), to(rgb(151, 151, 151))); 266 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 91, 191, 191)), to(rgb(151, 151, 151)));
113 padding-top: 1px; 267 padding: 1px 0 0 1px;
114 padding-left: 5px;
115 border-bottom: 1px solid rgb(80, 80, 80); 268 border-bottom: 1px solid rgb(80, 80, 80);
116 -webkit-flex-direction: row;
117 background-origin: padding-box; 269 background-origin: padding-box;
118 background-clip: padding-box; 270 background-clip: padding-box;
119 } 271 }
120 272
273 .toolbar {
274 flex: 0 0 25px;
275 display: flex;
276 flex-direction: row;
277 position: relative;
278 }
279
280 .toolbar .tabbed-pane-header {
281 border: none;
282 }
283
284 .toolbar .tabbed-pane-header-contents {
285 margin: 0;
286 }
287
288 .toolbar .tabbed-pane-header-tab {
289 border-width: 0 2px 0 2px;
290 background: none;
291 padding-right: 3px;
292 }
293
294 .toolbar .tabbed-pane-header-tab.selected {
295 border-width: 0 2px 0 2px;
296 -webkit-border-image: url(Images/toolbarItemSelected.png) 0 2 0 2;
297 }
298
299 .toolbar button.status-bar-item {
300 border: none;
301 margin: 0 -2px;
302 }
303
121 button, 304 button,
122 input, 305 input,
123 select { 306 select {
124 font-family: inherit; 307 font-family: inherit;
125 font-size: inherit; 308 font-size: inherit;
126 } 309 }
127 310
128 body.inactive #toolbar { 311 body.inactive .toolbar-background {
129 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 33, 233, 233)), to(rgb(207, 207, 207))); 312 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 33, 233, 233)), to(rgb(207, 207, 207)));
130 border-bottom: 1px solid rgb(64%, 64%, 64%); 313 border-bottom: 1px solid rgb(64%, 64%, 64%);
131 } 314 }
132 315
133 body.dock-to-bottom #toolbar { 316 body.dock-to-bottom .toolbar-background {
134 padding-top: 0; 317 padding-top: 0;
135 border-top: 1px solid rgb(100, 100, 100); 318 border-top: 1px solid rgb(100, 100, 100);
136 cursor: default; 319 cursor: default;
137 } 320 }
138 321
139 body.dock-to-bottom.platform-mac #toolbar { 322 body.dock-to-bottom.platform-mac .toolbar-background {
140 border-top-color: white; 323 border-top-color: white;
141 } 324 }
142 325
143 body.dock-to-bottom.inactive #toolbar { 326 body.dock-to-bottom.inactive .toolbar-background {
144 border-top: 1px solid rgb(64%, 64%, 64%); 327 border-top: 1px solid rgb(64%, 64%, 64%);
145 } 328 }
146 329
147 body.platform-windows #toolbar, 330 body.platform-windows .toolbar-background,
148 body.platform-windows.inactive #toolbar { 331 body.platform-windows.inactive .toolbar-background {
149 background-image: none; 332 background-image: none;
150 } 333 }
151 334
152 body.undocked.platform-mac-leopard #toolbar { 335 body.undocked.platform-mac-leopard .toolbar-background {
153 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 75, 175, 175)), to(rgb(151, 151, 151))) !important; 336 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 75, 175, 175)), to(rgb(151, 151, 151))) !important;
154 } 337 }
155 338
156 body.undocked.platform-mac-leopard.inactive #toolbar { 339 body.undocked.platform-mac-leopard.inactive .toolbar-background {
157 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 21, 221, 221)), to(rgb(207, 207, 207))) !important; 340 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 21, 221, 221)), to(rgb(207, 207, 207))) !important;
158 } 341 }
159 342
160 body.undocked.platform-mac-snowleopard #toolbar { 343 body.undocked.platform-mac-snowleopard .toolbar-background {
161 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 89, 189, 189)), to(rgb(167, 167, 167))) !important; 344 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 89, 189, 189)), to(rgb(167, 167, 167))) !important;
162 } 345 }
163 346
164 body.undocked.platform-mac-snowleopard.inactive #toolbar { 347 body.undocked.platform-mac-snowleopard.inactive .toolbar-background {
165 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 28, 228, 228)), to(rgb(216, 216, 216))) !important; 348 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 28, 228, 228)), to(rgb(216, 216, 216))) !important;
166 } 349 }
167 350
168 body.undocked.platform-mac-mountain-lion #toolbar { 351 body.undocked.platform-mac-mountain-lion .toolbar-background {
169 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 08, 208, 208)), to(rgb(200, 200, 200))) !important; 352 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 08, 208, 208)), to(rgb(200, 200, 200))) !important;
170 } 353 }
171 354
172 body.undocked.platform-mac-mountain-lion.inactive #toolbar { 355 body.undocked.platform-mac-mountain-lion.inactive .toolbar-background {
173 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 38, 238, 238)), to(rgb(224, 224, 224))) !important; 356 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 38, 238, 238)), to(rgb(224, 224, 224))) !important;
174 } 357 }
175 358
176 .toolbar-item { 359 .toolbar > .tabbed-pane-header {
177 display: inline-block; 360 flex: auto;
178 float: left;
179 margin: 0;
180 padding-right: 6px;
181 background-color: transparent;
182 border-style: none;
183 border-color: transparent;
184 color: inherit;
185 } 361 }
186 362
187 .toolbar-item { 363 .toolbar-controls-left {
188 height: 24px; 364 flex: none;
365 opacity: 0.8;
366 padding-top: 1px;
189 } 367 }
190 368
191 .toolbar-item.toggleable.toggled-on { 369 .toolbar-controls-right {
192 border-width: 0 2px 0 2px; 370 flex: none;
193 padding-left: 4px; 371 margin-right: 2px;
194 padding-right: 4px; 372 padding-top: 1px;
195 -webkit-border-image: url(Images/toolbarItemSelected.png) 0 2 0 2;
196 } 373 }
197 374
198 .toolbar-label { 375 .toolbar-controls-right #error-warning-count,
199 line-height: 22px; 376 .toolbar-controls-right .console-status-bar-item,
200 text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0; 377 .toolbar-controls-right .settings-status-bar-item,
201 display: inline; 378 .toolbar-controls-right .dock-status-bar-item
202 } 379 {
203 380 opacity: 0.8;
204 .toolbar-item.toggleable .close-button {
205 margin-left: 2px;
206 margin-right: -2px;
207 position: relative;
208 top: 2px;
209 opacity: 0.5;
210 }
211
212 .toolbar-item.toggleable .close-button:hover {
213 opacity: 1;
214 }
215
216 #toolbar-dropdown .toolbar-items-separator {
217 border-bottom: 1px solid #aaa;
218 width: 100%;
219 margin: 5px 0;
220 }
221
222 .toolbar-item.toggleable:active .toolbar-label {
223 text-shadow: none;
224 }
225
226 body.dock-to-bottom #search-toolbar-label {
227 display: none;
228 }
229
230 #toolbar-controls {
231 float: right;
232 display: -webkit-flex;
233 -webkit-align-items: center;
234 height: 100%;
235 }
236
237 #toolbar-dropdown-arrow {
238 font-size: 14px;
239 font-weight: bold;
240 border: 0;
241 background-color: transparent;
242 border-radius: 5px;
243 text-shadow: none;
244 cursor: default;
245 margin: 0;
246 /* A line height of 0 allows precise text positioning using padding. */
247 line-height: 0;
248 padding: 11px 6px 11px;
249 }
250
251 #toolbar-dropdown-arrow.dropdown-visible {
252 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba( 251, 251, 251, 0.9)), to(rgba(231, 231, 231, 0.9)));
253 }
254
255 #toolbar-dropdown-arrow:hover {
256 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba( 191, 191, 191, 0.7)), to(rgba(171, 171, 171, 0.5)));
257 }
258
259 #toolbar-dropdown-arrow:active {
260 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba( 111, 111, 111, 0.8)), to(rgba(91, 91, 91, 0.8)));
261 }
262
263 #toolbar-dropdown {
264 position: absolute;
265 z-index: 1000;
266 box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
267 border: 1px solid rgb(128, 128, 128);
268 background-color: inherit;
269 background-image: inherit;
270 }
271
272 body.undocked.platform-mac-leopard #toolbar-dropdown,
273 body.undocked.platform-mac-snowleopard #toolbar-dropdown {
274 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 91, 191, 191)), to(rgb(151, 151, 151)));
275 }
276
277 #toolbar-dropdown .scrollable-content {
278 display: -webkit-flex;
279 -webkit-flex-direction: column;
280 -webkit-align-items: flex-start;
281 padding-right: 0;
282 }
283
284 #toolbar-dropdown .toolbar-item {
285 display: -webkit-flex;
286 -webkit-flex-direction: row;
287 -webkit-flex: none;
288 width: 100%;
289 border: 1px solid rgba(0, 0, 0, 0);
290 }
291
292 #toolbar-dropdown .toolbar-item.toggleable.toggled-on {
293 border: 1px solid rgba(100, 100, 120, 0.4);
294 -webkit-border-image: none;
295 background: -webkit-gradient(linear, left top, left bottom, from(rgba(128, 1 28, 128, 0.6)), to(rgba(128, 128, 128, 0.6)), color-stop(20%, rgba(158, 158, 158 , 0.2)), color-stop(80%, rgba(158, 158, 158, 0.2)));
296 }
297
298 #toolbar-dropdown .toolbar-item.toggleable:hover {
299 background: -webkit-gradient(linear, left top, left bottom, from(rgba(128, 1 28, 128, 0.6)), to(rgba(128, 128, 128, 0.3)), color-stop(20%, rgba(158, 158, 158 , 0.2)), color-stop(80%, rgba(158, 158, 158, 0.1)));
300 }
301
302 #toolbar-dropdown .toolbar-label {
303 line-height: 22px;
304 top: 0;
305 }
306
307 #toolbar-panels-menu {
308 border: 0;
309 border-radius: 5px;
310 cursor: default;
311 font-family: Arial, Helvetica, sans-serif !important;
312 font-weight: bold;
313 line-height: 16px;
314 height: 22px;
315 padding: 0 4px 0 4px;
316 margin: 1px 3px;
317 }
318
319 #toolbar-panels-menu:hover:not(.disabled) {
320 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba( 191, 191, 191, 0.7)), to(rgba(171, 171, 171, 0.5)));
321 }
322
323 #toolbar-panels-menu.disabled {
324 opacity: 0.4;
325 text-shadow: white 1px 1px 0;
326 }
327
328 #toolbar-panels-menu:active:not(.disabled) {
329 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba( 111, 111, 111, 0.8)), to(rgba(91, 91, 91, 0.8)));
330 } 381 }
331 382
332 .scrollable-content { 383 .scrollable-content {
333 position: static; 384 position: static;
334 height: 100%; 385 height: 100%;
335 overflow-y: auto; 386 overflow-y: auto;
336 width: 100%; 387 width: 100%;
337 margin-right: 12px; 388 margin-right: 12px;
338 padding-right: 3px; 389 padding-right: 3px;
339 } 390 }
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 561
511 .close-button-gray:hover { 562 .close-button-gray:hover {
512 background-position: -143px -216px; 563 background-position: -143px -216px;
513 } 564 }
514 565
515 .close-button-gray:active { 566 .close-button-gray:active {
516 background-position: -160px -216px; 567 background-position: -160px -216px;
517 } 568 }
518 569
519 570
520 .close-left { 571 body.undocked .toolbar-item .close-button {
521 float: left;
522 }
523
524 body.undocked .toolbar-item.close-left, body.undocked .toolbar-item.close-right {
525 display: none; 572 display: none;
526 } 573 }
527 574
528 body.platform-mac .toolbar-item.close-right { 575 body.remote .toolbar-item .close-button {
529 display: none; 576 display: none;
530 } 577 }
531 578
532 body.remote .toolbar-item.close-left, body.remote .toolbar-item.close-right { 579 .panel-status-bar {
533 display: none; 580 border-top: none;
534 } 581 display: flex;
535 582 pointer-events: none;
536 body:not(.platform-mac) .toolbar-item.close-left {
537 display: none;
538 }
539
540 .toolbar-item.close-left,
541 .toolbar-item.close-right {
542 display: -webkit-flex;
543 -webkit-align-items: center;
544 height: 100%;
545 cursor: default;
546 }
547
548 #root {
549 position: absolute;
550 top: 0;
551 left: 0;
552 right: 0;
553 bottom: 0;
554 }
555
556 #main {
557 position: absolute;
558 z-index: 1;
559 top: 26px;
560 left: 0;
561 right: 0;
562 bottom: 0;
563 overflow: hidden;
564 background-color: white; 583 background-color: white;
565 } 584 flex: 0 0 23px;
566 585 position: relative;
567 #main-panels {
568 position: absolute;
569 top: 0;
570 left: 0;
571 right: 0;
572 bottom: 23px;
573 overflow: hidden;
574 }
575
576 body.drawer-visible #main-panels {
577 bottom: 24px;
578 }
579
580 #main-status-bar {
581 position: absolute;
582 bottom: 0;
583 left: 0;
584 right: 0;
585 } 586 }
586 587
587 .status-bar { 588 .status-bar {
588 position: relative; 589 position: relative;
589 white-space: nowrap; 590 white-space: nowrap;
590 height: 23px; 591 height: 23px;
591 overflow: hidden; 592 overflow: hidden;
592 width: 100%; 593 width: 100%;
593 z-index: 12; 594 z-index: 12;
594 background-image: -webkit-linear-gradient(rgb(243,243,243), rgb(235,235,235) );
595 border-top: 1px solid rgb(202, 202, 202); 595 border-top: 1px solid rgb(202, 202, 202);
596 display: -webkit-flex; 596 display: -webkit-flex;
597 } 597 }
598 598
599 .status-bar > div { 599 .status-bar > div {
600 display: inline-block; 600 display: inline-block;
601 vertical-align: top; 601 vertical-align: top;
602 overflow: visible; 602 overflow: visible;
603 } 603 }
604 604
605 .status-bar-item { 605 .status-bar-item {
606 display: inline-block; 606 display: inline-block;
607 pointer-events: auto; 607 pointer-events: auto;
608 cursor: default; 608 cursor: default;
609 height: 22px; 609 height: 22px;
610 padding: 0; 610 padding: 0;
611 margin-left: -1px; 611 margin-left: -1px;
612 margin-right: 0; 612 margin-right: 0;
613 vertical-align: top; 613 vertical-align: top;
614 border: 0 transparent none; 614 border: 0 transparent none;
615 background-color: transparent; 615 background-color: transparent;
616 flex: none;
616 } 617 }
617 618
618 .status-bar-text { 619 .status-bar-text {
619 padding-left: 5px; 620 padding-left: 5px;
620 padding-right: 15px; 621 padding-right: 15px;
621 padding-top: 3px; 622 padding-top: 3px;
622 } 623 }
623 624
624 #floating-status-bar-container {
625 position: absolute;
626 left: 0;
627 right: 0;
628 bottom: 0;
629 display: none;
630 border-bottom: 1px solid rgb(202, 202, 202);
631 cursor: ns-resize;
632 height: 24px;
633 }
634
635 body.drawer-overlay #floating-status-bar-container {
636 box-shadow: 1px 1px 5px 2px rgba(128, 128, 128, 0.7);
637 }
638
639 body.drawer-visible #floating-status-bar-container {
640 display: -webkit-flex;
641 }
642
643 #floating-status-bar-resizer {
644 content: url(Images/statusbarResizerVertical.png);
645 margin-top: 7px;
646 pointer-events: none;
647 height: 8px;
648 }
649
650 #panel-status-bar {
651 -webkit-flex: 1 0;
652 display: -webkit-flex;
653 pointer-events: none;
654 }
655
656 #drawer-view-anchor { 625 #drawer-view-anchor {
657 display: inline-block; 626 display: inline-block;
658 } 627 }
659 628
660 .status-bar-item:active { 629 .status-bar-item:active {
661 position: relative; 630 position: relative;
662 z-index: 200; 631 z-index: 200;
663 } 632 }
664 633
665 .glyph { 634 .glyph {
(...skipping 29 matching lines...) Expand all
695 664
696 .long-click-glyph.shadow { 665 .long-click-glyph.shadow {
697 top: 1px; 666 top: 1px;
698 background-color: white !important; 667 background-color: white !important;
699 z-index: 0; 668 z-index: 0;
700 } 669 }
701 670
702 button.status-bar-item { 671 button.status-bar-item {
703 position: relative; 672 position: relative;
704 width: 32px; 673 width: 32px;
705 border-left: 1px solid rgb(202, 202, 202);
706 border-right: 1px solid rgb(202, 202, 202);
707 } 674 }
708 675
709 .status-bar button.status-bar-item .glyph { 676 .status-bar button.status-bar-item .glyph {
710 margin: 0 -1px; 677 margin: 0 -1px;
711 } 678 }
712 679
713 .status-bar select.status-bar-item:active,
714 .status-bar button.status-bar-item:active {
715 border-left: 1px solid rgb(120, 120, 120);
716 border-right: 1px solid rgb(120, 120, 120);
717 }
718
719 button.status-bar-item .glyph.shadow { 680 button.status-bar-item .glyph.shadow {
720 background-color: rgba(255, 255, 255, 0.33) !important; 681 background-color: rgba(255, 255, 255, 0.33) !important;
721 } 682 }
722 683
723 button.status-bar-item.toggled-on .glyph { 684 button.status-bar-item.toggled-on .glyph {
724 background-color: rgb(66, 129, 235); 685 background-color: rgb(66, 129, 235);
725 } 686 }
726 687
688 button.status-bar-item:hover .glyph {
689 opacity: 1;
690 }
691
727 button.status-bar-item:disabled { 692 button.status-bar-item:disabled {
728 opacity: 0.5;
729 background-position: 0 0 !important; 693 background-position: 0 0 !important;
730 } 694 }
731 695
696 button.status-bar-item:disabled .glyph {
697 opacity: 0.5 !important;
698 }
699
732 button.status-bar-item.extension { 700 button.status-bar-item.extension {
733 background-image: none; 701 background-image: none;
734 } 702 }
735 703
736 .status-bar-select-container { 704 .status-bar-select-container {
737 display: inline-block; 705 display: inline-block;
738 } 706 }
739 707
740 .status-bar-select-arrow { 708 .status-bar-select-arrow {
741 background-image: url(Images/statusbarButtonGlyphs.png); 709 background-image: url(Images/statusbarButtonGlyphs.png);
(...skipping 21 matching lines...) Expand all
763 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; 731 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
764 -webkit-appearance: none; 732 -webkit-appearance: none;
765 border: 0; 733 border: 0;
766 border-radius: 0; 734 border-radius: 0;
767 padding: 0 15px 0 5px; 735 padding: 0 15px 0 5px;
768 margin-right: -10px; 736 margin-right: -10px;
769 position: relative; 737 position: relative;
770 line-height: 20px; 738 line-height: 20px;
771 } 739 }
772 740
773 select.status-bar-item,
774 select.status-bar-item:hover {
775 border-left: 1px solid rgb(202, 202, 202);
776 border-right: 1px solid rgb(202, 202, 202);
777 }
778
779 .status-bar-item > .glyph { 741 .status-bar-item > .glyph {
780 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); 742 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png);
781 -webkit-mask-size: 320px 120px; 743 -webkit-mask-size: 320px 120px;
744 opacity: 0.8;
782 } 745 }
783 746
784 .console-filter > .glyph { 747 .console-filter > .glyph {
785 -webkit-mask-position: -32px -48px; 748 -webkit-mask-position: -32px -48px;
786 } 749 }
787 750
788 @media (-webkit-min-device-pixel-ratio: 1.5) { 751 @media (-webkit-min-device-pixel-ratio: 1.5) {
789 .status-bar-item > .glyph { 752 .status-bar-item > .glyph {
790 -webkit-mask-image: url(Images/statusbarButtonGlyphs2x.png); 753 -webkit-mask-image: url(Images/statusbarButtonGlyphs2x.png);
791 } 754 }
(...skipping 21 matching lines...) Expand all
813 position: absolute; 776 position: absolute;
814 width: 31px; 777 width: 31px;
815 bottom: -3px; 778 bottom: -3px;
816 background: white; 779 background: white;
817 } 780 }
818 781
819 .alternate-status-bar-buttons-bar .status-bar-item { 782 .alternate-status-bar-buttons-bar .status-bar-item {
820 height: 24px; 783 height: 24px;
821 margin-top: -1px; 784 margin-top: -1px;
822 border: 1px solid rgb(202, 202, 202); 785 border: 1px solid rgb(202, 202, 202);
823 border-bottom: 1px solid transparent;
824 } 786 }
825 787
826 .alternate-status-bar-buttons-bar .status-bar-item.emulate-active { 788 .alternate-status-bar-buttons-bar .status-bar-item.emulate-active {
827 background-color: rgb(163,163,163); 789 background-color: rgb(163,163,163);
828 border: 1px solid rgb(120, 120, 120); 790 border: 1px solid rgb(120, 120, 120);
829 border-bottom: 1px solid transparent;
830 } 791 }
831 792
832 button.status-bar-item.settings-status-bar-item, 793 button.status-bar-item.settings-status-bar-item,
833 button.status-bar-item.settings-status-bar-item:active { 794 button.status-bar-item.settings-status-bar-item:active {
834 border-right: 0 transparent none; 795 border-right: 0 transparent none;
835 } 796 }
836 797
837 button.status-bar-item.left-sidebar-show-hide-button, 798 button.status-bar-item.left-sidebar-show-hide-button,
838 button.status-bar-item.right-sidebar-show-hide-button { 799 button.status-bar-item.right-sidebar-show-hide-button {
839 position: absolute; 800 position: absolute;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 900
940 .green-ball { 901 .green-ball {
941 background-position: -235px -96px; 902 background-position: -235px -96px;
942 } 903 }
943 904
944 .orange-ball { 905 .orange-ball {
945 background-position: -246px -96px; 906 background-position: -246px -96px;
946 } 907 }
947 908
948 #error-warning-count { 909 #error-warning-count {
910 display: inline-block;
949 padding: 4px 6px 6px 0; 911 padding: 4px 6px 6px 0;
950 font-size: 11px; 912 font-size: 11px;
951 height: 19px; 913 height: 19px;
952 cursor: pointer; 914 cursor: pointer;
953 line-height: 14px; 915 line-height: 14px;
954 } 916 }
955 917
956 #error-warning-count:hover { 918 #error-warning-count:hover {
957 border-bottom: 1px solid rgb(96, 96, 96); 919 border-bottom: 1px solid rgb(96, 96, 96);
958 } 920 }
959 921
960 #error-warning-count .error-icon-small, 922 #error-warning-count .error-icon-small,
961 #error-warning-count .warning-icon-small { 923 #error-warning-count .warning-icon-small {
962 vertical-align: -1px; 924 vertical-align: -1px;
963 margin-right: 2px; 925 margin-right: 2px;
964 } 926 }
965 927
966 #error-warning-count .warning-icon-small { 928 #error-warning-count .warning-icon-small {
967 margin-left: 6px; 929 margin-left: 6px;
968 } 930 }
969 931
970 #drawer { 932 .drawer {
971 display: none; 933 display: none;
972 position: absolute; 934 flex: 0 0 200px;
973 bottom: 0; 935 position: relative;
974 left: 0;
975 right: 0;
976 height: 200px;
977 background-color: white; 936 background-color: white;
978 z-index: 1; 937 z-index: 1;
979 } 938 }
980 939
981 #drawer-body {
982 position: absolute;
983 top: 0;
984 bottom: 24px;
985 left: 0;
986 right: 0;
987 }
988
989 #drawer-contents { 940 #drawer-contents {
990 position: absolute; 941 position: absolute;
991 top: 0; 942 top: 0;
992 bottom: 0; 943 bottom: 0;
993 left: 0; 944 left: 0;
994 right: 0; 945 right: 0;
946 display: flex;
947 }
948
949 #drawer-contents > .tabbed-pane > .tabbed-pane-header {
950 background-color: rgb(236, 236, 236);
951 cursor: ns-resize;
952 border-top: 1px solid rgb(124, 124, 124);
953 border-bottom: 1px solid rgb(203, 203, 203);
954 }
955
956 body.inactive #drawer-contents .tabbed-pane-header {
957 border-top: 1px solid rgb(64%, 64%, 64%);
958 }
959
960 #drawer-contents .tabbed-pane-header .tabbed-pane-header-tab {
961 cursor: default;
962 }
963
964 .drawer-resizer {
965 position: absolute;
966 right: 0;
967 top: 8px;
968 content: url(Images/statusbarResizerVertical.png);
969 height: 8px;
970 pointer-events: none;
995 } 971 }
996 972
997 #drawer-footer { 973 #drawer-footer {
998 position: absolute; 974 position: absolute;
999 bottom: 0; 975 bottom: 0;
1000 left: 0; 976 left: 0;
1001 right: 0; 977 right: 0;
1002 font-size: 11px; 978 font-size: 11px;
1003 height: 23px; 979 height: 23px;
980 background-color: rgb(236, 236, 236);
1004 } 981 }
1005 982
1006 body.drawer-visible #drawer { 983 body.drawer-visible .drawer {
1007 display: block; 984 display: block;
1008 } 985 }
1009 986
1010 body.platform-mac .monospace, 987 body.platform-mac .monospace,
1011 body.platform-mac .source-code { 988 body.platform-mac .source-code {
1012 font-size: 11px !important; 989 font-size: 11px !important;
1013 font-family: Menlo, monospace; 990 font-family: Menlo, monospace;
1014 } 991 }
1015 992
1016 body.platform-mac.platform-mac-tiger .monospace, 993 body.platform-mac.platform-mac-tiger .monospace,
1017 body.platform-mac.platform-mac-tiger .source-code { 994 body.platform-mac.platform-mac-tiger .source-code {
1018 font-size: 10px !important; 995 font-size: 10px !important;
1019 font-family: Monaco, monospace; 996 font-family: Monaco, monospace;
1020 } 997 }
1021 998
1022 body.platform-windows .monospace, 999 body.platform-windows .monospace,
1023 body.platform-windows .source-code { 1000 body.platform-windows .source-code {
1024 font-size: 12px !important; 1001 font-size: 12px !important;
1025 font-family: Consolas, Lucida Console, monospace; 1002 font-family: Consolas, Lucida Console, monospace;
1026 } 1003 }
1027 1004
1028 body.platform-linux .monospace, 1005 body.platform-linux .monospace,
1029 body.platform-linux .source-code { 1006 body.platform-linux .source-code {
1030 font-size: 11px !important; 1007 font-size: 11px !important;
1031 font-family: dejavu sans mono, monospace; 1008 font-family: dejavu sans mono, monospace;
1032 } 1009 }
1033 1010
1034 #console-view { 1011 .console-status-bar {
1035 position: absolute; 1012 flex: 0 0 23px;
1036 top: 0; 1013 overflow: hidden;
1037 bottom: 0;
1038 left: 0;
1039 right: 0;
1040 overflow-y: auto;
1041 } 1014 }
1042 1015
1043 #console-messages { 1016 #console-messages {
1044 position: absolute; 1017 flex: 1 1;
1045 z-index: 0;
1046 top: 0;
1047 left: 0;
1048 right: 0;
1049 bottom: 0;
1050 padding: 2px 0; 1018 padding: 2px 0;
1051 overflow-y: overlay; 1019 overflow-y: auto;
1052 word-wrap: break-word; 1020 word-wrap: break-word;
1053 -webkit-user-select: text; 1021 -webkit-user-select: text;
1022 border-top: 1px solid rgb(230, 230, 230);
1054 } 1023 }
1055 1024
1056 #console-prompt { 1025 #console-prompt {
1057 clear: right; 1026 clear: right;
1058 position: relative; 1027 position: relative;
1059 border-top: 1px solid rgb(240, 240, 240);
1060 padding: 1px 22px 1px 0; 1028 padding: 1px 22px 1px 0;
1061 margin-left: 24px; 1029 margin-left: 24px;
1062 min-height: 16px; 1030 min-height: 16px;
1063 white-space: pre-wrap; 1031 white-space: pre-wrap;
1064 -webkit-user-modify: read-write-plaintext-only; 1032 -webkit-user-modify: read-write-plaintext-only;
1065 } 1033 }
1066 1034
1067 #console-prompt::before { 1035 #console-prompt::before {
1068 background-position: -192px -96px; 1036 background-position: -192px -96px;
1069 } 1037 }
1070 1038
1071 .console-user-command-result.console-log-level::before { 1039 .console-user-command-result.console-log-level::before {
1072 background-position: -202px -96px; 1040 background-position: -202px -96px;
1073 } 1041 }
1074 1042
1075 .console-message, 1043 .console-message,
1076 .console-user-command { 1044 .console-user-command {
1077 clear: right; 1045 clear: right;
1078 position: relative; 1046 position: relative;
1079 border-top: 1px solid rgb(240, 240, 240); 1047 border-bottom: 1px solid rgb(240, 240, 240);
1080 padding: 1px 22px 1px 0; 1048 padding: 1px 22px 1px 0;
1081 margin-left: 24px; 1049 margin-left: 24px;
1082 min-height: 16px; 1050 min-height: 16px;
1083 } 1051 }
1084 1052
1085 .console-mesage:first-child { 1053 .console-mesage:first-child {
1086 border-top: none; 1054 border-top: none;
1087 } 1055 }
1088 1056
1089 .console-adjacent-user-command-result { 1057 .console-adjacent-user-command-result {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
1142 color: white; 1110 color: white;
1143 border-radius: 7px; 1111 border-radius: 7px;
1144 } 1112 }
1145 1113
1146 .console-message-text { 1114 .console-message-text {
1147 white-space: pre-wrap; 1115 white-space: pre-wrap;
1148 } 1116 }
1149 1117
1150 .repeated-message.console-error-level::before, 1118 .repeated-message.console-error-level::before,
1151 .repeated-message.console-warning-level:before, 1119 .repeated-message.console-warning-level:before,
1152 .repeated-message.console-debug-level:before { 1120 .repeated-message.console-debug-level:before,
1121 .repeated-message.console-info-level:before {
1153 visibility: hidden; 1122 visibility: hidden;
1154 } 1123 }
1155 1124
1156 .repeated-message .outline-disclosure, 1125 .repeated-message .outline-disclosure,
1157 .repeated-message > .console-message-text { 1126 .repeated-message > .console-message-text {
1158 -webkit-flex: 1; 1127 -webkit-flex: 1;
1159 } 1128 }
1160 1129
1161 .console-info { 1130 .console-info {
1162 color: rgb(128, 128, 128); 1131 color: rgb(128, 128, 128);
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
1226 .console-error-level .section > .header .title { 1195 .console-error-level .section > .header .title {
1227 color: red !important; 1196 color: red !important;
1228 } 1197 }
1229 1198
1230 .console-debug-level .console-message-text { 1199 .console-debug-level .console-message-text {
1231 color: blue; 1200 color: blue;
1232 } 1201 }
1233 1202
1234 .console-error-level::before, 1203 .console-error-level::before,
1235 .console-warning-level::before, 1204 .console-warning-level::before,
1236 .console-debug-level::before { 1205 .console-debug-level::before,
1206 .console-info-level::before {
1237 background-image: url(Images/statusbarButtonGlyphs.png); 1207 background-image: url(Images/statusbarButtonGlyphs.png);
1238 background-size: 320px 120px; 1208 background-size: 320px 120px;
1239 width: 10px; 1209 width: 10px;
1240 height: 10px; 1210 height: 10px;
1241 } 1211 }
1242 1212
1243 @media (-webkit-min-device-pixel-ratio: 1.5) { 1213 @media (-webkit-min-device-pixel-ratio: 1.5) {
1244 .console-error-level::before, 1214 .console-error-level::before,
1245 .console-warning-level::before, 1215 .console-warning-level::before,
1246 .console-debug-level::before { 1216 .console-debug-level::before,
1217 .console-info-level::before {
1247 background-image: url(Images/statusbarButtonGlyphs2x.png); 1218 background-image: url(Images/statusbarButtonGlyphs2x.png);
1248 } 1219 }
1249 } /* media */ 1220 } /* media */
1250 1221
1251 .console-warning-level::before { 1222 .console-warning-level::before {
1252 background-position: -202px -107px; 1223 background-position: -202px -107px;
1253 } 1224 }
1254 1225
1255 .console-error-level::before { 1226 .console-error-level::before {
1256 background-position: -213px -96px; 1227 background-position: -213px -96px;
1257 } 1228 }
1258 1229
1230 .console-info-level::before {
1231 background-position: -213px -107px;
1232 }
1233
1259 .console-user-command .console-message { 1234 .console-user-command .console-message {
1260 margin-left: -24px; 1235 margin-left: -24px;
1261 padding-right: 0; 1236 padding-right: 0;
1262 border-bottom: none; 1237 border-bottom: none;
1263 } 1238 }
1264 1239
1265 .console-user-command::before { 1240 .console-user-command::before {
1266 background-position: -192px -107px; 1241 background-position: -192px -107px;
1267 } 1242 }
1268 1243
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
1433 } 1408 }
1434 1409
1435 .panel { 1410 .panel {
1436 display: none; 1411 display: none;
1437 overflow: hidden; 1412 overflow: hidden;
1438 position: absolute; 1413 position: absolute;
1439 top: 0; 1414 top: 0;
1440 left: 0; 1415 left: 0;
1441 right: 0; 1416 right: 0;
1442 bottom: 0; 1417 bottom: 0;
1418 z-index: 0;
1443 } 1419 }
1444 1420
1445 .panel.visible { 1421 .panel.visible {
1446 display: block; 1422 display: block;
1447 } 1423 }
1448 1424
1425 .panel.extension-panel.visible {
1426 display: flex !important;
1427 flex-direction: column;
1428 }
1429
1430 .extension-view {
1431 flex: auto;
1432 position: relative;
1433 }
1434
1449 iframe.extension { 1435 iframe.extension {
1450 width: 100%; 1436 width: 100%;
1451 height: 100%; 1437 height: 100%;
1452 } 1438 }
1453 1439
1454 iframe.panel.extension { 1440 iframe.panel.extension {
1455 display: block; 1441 display: block;
1456 height: 100%; 1442 height: 100%;
1457 } 1443 }
1458 1444
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
2086 } 2072 }
2087 2073
2088 .scope-bar li:active { 2074 .scope-bar li:active {
2089 background: rgba(0, 0, 0, 0.5); 2075 background: rgba(0, 0, 0, 0.5);
2090 } 2076 }
2091 2077
2092 2078
2093 .console-warning-level.repeated-message, 2079 .console-warning-level.repeated-message,
2094 .console-error-level.repeated-message, 2080 .console-error-level.repeated-message,
2095 .console-log-level.repeated-message, 2081 .console-log-level.repeated-message,
2096 .console-debug-level.repeated-message{ 2082 .console-debug-level.repeated-message,
2083 .console-info-level.repeated-message {
2097 display: -webkit-flex; 2084 display: -webkit-flex;
2098 } 2085 }
2099 2086
2100 .console-user-command-result { 2087 .console-user-command-result {
2101 display: block; 2088 display: block;
2102 } 2089 }
2103 2090
2104 .source-view-frame { 2091 .source-view-frame {
2105 width: 100%; 2092 width: 100%;
2106 height: 100%; 2093 height: 100%;
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
2292 } 2279 }
2293 2280
2294 .sidebar-tree.small .sidebar-tree-item .status, 2281 .sidebar-tree.small .sidebar-tree-item .status,
2295 .sidebar-tree .children.small .sidebar-tree-item .status, 2282 .sidebar-tree .children.small .sidebar-tree-item .status,
2296 .sidebar-tree-item.small .status { 2283 .sidebar-tree-item.small .status {
2297 margin-top: 1px; 2284 margin-top: 1px;
2298 } 2285 }
2299 2286
2300 .sidebar-tree-item.selected { 2287 .sidebar-tree-item.selected {
2301 color: white; 2288 color: white;
2302 border-top: 1px solid rgb(145, 160, 192);
2303 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 62, 177, 207)), to(rgb(120, 138, 177)));
2304 text-shadow: rgba(0, 0, 0, 0.33) 1px 1px 0; 2289 text-shadow: rgba(0, 0, 0, 0.33) 1px 1px 0;
2305 background-origin: padding-box; 2290 background-origin: padding-box;
2306 background-clip: padding-box; 2291 background-clip: padding-box;
2292 background-color: rgb(56, 121, 217);
2307 } 2293 }
2308 2294
2309 :focus .sidebar-tree-item.selected { 2295 :focus .sidebar-tree-item.selected {
2310 border-top: 1px solid rgb(68, 128, 200); 2296 background-color: rgb(56, 121, 217);
2311 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(9 2, 147, 213)), to(rgb(21, 83, 170)));
2312 } 2297 }
2313 2298
2314 body.inactive .sidebar-tree-item.selected { 2299 body.inactive .sidebar-tree-item.selected {
2315 border-top: 1px solid rgb(151, 151, 151); 2300 background-color: rgb(180,180,180);
2316 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 80, 180, 180)), to(rgb(138, 138, 138)));
2317 } 2301 }
2318 2302
2319 .sidebar-tree-item .titles { 2303 .sidebar-tree-item .titles {
2320 position: relative; 2304 position: relative;
2321 top: 5px; 2305 top: 5px;
2322 line-height: 12px; 2306 line-height: 12px;
2323 padding-bottom: 1px; 2307 padding-bottom: 1px;
2324 text-overflow: ellipsis; 2308 text-overflow: ellipsis;
2325 overflow: hidden; 2309 overflow: hidden;
2326 white-space: nowrap; 2310 white-space: nowrap;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
2405 .storage-application-cache-status, 2389 .storage-application-cache-status,
2406 .storage-application-cache-connectivity { 2390 .storage-application-cache-connectivity {
2407 position: relative; 2391 position: relative;
2408 top: 4px; 2392 top: 4px;
2409 } 2393 }
2410 2394
2411 .status-bar-items { 2395 .status-bar-items {
2412 position: absolute; 2396 position: absolute;
2413 top: 0; 2397 top: 0;
2414 bottom: 0; 2398 bottom: 0;
2415 left: 200px; 2399 left: 0;
2416 overflow: hidden; 2400 overflow: hidden;
2417 border-left: 1px solid rgb(184, 184, 184); 2401 border-left: 1px solid rgb(184, 184, 184);
2418 margin-left: -1px; 2402 margin-left: -1px;
2419 } 2403 }
2420 2404
2421 .node-search-status-bar-item .glyph { 2405 .node-search-status-bar-item .glyph {
2422 -webkit-mask-position: -224px -24px; 2406 -webkit-mask-position: -224px -24px;
2423 } 2407 }
2424 2408
2425 .delete-storage-status-bar-item .glyph { 2409 .delete-storage-status-bar-item .glyph {
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
2626 } 2610 }
2627 2611
2628 .search-view { 2612 .search-view {
2629 position: absolute; 2613 position: absolute;
2630 top: 0; 2614 top: 0;
2631 bottom: 0; 2615 bottom: 0;
2632 left: 0; 2616 left: 0;
2633 right: 0; 2617 right: 0;
2634 } 2618 }
2635 2619
2636 .search-drawer-header input[type="search"].search-config-search { 2620 .search-drawer-header {
2637 font-size: 11px; 2621 flex: none;
2638 margin-left: 4px; 2622 padding: 4px;
2623 }
2624
2625 .search-drawer-header input[type="text"].search-config-search {
2626 -webkit-appearance: none;
2627 padding: 0 2px;
2628 margin: 0;
2629 border: 1px solid rgb(163, 163, 163);
2630 height: 20px;
2631 border-radius: 2px;
2639 color: #303030; 2632 color: #303030;
2640 position: relative; 2633 }
2641 height: 19px; 2634
2635 .search-drawer-header input[type="search"].search-config-search:focus {
2636 border: 1px solid rgb(190, 190, 190);
2637 outline: none;
2642 } 2638 }
2643 2639
2644 body.platform-mac .search-drawer-header input[type="search"].search-config-searc h { 2640 body.platform-mac .search-drawer-header input[type="search"].search-config-searc h {
2645 top: 1px; 2641 top: 1px;
2646 } 2642 }
2647 2643
2648 .search-drawer-header label.search-config-label { 2644 .search-drawer-header label.search-config-label {
2649 margin-left: 8px; 2645 margin-left: 8px;
2650 color: #303030; 2646 color: #303030;
2651 } 2647 }
2652 2648
2653 .search-drawer-header input[type="checkbox"].search-config-checkbox { 2649 .search-drawer-header input[type="checkbox"].search-config-checkbox {
2654 vertical-align: bottom; 2650 vertical-align: bottom;
2655 } 2651 }
2656 2652
2657 body:not(.platform-mac) .search-drawer-header input[type="checkbox"].search-conf ig-checkbox { 2653 body:not(.platform-mac) .search-drawer-header input[type="checkbox"].search-conf ig-checkbox {
2658 margin-bottom: 5px; 2654 margin-bottom: 5px;
2659 } 2655 }
2660 2656
2661 body.platform-mac .search-drawer-header input[type="checkbox"].search-config-che ckbox { 2657 body.platform-mac .search-drawer-header input[type="checkbox"].search-config-che ckbox {
2662 margin-bottom: 4px; 2658 margin-bottom: 4px;
2663 } 2659 }
2664 2660
2665 .drawer-header {
2666 font-size: 11px;
2667 border-right: 1px solid rgb(197, 197, 197);
2668 line-height: 21px;
2669 padding-left: 6px;
2670 display: inline-block;
2671 }
2672
2673 .drawer-header .close-button {
2674 position: relative;
2675 top: 3px;
2676 margin: 0 3px;
2677 }
2678
2679 #bottom-status-bar-container { 2661 #bottom-status-bar-container {
2680 -webkit-flex: 1 1 0; 2662 -webkit-flex: 1 1 0;
2681 width: 0; 2663 width: 0;
2682 overflow: hidden; 2664 overflow: hidden;
2683 } 2665 }
2684 2666
2685 .search-status-bar-item { 2667 .search-status-bar-summary {
2686 display: inline-block; 2668 background-color: rgb(236, 236, 236);
2687 cursor: pointer; 2669 border-top: 1px solid #ccc;
2688 font-size: 11px; 2670 padding-left: 5px;
2689 height: 23px; 2671 flex: 0 0 19px;
2690 } 2672 }
2691 2673
2692 .search-status-bar-message { 2674 .search-status-bar-summary .progress-bar-container {
2693 margin-left:5px; 2675 margin-top: -4px;
2694 margin-right:5px;
2695 margin-top:5px;
2696 float:left;
2697 } 2676 }
2698 2677
2699 .progress-bar-stop-button-item { 2678 .progress-bar-stop-button-item {
2700 width: 19px; 2679 width: 19px;
2701 height: 24px; 2680 height: 24px;
2702 overflow: hidden; 2681 overflow: hidden;
2703 } 2682 }
2704 2683
2705 .progress-bar-stop-button .glyph { 2684 .progress-bar-stop-button .glyph {
2706 -webkit-mask-position: -96px -48px; 2685 -webkit-mask-position: -96px -48px;
2707 background-color: rgb(216, 0, 0) !important; 2686 background-color: rgb(216, 0, 0) !important;
2708 } 2687 }
2709 2688
2710 .search-results-status-bar-message {
2711 margin-right: 10px;
2712 cursor: default;
2713 font-size: 11px;
2714 float: right;
2715 margin-top: 5px;
2716 }
2717
2718 .search-view .search-results { 2689 .search-view .search-results {
2719 position: absolute;
2720 top: 0;
2721 bottom: 0;
2722 left: 0;
2723 right: 0;
2724 overflow-y: auto; 2690 overflow-y: auto;
2691 flex: auto;
2725 } 2692 }
2726 2693
2727 #search-results-pane-file-based li { 2694 #search-results-pane-file-based li {
2728 list-style: none; 2695 list-style: none;
2729 } 2696 }
2730 2697
2731 #search-results-pane-file-based ol { 2698 #search-results-pane-file-based ol {
2732 -webkit-padding-start: 0; 2699 -webkit-padding-start: 0;
2733 margin-top: 0; 2700 margin-top: 0;
2734 } 2701 }
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
2993 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:increment { 2960 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:increment {
2994 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0; 2961 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0;
2995 border-color: transparent; 2962 border-color: transparent;
2996 border-width: 0 0 11px 0; 2963 border-width: 0 0 11px 0;
2997 } 2964 }
2998 2965
2999 .console-context { 2966 .console-context {
3000 max-width: 200px; 2967 max-width: 200px;
3001 } 2968 }
3002 2969
3003 .inspector-footer { 2970 .inspector-footer.status-bar {
3004 position: absolute; 2971 flex: 0 0 auto;
3005 bottom: 0; 2972 background-color: rgb(236, 236, 236);
3006 left: 0;
3007 right: 0;
3008 height: auto; 2973 height: auto;
3009 } 2974 }
3010 2975
3011 .progress-bar-container { 2976 .progress-bar-container {
3012 display: -webkit-flex; 2977 display: inline-flex;
3013 margin: 0 8px; 2978 margin: 0 8px;
3014 -webkit-flex: 1 0; 2979 -webkit-flex: 1 0;
3015 } 2980 }
3016 2981
3017 .progress-bar-container span { 2982 .progress-bar-container span {
3018 padding: 6px; 2983 padding: 6px;
3019 } 2984 }
3020 2985
3021 .progress-bar-container progress { 2986 .progress-bar-container progress {
3022 margin-top: 7px; 2987 margin-top: 7px;
3023 -webkit-flex: 1 0; 2988 -webkit-flex: 1 0;
3024 } 2989 }
3025 2990
3026 body.platform-mac .progress-bar-container progress { 2991 body.platform-mac .progress-bar-container progress {
3027 margin-top: 6px; 2992 margin-top: 6px;
3028 } 2993 }
3029 2994
3030 .progress-bar-container button.status-bar-item { 2995 .progress-bar-container button.status-bar-item {
3031 border-left: none; 2996 border-left: none;
3032 margin-top: 1px; 2997 margin-top: 1px;
3033 } 2998 }
3034 2999
3035 .source-frame-cursor-position {
3036 padding-left: 6px;
3037 padding-top: 4px;
3038 display: inline-block;
3039 pointer-events: auto;
3040 -webkit-user-select: text;
3041 font-size: 11px;
3042 cursor: text;
3043 line-height: 14px;
3044 }
3045
3046 .elements-tree-outline li.parent::before { 3000 .elements-tree-outline li.parent::before {
3047 top: 0 !important; 3001 top: 0 !important;
3048 } 3002 }
3049 3003
3004 #drawer-editor-view {
3005 flex: auto;
3006 }
3007
3008 .toolbar-close-button-item {
3009 display: inline-block;
3010 float: right;
3011 padding-right: 4px;
3012 padding-top: 4px;
3013 padding-left: 2px;
3014 }
3015
3016 body.undocked .toolbar-close-button-item {
3017 display: none;
3018 }
3050 /* inspectorCommon.css */ 3019 /* inspectorCommon.css */
3051 3020
3052 html { 3021 html {
3053 height: 100%; 3022 height: 100%;
3054 } 3023 }
3055 3024
3056 body { 3025 body {
3057 cursor: default; 3026 cursor: default;
3058 position: absolute; 3027 position: absolute;
3059 top: 0; 3028 top: 0;
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
3124 3093
3125 .monospace { 3094 .monospace {
3126 font-size: 10px !important; 3095 font-size: 10px !important;
3127 font-family: monospace; 3096 font-family: monospace;
3128 } 3097 }
3129 3098
3130 .resources-dividers { 3099 .resources-dividers {
3131 position: absolute; 3100 position: absolute;
3132 left: 0; 3101 left: 0;
3133 right: 0; 3102 right: 0;
3134 height: 100%;
3135 top: 0; 3103 top: 0;
3136 z-index: -100; 3104 z-index: -100;
3105 bottom: 0;
3137 } 3106 }
3138 3107
3139 .resources-event-dividers { 3108 .resources-event-dividers {
3140 position: absolute; 3109 position: absolute;
3141 left: 0; 3110 left: 0;
3142 right: 0; 3111 right: 0;
3143 height: 100%; 3112 height: 100%;
3144 top: 0; 3113 top: 0;
3145 z-index: 300; 3114 z-index: 300;
3146 pointer-events: none; 3115 pointer-events: none;
3147 } 3116 }
3148 3117
3149 .resources-dividers-label-bar { 3118 .resources-dividers-label-bar {
3150 position: absolute; 3119 position: absolute;
3151 top: 0; 3120 top: 0;
3152 left: 0; 3121 left: 0;
3153 right: 0; 3122 right: 0;
3154 background-color: rgba(255, 255, 255, 0.8); 3123 background-color: rgba(255, 255, 255, 0.8);
3155 background-clip: padding-box; 3124 background-clip: padding-box;
3156 border-bottom: 1px solid rgba(0, 0, 0, 0.3);
3157 height: 20px; 3125 height: 20px;
3158 z-index: 200; 3126 z-index: 200;
3159 pointer-events: none; 3127 pointer-events: none;
3160 overflow: hidden; 3128 overflow: hidden;
3161 } 3129 }
3162 3130
3163 .resize-enabled .resources-dividers-label-bar { 3131 .resize-enabled .resources-dividers-label-bar {
3164 cursor: move; 3132 cursor: move;
3165 } 3133 }
3166 3134
(...skipping 29 matching lines...) Expand all
3196 white-space: nowrap; 3164 white-space: nowrap;
3197 pointer-events: none; 3165 pointer-events: none;
3198 } 3166 }
3199 3167
3200 .overview-grid-window-selector { 3168 .overview-grid-window-selector {
3201 position: absolute; 3169 position: absolute;
3202 top: 0; 3170 top: 0;
3203 bottom: 0; 3171 bottom: 0;
3204 background-color: rgba(125, 173, 217, 0.5); 3172 background-color: rgba(125, 173, 217, 0.5);
3205 z-index: 250; 3173 z-index: 250;
3174 pointer-events: none;
3206 } 3175 }
3207 3176
3208 .overview-grid-window { 3177 .overview-grid-window {
3209 background-color: white; 3178 background-color: white;
3210 position: absolute; 3179 position: absolute;
3211 left: 0; 3180 left: 0;
3212 right: 0; 3181 right: 0;
3213 top: 0; 3182 top: 0;
3214 height: 20px; 3183 height: 20px;
3215 z-index: 150; 3184 z-index: 150;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
3252 cursor: ew-resize; 3221 cursor: ew-resize;
3253 } 3222 }
3254 3223
3255 .overview-grid-window-resizer-right { 3224 .overview-grid-window-resizer-right {
3256 margin-left: -3px; 3225 margin-left: -3px;
3257 margin-right: -2px; 3226 margin-right: -2px;
3258 } 3227 }
3259 3228
3260 /* Network timing is shared between popover and network item view pane */ 3229 /* Network timing is shared between popover and network item view pane */
3261 3230
3231 .network-timing-table td {
3232 padding: 0;
3233 }
3234
3262 .network-timing-row { 3235 .network-timing-row {
3263 position: relative; 3236 position: relative;
3264 height: 16px; 3237 height: 16px;
3265 } 3238 }
3266 3239
3267 .network-timing-bar { 3240 .network-timing-bar {
3268 position: absolute; 3241 position: absolute;
3269 background-color: red; 3242 background-color: red;
3270 border-left: 1px solid red; 3243 border-left: 1px solid red;
3271 opacity: 0.4; 3244 opacity: 0.4;
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
3397 .webkit-html-external-link { 3370 .webkit-html-external-link {
3398 /* Keep this in sync with view-source.css (.webkit-html-external-link) */ 3371 /* Keep this in sync with view-source.css (.webkit-html-external-link) */
3399 text-decoration: none; 3372 text-decoration: none;
3400 } 3373 }
3401 3374
3402 .webkit-html-external-link:hover { 3375 .webkit-html-external-link:hover {
3403 /* Keep this in sync with view-source.css (.webkit-html-external-link:hover) */ 3376 /* Keep this in sync with view-source.css (.webkit-html-external-link:hover) */
3404 text-decoration: underline; 3377 text-decoration: underline;
3405 } 3378 }
3406 3379
3380 .webkit-html-end-of-file {
3381 /* Keep this in sync with view-source.css (.webkit-html-end-of-file) */
3382 color: rgb(255, 0, 0);
3383 font-weight: bold;
3384 }
3385
3407 /* popover.css */ 3386 /* popover.css */
3408 3387
3409 .popover { 3388 .popover {
3410 position: absolute; 3389 position: absolute;
3411 -webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25; 3390 -webkit-border-image: url(Images/popoverBackground.png) 25 25 25 25;
3412 border-width: 25px; 3391 border-width: 25px;
3413 z-index: 100; 3392 z-index: 100;
3414 pointer-events: none; 3393 pointer-events: none;
3415 } 3394 }
3416 3395
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
3570 } 3549 }
3571 3550
3572 .fill { 3551 .fill {
3573 position: absolute; 3552 position: absolute;
3574 top: 0; 3553 top: 0;
3575 left: 0; 3554 left: 0;
3576 right: 0; 3555 right: 0;
3577 bottom: 0; 3556 bottom: 0;
3578 } 3557 }
3579 3558
3559 .hbox {
3560 display: flex !important;
3561 flex-direction: row;
3562 }
3563
3564 .vbox {
3565 display: flex !important;
3566 flex-direction: column;
3567 }
3568
3580 .inline-block { 3569 .inline-block {
3581 display: inline-block; 3570 display: inline-block;
3582 } 3571 }
3583 3572
3584 .hidden { 3573 .hidden {
3585 display: none; 3574 display: none !important;
3586 } 3575 }
3587 3576
3588 .nowrap { 3577 .nowrap,
3578 .nowrap-below,
3579 .nowrap-below div,
3580 .nowrap-below span {
3589 white-space: nowrap !important; 3581 white-space: nowrap !important;
3590 } 3582 }
3591 3583
3592 #toolbar { 3584 .toolbar-background {
3593 position: absolute;
3594 top: 0;
3595 left: 0;
3596 right: 0;
3597 height: 26px;
3598 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 91, 191, 191)), to(rgb(151, 151, 151))); 3585 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 91, 191, 191)), to(rgb(151, 151, 151)));
3599 padding-top: 1px; 3586 padding: 1px 0 0 1px;
3600 padding-left: 5px;
3601 border-bottom: 1px solid rgb(80, 80, 80); 3587 border-bottom: 1px solid rgb(80, 80, 80);
3602 -webkit-flex-direction: row;
3603 background-origin: padding-box; 3588 background-origin: padding-box;
3604 background-clip: padding-box; 3589 background-clip: padding-box;
3605 } 3590 }
3606 3591
3592 .toolbar {
3593 flex: 0 0 25px;
3594 display: flex;
3595 flex-direction: row;
3596 position: relative;
3597 }
3598
3599 .toolbar .tabbed-pane-header {
3600 border: none;
3601 }
3602
3603 .toolbar .tabbed-pane-header-contents {
3604 margin: 0;
3605 }
3606
3607 .toolbar .tabbed-pane-header-tab {
3608 border-width: 0 2px 0 2px;
3609 background: none;
3610 padding-right: 3px;
3611 }
3612
3613 .toolbar .tabbed-pane-header-tab.selected {
3614 border-width: 0 2px 0 2px;
3615 -webkit-border-image: url(Images/toolbarItemSelected.png) 0 2 0 2;
3616 }
3617
3618 .toolbar button.status-bar-item {
3619 border: none;
3620 margin: 0 -2px;
3621 }
3622
3607 button, 3623 button,
3608 input, 3624 input,
3609 select { 3625 select {
3610 font-family: inherit; 3626 font-family: inherit;
3611 font-size: inherit; 3627 font-size: inherit;
3612 } 3628 }
3613 3629
3614 body.inactive #toolbar { 3630 body.inactive .toolbar-background {
3615 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 33, 233, 233)), to(rgb(207, 207, 207))); 3631 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 33, 233, 233)), to(rgb(207, 207, 207)));
3616 border-bottom: 1px solid rgb(64%, 64%, 64%); 3632 border-bottom: 1px solid rgb(64%, 64%, 64%);
3617 } 3633 }
3618 3634
3619 body.dock-to-bottom #toolbar { 3635 body.dock-to-bottom .toolbar-background {
3620 padding-top: 0; 3636 padding-top: 0;
3621 border-top: 1px solid rgb(100, 100, 100); 3637 border-top: 1px solid rgb(100, 100, 100);
3622 cursor: default; 3638 cursor: default;
3623 } 3639 }
3624 3640
3625 body.dock-to-bottom.platform-mac #toolbar { 3641 body.dock-to-bottom.platform-mac .toolbar-background {
3626 border-top-color: white; 3642 border-top-color: white;
3627 } 3643 }
3628 3644
3629 body.dock-to-bottom.inactive #toolbar { 3645 body.dock-to-bottom.inactive .toolbar-background {
3630 border-top: 1px solid rgb(64%, 64%, 64%); 3646 border-top: 1px solid rgb(64%, 64%, 64%);
3631 } 3647 }
3632 3648
3633 body.platform-windows #toolbar, 3649 body.platform-windows .toolbar-background,
3634 body.platform-windows.inactive #toolbar { 3650 body.platform-windows.inactive .toolbar-background {
3635 background-image: none; 3651 background-image: none;
3636 } 3652 }
3637 3653
3638 body.undocked.platform-mac-leopard #toolbar { 3654 body.undocked.platform-mac-leopard .toolbar-background {
3639 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 75, 175, 175)), to(rgb(151, 151, 151))) !important; 3655 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 75, 175, 175)), to(rgb(151, 151, 151))) !important;
3640 } 3656 }
3641 3657
3642 body.undocked.platform-mac-leopard.inactive #toolbar { 3658 body.undocked.platform-mac-leopard.inactive .toolbar-background {
3643 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 21, 221, 221)), to(rgb(207, 207, 207))) !important; 3659 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 21, 221, 221)), to(rgb(207, 207, 207))) !important;
3644 } 3660 }
3645 3661
3646 body.undocked.platform-mac-snowleopard #toolbar { 3662 body.undocked.platform-mac-snowleopard .toolbar-background {
3647 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 89, 189, 189)), to(rgb(167, 167, 167))) !important; 3663 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 89, 189, 189)), to(rgb(167, 167, 167))) !important;
3648 } 3664 }
3649 3665
3650 body.undocked.platform-mac-snowleopard.inactive #toolbar { 3666 body.undocked.platform-mac-snowleopard.inactive .toolbar-background {
3651 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 28, 228, 228)), to(rgb(216, 216, 216))) !important; 3667 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 28, 228, 228)), to(rgb(216, 216, 216))) !important;
3652 } 3668 }
3653 3669
3654 body.undocked.platform-mac-mountain-lion #toolbar { 3670 body.undocked.platform-mac-mountain-lion .toolbar-background {
3655 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 08, 208, 208)), to(rgb(200, 200, 200))) !important; 3671 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 08, 208, 208)), to(rgb(200, 200, 200))) !important;
3656 } 3672 }
3657 3673
3658 body.undocked.platform-mac-mountain-lion.inactive #toolbar { 3674 body.undocked.platform-mac-mountain-lion.inactive .toolbar-background {
3659 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 38, 238, 238)), to(rgb(224, 224, 224))) !important; 3675 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 38, 238, 238)), to(rgb(224, 224, 224))) !important;
3660 } 3676 }
3661 3677
3662 .toolbar-item { 3678 .toolbar > .tabbed-pane-header {
3663 display: inline-block; 3679 flex: auto;
3664 float: left;
3665 margin: 0;
3666 padding-right: 6px;
3667 background-color: transparent;
3668 border-style: none;
3669 border-color: transparent;
3670 color: inherit;
3671 } 3680 }
3672 3681
3673 .toolbar-item { 3682 .toolbar-controls-left {
3674 height: 24px; 3683 flex: none;
3684 opacity: 0.8;
3685 padding-top: 1px;
3675 } 3686 }
3676 3687
3677 .toolbar-item.toggleable.toggled-on { 3688 .toolbar-controls-right {
3678 border-width: 0 2px 0 2px; 3689 flex: none;
3679 padding-left: 4px; 3690 margin-right: 2px;
3680 padding-right: 4px; 3691 padding-top: 1px;
3681 -webkit-border-image: url(Images/toolbarItemSelected.png) 0 2 0 2;
3682 } 3692 }
3683 3693
3684 .toolbar-label { 3694 .toolbar-controls-right #error-warning-count,
3685 line-height: 22px; 3695 .toolbar-controls-right .console-status-bar-item,
3686 text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0; 3696 .toolbar-controls-right .settings-status-bar-item,
3687 display: inline; 3697 .toolbar-controls-right .dock-status-bar-item
3688 } 3698 {
3689 3699 opacity: 0.8;
3690 .toolbar-item.toggleable .close-button {
3691 margin-left: 2px;
3692 margin-right: -2px;
3693 position: relative;
3694 top: 2px;
3695 opacity: 0.5;
3696 }
3697
3698 .toolbar-item.toggleable .close-button:hover {
3699 opacity: 1;
3700 }
3701
3702 #toolbar-dropdown .toolbar-items-separator {
3703 border-bottom: 1px solid #aaa;
3704 width: 100%;
3705 margin: 5px 0;
3706 }
3707
3708 .toolbar-item.toggleable:active .toolbar-label {
3709 text-shadow: none;
3710 }
3711
3712 body.dock-to-bottom #search-toolbar-label {
3713 display: none;
3714 }
3715
3716 #toolbar-controls {
3717 float: right;
3718 display: -webkit-flex;
3719 -webkit-align-items: center;
3720 height: 100%;
3721 }
3722
3723 #toolbar-dropdown-arrow {
3724 font-size: 14px;
3725 font-weight: bold;
3726 border: 0;
3727 background-color: transparent;
3728 border-radius: 5px;
3729 text-shadow: none;
3730 cursor: default;
3731 margin: 0;
3732 /* A line height of 0 allows precise text positioning using padding. */
3733 line-height: 0;
3734 padding: 11px 6px 11px;
3735 }
3736
3737 #toolbar-dropdown-arrow.dropdown-visible {
3738 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba( 251, 251, 251, 0.9)), to(rgba(231, 231, 231, 0.9)));
3739 }
3740
3741 #toolbar-dropdown-arrow:hover {
3742 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba( 191, 191, 191, 0.7)), to(rgba(171, 171, 171, 0.5)));
3743 }
3744
3745 #toolbar-dropdown-arrow:active {
3746 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba( 111, 111, 111, 0.8)), to(rgba(91, 91, 91, 0.8)));
3747 }
3748
3749 #toolbar-dropdown {
3750 position: absolute;
3751 z-index: 1000;
3752 box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
3753 border: 1px solid rgb(128, 128, 128);
3754 background-color: inherit;
3755 background-image: inherit;
3756 }
3757
3758 body.undocked.platform-mac-leopard #toolbar-dropdown,
3759 body.undocked.platform-mac-snowleopard #toolbar-dropdown {
3760 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 91, 191, 191)), to(rgb(151, 151, 151)));
3761 }
3762
3763 #toolbar-dropdown .scrollable-content {
3764 display: -webkit-flex;
3765 -webkit-flex-direction: column;
3766 -webkit-align-items: flex-start;
3767 padding-right: 0;
3768 }
3769
3770 #toolbar-dropdown .toolbar-item {
3771 display: -webkit-flex;
3772 -webkit-flex-direction: row;
3773 -webkit-flex: none;
3774 width: 100%;
3775 border: 1px solid rgba(0, 0, 0, 0);
3776 }
3777
3778 #toolbar-dropdown .toolbar-item.toggleable.toggled-on {
3779 border: 1px solid rgba(100, 100, 120, 0.4);
3780 -webkit-border-image: none;
3781 background: -webkit-gradient(linear, left top, left bottom, from(rgba(128, 1 28, 128, 0.6)), to(rgba(128, 128, 128, 0.6)), color-stop(20%, rgba(158, 158, 158 , 0.2)), color-stop(80%, rgba(158, 158, 158, 0.2)));
3782 }
3783
3784 #toolbar-dropdown .toolbar-item.toggleable:hover {
3785 background: -webkit-gradient(linear, left top, left bottom, from(rgba(128, 1 28, 128, 0.6)), to(rgba(128, 128, 128, 0.3)), color-stop(20%, rgba(158, 158, 158 , 0.2)), color-stop(80%, rgba(158, 158, 158, 0.1)));
3786 }
3787
3788 #toolbar-dropdown .toolbar-label {
3789 line-height: 22px;
3790 top: 0;
3791 }
3792
3793 #toolbar-panels-menu {
3794 border: 0;
3795 border-radius: 5px;
3796 cursor: default;
3797 font-family: Arial, Helvetica, sans-serif !important;
3798 font-weight: bold;
3799 line-height: 16px;
3800 height: 22px;
3801 padding: 0 4px 0 4px;
3802 margin: 1px 3px;
3803 }
3804
3805 #toolbar-panels-menu:hover:not(.disabled) {
3806 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba( 191, 191, 191, 0.7)), to(rgba(171, 171, 171, 0.5)));
3807 }
3808
3809 #toolbar-panels-menu.disabled {
3810 opacity: 0.4;
3811 text-shadow: white 1px 1px 0;
3812 }
3813
3814 #toolbar-panels-menu:active:not(.disabled) {
3815 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba( 111, 111, 111, 0.8)), to(rgba(91, 91, 91, 0.8)));
3816 } 3700 }
3817 3701
3818 .scrollable-content { 3702 .scrollable-content {
3819 position: static; 3703 position: static;
3820 height: 100%; 3704 height: 100%;
3821 overflow-y: auto; 3705 overflow-y: auto;
3822 width: 100%; 3706 width: 100%;
3823 margin-right: 12px; 3707 margin-right: 12px;
3824 padding-right: 3px; 3708 padding-right: 3px;
3825 } 3709 }
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
3996 3880
3997 .close-button-gray:hover { 3881 .close-button-gray:hover {
3998 background-position: -143px -216px; 3882 background-position: -143px -216px;
3999 } 3883 }
4000 3884
4001 .close-button-gray:active { 3885 .close-button-gray:active {
4002 background-position: -160px -216px; 3886 background-position: -160px -216px;
4003 } 3887 }
4004 3888
4005 3889
4006 .close-left { 3890 body.undocked .toolbar-item .close-button {
4007 float: left;
4008 }
4009
4010 body.undocked .toolbar-item.close-left, body.undocked .toolbar-item.close-right {
4011 display: none; 3891 display: none;
4012 } 3892 }
4013 3893
4014 body.platform-mac .toolbar-item.close-right { 3894 body.remote .toolbar-item .close-button {
4015 display: none; 3895 display: none;
4016 } 3896 }
4017 3897
4018 body.remote .toolbar-item.close-left, body.remote .toolbar-item.close-right { 3898 .panel-status-bar {
4019 display: none; 3899 border-top: none;
4020 } 3900 display: flex;
4021 3901 pointer-events: none;
4022 body:not(.platform-mac) .toolbar-item.close-left {
4023 display: none;
4024 }
4025
4026 .toolbar-item.close-left,
4027 .toolbar-item.close-right {
4028 display: -webkit-flex;
4029 -webkit-align-items: center;
4030 height: 100%;
4031 cursor: default;
4032 }
4033
4034 #root {
4035 position: absolute;
4036 top: 0;
4037 left: 0;
4038 right: 0;
4039 bottom: 0;
4040 }
4041
4042 #main {
4043 position: absolute;
4044 z-index: 1;
4045 top: 26px;
4046 left: 0;
4047 right: 0;
4048 bottom: 0;
4049 overflow: hidden;
4050 background-color: white; 3902 background-color: white;
4051 } 3903 flex: 0 0 23px;
4052 3904 position: relative;
4053 #main-panels {
4054 position: absolute;
4055 top: 0;
4056 left: 0;
4057 right: 0;
4058 bottom: 23px;
4059 overflow: hidden;
4060 }
4061
4062 body.drawer-visible #main-panels {
4063 bottom: 24px;
4064 }
4065
4066 #main-status-bar {
4067 position: absolute;
4068 bottom: 0;
4069 left: 0;
4070 right: 0;
4071 } 3905 }
4072 3906
4073 .status-bar { 3907 .status-bar {
4074 position: relative; 3908 position: relative;
4075 white-space: nowrap; 3909 white-space: nowrap;
4076 height: 23px; 3910 height: 23px;
4077 overflow: hidden; 3911 overflow: hidden;
4078 width: 100%; 3912 width: 100%;
4079 z-index: 12; 3913 z-index: 12;
4080 background-image: -webkit-linear-gradient(rgb(243,243,243), rgb(235,235,235) );
4081 border-top: 1px solid rgb(202, 202, 202); 3914 border-top: 1px solid rgb(202, 202, 202);
4082 display: -webkit-flex; 3915 display: -webkit-flex;
4083 } 3916 }
4084 3917
4085 .status-bar > div { 3918 .status-bar > div {
4086 display: inline-block; 3919 display: inline-block;
4087 vertical-align: top; 3920 vertical-align: top;
4088 overflow: visible; 3921 overflow: visible;
4089 } 3922 }
4090 3923
4091 .status-bar-item { 3924 .status-bar-item {
4092 display: inline-block; 3925 display: inline-block;
4093 pointer-events: auto; 3926 pointer-events: auto;
4094 cursor: default; 3927 cursor: default;
4095 height: 22px; 3928 height: 22px;
4096 padding: 0; 3929 padding: 0;
4097 margin-left: -1px; 3930 margin-left: -1px;
4098 margin-right: 0; 3931 margin-right: 0;
4099 vertical-align: top; 3932 vertical-align: top;
4100 border: 0 transparent none; 3933 border: 0 transparent none;
4101 background-color: transparent; 3934 background-color: transparent;
3935 flex: none;
4102 } 3936 }
4103 3937
4104 .status-bar-text { 3938 .status-bar-text {
4105 padding-left: 5px; 3939 padding-left: 5px;
4106 padding-right: 15px; 3940 padding-right: 15px;
4107 padding-top: 3px; 3941 padding-top: 3px;
4108 } 3942 }
4109 3943
4110 #floating-status-bar-container {
4111 position: absolute;
4112 left: 0;
4113 right: 0;
4114 bottom: 0;
4115 display: none;
4116 border-bottom: 1px solid rgb(202, 202, 202);
4117 cursor: ns-resize;
4118 height: 24px;
4119 }
4120
4121 body.drawer-overlay #floating-status-bar-container {
4122 box-shadow: 1px 1px 5px 2px rgba(128, 128, 128, 0.7);
4123 }
4124
4125 body.drawer-visible #floating-status-bar-container {
4126 display: -webkit-flex;
4127 }
4128
4129 #floating-status-bar-resizer {
4130 content: url(Images/statusbarResizerVertical.png);
4131 margin-top: 7px;
4132 pointer-events: none;
4133 height: 8px;
4134 }
4135
4136 #panel-status-bar {
4137 -webkit-flex: 1 0;
4138 display: -webkit-flex;
4139 pointer-events: none;
4140 }
4141
4142 #drawer-view-anchor { 3944 #drawer-view-anchor {
4143 display: inline-block; 3945 display: inline-block;
4144 } 3946 }
4145 3947
4146 .status-bar-item:active { 3948 .status-bar-item:active {
4147 position: relative; 3949 position: relative;
4148 z-index: 200; 3950 z-index: 200;
4149 } 3951 }
4150 3952
4151 .glyph { 3953 .glyph {
(...skipping 29 matching lines...) Expand all
4181 3983
4182 .long-click-glyph.shadow { 3984 .long-click-glyph.shadow {
4183 top: 1px; 3985 top: 1px;
4184 background-color: white !important; 3986 background-color: white !important;
4185 z-index: 0; 3987 z-index: 0;
4186 } 3988 }
4187 3989
4188 button.status-bar-item { 3990 button.status-bar-item {
4189 position: relative; 3991 position: relative;
4190 width: 32px; 3992 width: 32px;
4191 border-left: 1px solid rgb(202, 202, 202);
4192 border-right: 1px solid rgb(202, 202, 202);
4193 } 3993 }
4194 3994
4195 .status-bar button.status-bar-item .glyph { 3995 .status-bar button.status-bar-item .glyph {
4196 margin: 0 -1px; 3996 margin: 0 -1px;
4197 } 3997 }
4198 3998
4199 .status-bar select.status-bar-item:active,
4200 .status-bar button.status-bar-item:active {
4201 border-left: 1px solid rgb(120, 120, 120);
4202 border-right: 1px solid rgb(120, 120, 120);
4203 }
4204
4205 button.status-bar-item .glyph.shadow { 3999 button.status-bar-item .glyph.shadow {
4206 background-color: rgba(255, 255, 255, 0.33) !important; 4000 background-color: rgba(255, 255, 255, 0.33) !important;
4207 } 4001 }
4208 4002
4209 button.status-bar-item.toggled-on .glyph { 4003 button.status-bar-item.toggled-on .glyph {
4210 background-color: rgb(66, 129, 235); 4004 background-color: rgb(66, 129, 235);
4211 } 4005 }
4212 4006
4007 button.status-bar-item:hover .glyph {
4008 opacity: 1;
4009 }
4010
4213 button.status-bar-item:disabled { 4011 button.status-bar-item:disabled {
4214 opacity: 0.5;
4215 background-position: 0 0 !important; 4012 background-position: 0 0 !important;
4216 } 4013 }
4217 4014
4015 button.status-bar-item:disabled .glyph {
4016 opacity: 0.5 !important;
4017 }
4018
4218 button.status-bar-item.extension { 4019 button.status-bar-item.extension {
4219 background-image: none; 4020 background-image: none;
4220 } 4021 }
4221 4022
4222 .status-bar-select-container { 4023 .status-bar-select-container {
4223 display: inline-block; 4024 display: inline-block;
4224 } 4025 }
4225 4026
4226 .status-bar-select-arrow { 4027 .status-bar-select-arrow {
4227 background-image: url(Images/statusbarButtonGlyphs.png); 4028 background-image: url(Images/statusbarButtonGlyphs.png);
(...skipping 21 matching lines...) Expand all
4249 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; 4050 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
4250 -webkit-appearance: none; 4051 -webkit-appearance: none;
4251 border: 0; 4052 border: 0;
4252 border-radius: 0; 4053 border-radius: 0;
4253 padding: 0 15px 0 5px; 4054 padding: 0 15px 0 5px;
4254 margin-right: -10px; 4055 margin-right: -10px;
4255 position: relative; 4056 position: relative;
4256 line-height: 20px; 4057 line-height: 20px;
4257 } 4058 }
4258 4059
4259 select.status-bar-item,
4260 select.status-bar-item:hover {
4261 border-left: 1px solid rgb(202, 202, 202);
4262 border-right: 1px solid rgb(202, 202, 202);
4263 }
4264
4265 .status-bar-item > .glyph { 4060 .status-bar-item > .glyph {
4266 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png); 4061 -webkit-mask-image: url(Images/statusbarButtonGlyphs.png);
4267 -webkit-mask-size: 320px 120px; 4062 -webkit-mask-size: 320px 120px;
4063 opacity: 0.8;
4268 } 4064 }
4269 4065
4270 .console-filter > .glyph { 4066 .console-filter > .glyph {
4271 -webkit-mask-position: -32px -48px; 4067 -webkit-mask-position: -32px -48px;
4272 } 4068 }
4273 4069
4274 @media (-webkit-min-device-pixel-ratio: 1.5) { 4070 @media (-webkit-min-device-pixel-ratio: 1.5) {
4275 .status-bar-item > .glyph { 4071 .status-bar-item > .glyph {
4276 -webkit-mask-image: url(Images/statusbarButtonGlyphs2x.png); 4072 -webkit-mask-image: url(Images/statusbarButtonGlyphs2x.png);
4277 } 4073 }
(...skipping 21 matching lines...) Expand all
4299 position: absolute; 4095 position: absolute;
4300 width: 31px; 4096 width: 31px;
4301 bottom: -3px; 4097 bottom: -3px;
4302 background: white; 4098 background: white;
4303 } 4099 }
4304 4100
4305 .alternate-status-bar-buttons-bar .status-bar-item { 4101 .alternate-status-bar-buttons-bar .status-bar-item {
4306 height: 24px; 4102 height: 24px;
4307 margin-top: -1px; 4103 margin-top: -1px;
4308 border: 1px solid rgb(202, 202, 202); 4104 border: 1px solid rgb(202, 202, 202);
4309 border-bottom: 1px solid transparent;
4310 } 4105 }
4311 4106
4312 .alternate-status-bar-buttons-bar .status-bar-item.emulate-active { 4107 .alternate-status-bar-buttons-bar .status-bar-item.emulate-active {
4313 background-color: rgb(163,163,163); 4108 background-color: rgb(163,163,163);
4314 border: 1px solid rgb(120, 120, 120); 4109 border: 1px solid rgb(120, 120, 120);
4315 border-bottom: 1px solid transparent;
4316 } 4110 }
4317 4111
4318 button.status-bar-item.settings-status-bar-item, 4112 button.status-bar-item.settings-status-bar-item,
4319 button.status-bar-item.settings-status-bar-item:active { 4113 button.status-bar-item.settings-status-bar-item:active {
4320 border-right: 0 transparent none; 4114 border-right: 0 transparent none;
4321 } 4115 }
4322 4116
4323 button.status-bar-item.left-sidebar-show-hide-button, 4117 button.status-bar-item.left-sidebar-show-hide-button,
4324 button.status-bar-item.right-sidebar-show-hide-button { 4118 button.status-bar-item.right-sidebar-show-hide-button {
4325 position: absolute; 4119 position: absolute;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
4425 4219
4426 .green-ball { 4220 .green-ball {
4427 background-position: -235px -96px; 4221 background-position: -235px -96px;
4428 } 4222 }
4429 4223
4430 .orange-ball { 4224 .orange-ball {
4431 background-position: -246px -96px; 4225 background-position: -246px -96px;
4432 } 4226 }
4433 4227
4434 #error-warning-count { 4228 #error-warning-count {
4229 display: inline-block;
4435 padding: 4px 6px 6px 0; 4230 padding: 4px 6px 6px 0;
4436 font-size: 11px; 4231 font-size: 11px;
4437 height: 19px; 4232 height: 19px;
4438 cursor: pointer; 4233 cursor: pointer;
4439 line-height: 14px; 4234 line-height: 14px;
4440 } 4235 }
4441 4236
4442 #error-warning-count:hover { 4237 #error-warning-count:hover {
4443 border-bottom: 1px solid rgb(96, 96, 96); 4238 border-bottom: 1px solid rgb(96, 96, 96);
4444 } 4239 }
4445 4240
4446 #error-warning-count .error-icon-small, 4241 #error-warning-count .error-icon-small,
4447 #error-warning-count .warning-icon-small { 4242 #error-warning-count .warning-icon-small {
4448 vertical-align: -1px; 4243 vertical-align: -1px;
4449 margin-right: 2px; 4244 margin-right: 2px;
4450 } 4245 }
4451 4246
4452 #error-warning-count .warning-icon-small { 4247 #error-warning-count .warning-icon-small {
4453 margin-left: 6px; 4248 margin-left: 6px;
4454 } 4249 }
4455 4250
4456 #drawer { 4251 .drawer {
4457 display: none; 4252 display: none;
4458 position: absolute; 4253 flex: 0 0 200px;
4459 bottom: 0; 4254 position: relative;
4460 left: 0;
4461 right: 0;
4462 height: 200px;
4463 background-color: white; 4255 background-color: white;
4464 z-index: 1; 4256 z-index: 1;
4465 } 4257 }
4466 4258
4467 #drawer-body {
4468 position: absolute;
4469 top: 0;
4470 bottom: 24px;
4471 left: 0;
4472 right: 0;
4473 }
4474
4475 #drawer-contents { 4259 #drawer-contents {
4476 position: absolute; 4260 position: absolute;
4477 top: 0; 4261 top: 0;
4478 bottom: 0; 4262 bottom: 0;
4479 left: 0; 4263 left: 0;
4480 right: 0; 4264 right: 0;
4265 display: flex;
4266 }
4267
4268 #drawer-contents > .tabbed-pane > .tabbed-pane-header {
4269 background-color: rgb(236, 236, 236);
4270 cursor: ns-resize;
4271 border-top: 1px solid rgb(124, 124, 124);
4272 border-bottom: 1px solid rgb(203, 203, 203);
4273 }
4274
4275 body.inactive #drawer-contents .tabbed-pane-header {
4276 border-top: 1px solid rgb(64%, 64%, 64%);
4277 }
4278
4279 #drawer-contents .tabbed-pane-header .tabbed-pane-header-tab {
4280 cursor: default;
4281 }
4282
4283 .drawer-resizer {
4284 position: absolute;
4285 right: 0;
4286 top: 8px;
4287 content: url(Images/statusbarResizerVertical.png);
4288 height: 8px;
4289 pointer-events: none;
4481 } 4290 }
4482 4291
4483 #drawer-footer { 4292 #drawer-footer {
4484 position: absolute; 4293 position: absolute;
4485 bottom: 0; 4294 bottom: 0;
4486 left: 0; 4295 left: 0;
4487 right: 0; 4296 right: 0;
4488 font-size: 11px; 4297 font-size: 11px;
4489 height: 23px; 4298 height: 23px;
4299 background-color: rgb(236, 236, 236);
4490 } 4300 }
4491 4301
4492 body.drawer-visible #drawer { 4302 body.drawer-visible .drawer {
4493 display: block; 4303 display: block;
4494 } 4304 }
4495 4305
4496 body.platform-mac .monospace, 4306 body.platform-mac .monospace,
4497 body.platform-mac .source-code { 4307 body.platform-mac .source-code {
4498 font-size: 11px !important; 4308 font-size: 11px !important;
4499 font-family: Menlo, monospace; 4309 font-family: Menlo, monospace;
4500 } 4310 }
4501 4311
4502 body.platform-mac.platform-mac-tiger .monospace, 4312 body.platform-mac.platform-mac-tiger .monospace,
4503 body.platform-mac.platform-mac-tiger .source-code { 4313 body.platform-mac.platform-mac-tiger .source-code {
4504 font-size: 10px !important; 4314 font-size: 10px !important;
4505 font-family: Monaco, monospace; 4315 font-family: Monaco, monospace;
4506 } 4316 }
4507 4317
4508 body.platform-windows .monospace, 4318 body.platform-windows .monospace,
4509 body.platform-windows .source-code { 4319 body.platform-windows .source-code {
4510 font-size: 12px !important; 4320 font-size: 12px !important;
4511 font-family: Consolas, Lucida Console, monospace; 4321 font-family: Consolas, Lucida Console, monospace;
4512 } 4322 }
4513 4323
4514 body.platform-linux .monospace, 4324 body.platform-linux .monospace,
4515 body.platform-linux .source-code { 4325 body.platform-linux .source-code {
4516 font-size: 11px !important; 4326 font-size: 11px !important;
4517 font-family: dejavu sans mono, monospace; 4327 font-family: dejavu sans mono, monospace;
4518 } 4328 }
4519 4329
4520 #console-view { 4330 .console-status-bar {
4521 position: absolute; 4331 flex: 0 0 23px;
4522 top: 0; 4332 overflow: hidden;
4523 bottom: 0;
4524 left: 0;
4525 right: 0;
4526 overflow-y: auto;
4527 } 4333 }
4528 4334
4529 #console-messages { 4335 #console-messages {
4530 position: absolute; 4336 flex: 1 1;
4531 z-index: 0;
4532 top: 0;
4533 left: 0;
4534 right: 0;
4535 bottom: 0;
4536 padding: 2px 0; 4337 padding: 2px 0;
4537 overflow-y: overlay; 4338 overflow-y: auto;
4538 word-wrap: break-word; 4339 word-wrap: break-word;
4539 -webkit-user-select: text; 4340 -webkit-user-select: text;
4341 border-top: 1px solid rgb(230, 230, 230);
4540 } 4342 }
4541 4343
4542 #console-prompt { 4344 #console-prompt {
4543 clear: right; 4345 clear: right;
4544 position: relative; 4346 position: relative;
4545 border-top: 1px solid rgb(240, 240, 240);
4546 padding: 1px 22px 1px 0; 4347 padding: 1px 22px 1px 0;
4547 margin-left: 24px; 4348 margin-left: 24px;
4548 min-height: 16px; 4349 min-height: 16px;
4549 white-space: pre-wrap; 4350 white-space: pre-wrap;
4550 -webkit-user-modify: read-write-plaintext-only; 4351 -webkit-user-modify: read-write-plaintext-only;
4551 } 4352 }
4552 4353
4553 #console-prompt::before { 4354 #console-prompt::before {
4554 background-position: -192px -96px; 4355 background-position: -192px -96px;
4555 } 4356 }
4556 4357
4557 .console-user-command-result.console-log-level::before { 4358 .console-user-command-result.console-log-level::before {
4558 background-position: -202px -96px; 4359 background-position: -202px -96px;
4559 } 4360 }
4560 4361
4561 .console-message, 4362 .console-message,
4562 .console-user-command { 4363 .console-user-command {
4563 clear: right; 4364 clear: right;
4564 position: relative; 4365 position: relative;
4565 border-top: 1px solid rgb(240, 240, 240); 4366 border-bottom: 1px solid rgb(240, 240, 240);
4566 padding: 1px 22px 1px 0; 4367 padding: 1px 22px 1px 0;
4567 margin-left: 24px; 4368 margin-left: 24px;
4568 min-height: 16px; 4369 min-height: 16px;
4569 } 4370 }
4570 4371
4571 .console-mesage:first-child { 4372 .console-mesage:first-child {
4572 border-top: none; 4373 border-top: none;
4573 } 4374 }
4574 4375
4575 .console-adjacent-user-command-result { 4376 .console-adjacent-user-command-result {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
4628 color: white; 4429 color: white;
4629 border-radius: 7px; 4430 border-radius: 7px;
4630 } 4431 }
4631 4432
4632 .console-message-text { 4433 .console-message-text {
4633 white-space: pre-wrap; 4434 white-space: pre-wrap;
4634 } 4435 }
4635 4436
4636 .repeated-message.console-error-level::before, 4437 .repeated-message.console-error-level::before,
4637 .repeated-message.console-warning-level:before, 4438 .repeated-message.console-warning-level:before,
4638 .repeated-message.console-debug-level:before { 4439 .repeated-message.console-debug-level:before,
4440 .repeated-message.console-info-level:before {
4639 visibility: hidden; 4441 visibility: hidden;
4640 } 4442 }
4641 4443
4642 .repeated-message .outline-disclosure, 4444 .repeated-message .outline-disclosure,
4643 .repeated-message > .console-message-text { 4445 .repeated-message > .console-message-text {
4644 -webkit-flex: 1; 4446 -webkit-flex: 1;
4645 } 4447 }
4646 4448
4647 .console-info { 4449 .console-info {
4648 color: rgb(128, 128, 128); 4450 color: rgb(128, 128, 128);
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
4712 .console-error-level .section > .header .title { 4514 .console-error-level .section > .header .title {
4713 color: red !important; 4515 color: red !important;
4714 } 4516 }
4715 4517
4716 .console-debug-level .console-message-text { 4518 .console-debug-level .console-message-text {
4717 color: blue; 4519 color: blue;
4718 } 4520 }
4719 4521
4720 .console-error-level::before, 4522 .console-error-level::before,
4721 .console-warning-level::before, 4523 .console-warning-level::before,
4722 .console-debug-level::before { 4524 .console-debug-level::before,
4525 .console-info-level::before {
4723 background-image: url(Images/statusbarButtonGlyphs.png); 4526 background-image: url(Images/statusbarButtonGlyphs.png);
4724 background-size: 320px 120px; 4527 background-size: 320px 120px;
4725 width: 10px; 4528 width: 10px;
4726 height: 10px; 4529 height: 10px;
4727 } 4530 }
4728 4531
4729 @media (-webkit-min-device-pixel-ratio: 1.5) { 4532 @media (-webkit-min-device-pixel-ratio: 1.5) {
4730 .console-error-level::before, 4533 .console-error-level::before,
4731 .console-warning-level::before, 4534 .console-warning-level::before,
4732 .console-debug-level::before { 4535 .console-debug-level::before,
4536 .console-info-level::before {
4733 background-image: url(Images/statusbarButtonGlyphs2x.png); 4537 background-image: url(Images/statusbarButtonGlyphs2x.png);
4734 } 4538 }
4735 } /* media */ 4539 } /* media */
4736 4540
4737 .console-warning-level::before { 4541 .console-warning-level::before {
4738 background-position: -202px -107px; 4542 background-position: -202px -107px;
4739 } 4543 }
4740 4544
4741 .console-error-level::before { 4545 .console-error-level::before {
4742 background-position: -213px -96px; 4546 background-position: -213px -96px;
4743 } 4547 }
4744 4548
4549 .console-info-level::before {
4550 background-position: -213px -107px;
4551 }
4552
4745 .console-user-command .console-message { 4553 .console-user-command .console-message {
4746 margin-left: -24px; 4554 margin-left: -24px;
4747 padding-right: 0; 4555 padding-right: 0;
4748 border-bottom: none; 4556 border-bottom: none;
4749 } 4557 }
4750 4558
4751 .console-user-command::before { 4559 .console-user-command::before {
4752 background-position: -192px -107px; 4560 background-position: -192px -107px;
4753 } 4561 }
4754 4562
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
4919 } 4727 }
4920 4728
4921 .panel { 4729 .panel {
4922 display: none; 4730 display: none;
4923 overflow: hidden; 4731 overflow: hidden;
4924 position: absolute; 4732 position: absolute;
4925 top: 0; 4733 top: 0;
4926 left: 0; 4734 left: 0;
4927 right: 0; 4735 right: 0;
4928 bottom: 0; 4736 bottom: 0;
4737 z-index: 0;
4929 } 4738 }
4930 4739
4931 .panel.visible { 4740 .panel.visible {
4932 display: block; 4741 display: block;
4933 } 4742 }
4934 4743
4744 .panel.extension-panel.visible {
4745 display: flex !important;
4746 flex-direction: column;
4747 }
4748
4749 .extension-view {
4750 flex: auto;
4751 position: relative;
4752 }
4753
4935 iframe.extension { 4754 iframe.extension {
4936 width: 100%; 4755 width: 100%;
4937 height: 100%; 4756 height: 100%;
4938 } 4757 }
4939 4758
4940 iframe.panel.extension { 4759 iframe.panel.extension {
4941 display: block; 4760 display: block;
4942 height: 100%; 4761 height: 100%;
4943 } 4762 }
4944 4763
(...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after
5572 } 5391 }
5573 5392
5574 .scope-bar li:active { 5393 .scope-bar li:active {
5575 background: rgba(0, 0, 0, 0.5); 5394 background: rgba(0, 0, 0, 0.5);
5576 } 5395 }
5577 5396
5578 5397
5579 .console-warning-level.repeated-message, 5398 .console-warning-level.repeated-message,
5580 .console-error-level.repeated-message, 5399 .console-error-level.repeated-message,
5581 .console-log-level.repeated-message, 5400 .console-log-level.repeated-message,
5582 .console-debug-level.repeated-message{ 5401 .console-debug-level.repeated-message,
5402 .console-info-level.repeated-message {
5583 display: -webkit-flex; 5403 display: -webkit-flex;
5584 } 5404 }
5585 5405
5586 .console-user-command-result { 5406 .console-user-command-result {
5587 display: block; 5407 display: block;
5588 } 5408 }
5589 5409
5590 .source-view-frame { 5410 .source-view-frame {
5591 width: 100%; 5411 width: 100%;
5592 height: 100%; 5412 height: 100%;
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
5778 } 5598 }
5779 5599
5780 .sidebar-tree.small .sidebar-tree-item .status, 5600 .sidebar-tree.small .sidebar-tree-item .status,
5781 .sidebar-tree .children.small .sidebar-tree-item .status, 5601 .sidebar-tree .children.small .sidebar-tree-item .status,
5782 .sidebar-tree-item.small .status { 5602 .sidebar-tree-item.small .status {
5783 margin-top: 1px; 5603 margin-top: 1px;
5784 } 5604 }
5785 5605
5786 .sidebar-tree-item.selected { 5606 .sidebar-tree-item.selected {
5787 color: white; 5607 color: white;
5788 border-top: 1px solid rgb(145, 160, 192);
5789 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 62, 177, 207)), to(rgb(120, 138, 177)));
5790 text-shadow: rgba(0, 0, 0, 0.33) 1px 1px 0; 5608 text-shadow: rgba(0, 0, 0, 0.33) 1px 1px 0;
5791 background-origin: padding-box; 5609 background-origin: padding-box;
5792 background-clip: padding-box; 5610 background-clip: padding-box;
5611 background-color: rgb(56, 121, 217);
5793 } 5612 }
5794 5613
5795 :focus .sidebar-tree-item.selected { 5614 :focus .sidebar-tree-item.selected {
5796 border-top: 1px solid rgb(68, 128, 200); 5615 background-color: rgb(56, 121, 217);
5797 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(9 2, 147, 213)), to(rgb(21, 83, 170)));
5798 } 5616 }
5799 5617
5800 body.inactive .sidebar-tree-item.selected { 5618 body.inactive .sidebar-tree-item.selected {
5801 border-top: 1px solid rgb(151, 151, 151); 5619 background-color: rgb(180,180,180);
5802 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 80, 180, 180)), to(rgb(138, 138, 138)));
5803 } 5620 }
5804 5621
5805 .sidebar-tree-item .titles { 5622 .sidebar-tree-item .titles {
5806 position: relative; 5623 position: relative;
5807 top: 5px; 5624 top: 5px;
5808 line-height: 12px; 5625 line-height: 12px;
5809 padding-bottom: 1px; 5626 padding-bottom: 1px;
5810 text-overflow: ellipsis; 5627 text-overflow: ellipsis;
5811 overflow: hidden; 5628 overflow: hidden;
5812 white-space: nowrap; 5629 white-space: nowrap;
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
5891 .storage-application-cache-status, 5708 .storage-application-cache-status,
5892 .storage-application-cache-connectivity { 5709 .storage-application-cache-connectivity {
5893 position: relative; 5710 position: relative;
5894 top: 4px; 5711 top: 4px;
5895 } 5712 }
5896 5713
5897 .status-bar-items { 5714 .status-bar-items {
5898 position: absolute; 5715 position: absolute;
5899 top: 0; 5716 top: 0;
5900 bottom: 0; 5717 bottom: 0;
5901 left: 200px; 5718 left: 0;
5902 overflow: hidden; 5719 overflow: hidden;
5903 border-left: 1px solid rgb(184, 184, 184); 5720 border-left: 1px solid rgb(184, 184, 184);
5904 margin-left: -1px; 5721 margin-left: -1px;
5905 } 5722 }
5906 5723
5907 .node-search-status-bar-item .glyph { 5724 .node-search-status-bar-item .glyph {
5908 -webkit-mask-position: -224px -24px; 5725 -webkit-mask-position: -224px -24px;
5909 } 5726 }
5910 5727
5911 .delete-storage-status-bar-item .glyph { 5728 .delete-storage-status-bar-item .glyph {
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
6112 } 5929 }
6113 5930
6114 .search-view { 5931 .search-view {
6115 position: absolute; 5932 position: absolute;
6116 top: 0; 5933 top: 0;
6117 bottom: 0; 5934 bottom: 0;
6118 left: 0; 5935 left: 0;
6119 right: 0; 5936 right: 0;
6120 } 5937 }
6121 5938
6122 .search-drawer-header input[type="search"].search-config-search { 5939 .search-drawer-header {
6123 font-size: 11px; 5940 flex: none;
6124 margin-left: 4px; 5941 padding: 4px;
5942 }
5943
5944 .search-drawer-header input[type="text"].search-config-search {
5945 -webkit-appearance: none;
5946 padding: 0 2px;
5947 margin: 0;
5948 border: 1px solid rgb(163, 163, 163);
5949 height: 20px;
5950 border-radius: 2px;
6125 color: #303030; 5951 color: #303030;
6126 position: relative; 5952 }
6127 height: 19px; 5953
5954 .search-drawer-header input[type="search"].search-config-search:focus {
5955 border: 1px solid rgb(190, 190, 190);
5956 outline: none;
6128 } 5957 }
6129 5958
6130 body.platform-mac .search-drawer-header input[type="search"].search-config-searc h { 5959 body.platform-mac .search-drawer-header input[type="search"].search-config-searc h {
6131 top: 1px; 5960 top: 1px;
6132 } 5961 }
6133 5962
6134 .search-drawer-header label.search-config-label { 5963 .search-drawer-header label.search-config-label {
6135 margin-left: 8px; 5964 margin-left: 8px;
6136 color: #303030; 5965 color: #303030;
6137 } 5966 }
6138 5967
6139 .search-drawer-header input[type="checkbox"].search-config-checkbox { 5968 .search-drawer-header input[type="checkbox"].search-config-checkbox {
6140 vertical-align: bottom; 5969 vertical-align: bottom;
6141 } 5970 }
6142 5971
6143 body:not(.platform-mac) .search-drawer-header input[type="checkbox"].search-conf ig-checkbox { 5972 body:not(.platform-mac) .search-drawer-header input[type="checkbox"].search-conf ig-checkbox {
6144 margin-bottom: 5px; 5973 margin-bottom: 5px;
6145 } 5974 }
6146 5975
6147 body.platform-mac .search-drawer-header input[type="checkbox"].search-config-che ckbox { 5976 body.platform-mac .search-drawer-header input[type="checkbox"].search-config-che ckbox {
6148 margin-bottom: 4px; 5977 margin-bottom: 4px;
6149 } 5978 }
6150 5979
6151 .drawer-header {
6152 font-size: 11px;
6153 border-right: 1px solid rgb(197, 197, 197);
6154 line-height: 21px;
6155 padding-left: 6px;
6156 display: inline-block;
6157 }
6158
6159 .drawer-header .close-button {
6160 position: relative;
6161 top: 3px;
6162 margin: 0 3px;
6163 }
6164
6165 #bottom-status-bar-container { 5980 #bottom-status-bar-container {
6166 -webkit-flex: 1 1 0; 5981 -webkit-flex: 1 1 0;
6167 width: 0; 5982 width: 0;
6168 overflow: hidden; 5983 overflow: hidden;
6169 } 5984 }
6170 5985
6171 .search-status-bar-item { 5986 .search-status-bar-summary {
6172 display: inline-block; 5987 background-color: rgb(236, 236, 236);
6173 cursor: pointer; 5988 border-top: 1px solid #ccc;
6174 font-size: 11px; 5989 padding-left: 5px;
6175 height: 23px; 5990 flex: 0 0 19px;
6176 } 5991 }
6177 5992
6178 .search-status-bar-message { 5993 .search-status-bar-summary .progress-bar-container {
6179 margin-left:5px; 5994 margin-top: -4px;
6180 margin-right:5px;
6181 margin-top:5px;
6182 float:left;
6183 } 5995 }
6184 5996
6185 .progress-bar-stop-button-item { 5997 .progress-bar-stop-button-item {
6186 width: 19px; 5998 width: 19px;
6187 height: 24px; 5999 height: 24px;
6188 overflow: hidden; 6000 overflow: hidden;
6189 } 6001 }
6190 6002
6191 .progress-bar-stop-button .glyph { 6003 .progress-bar-stop-button .glyph {
6192 -webkit-mask-position: -96px -48px; 6004 -webkit-mask-position: -96px -48px;
6193 background-color: rgb(216, 0, 0) !important; 6005 background-color: rgb(216, 0, 0) !important;
6194 } 6006 }
6195 6007
6196 .search-results-status-bar-message {
6197 margin-right: 10px;
6198 cursor: default;
6199 font-size: 11px;
6200 float: right;
6201 margin-top: 5px;
6202 }
6203
6204 .search-view .search-results { 6008 .search-view .search-results {
6205 position: absolute;
6206 top: 0;
6207 bottom: 0;
6208 left: 0;
6209 right: 0;
6210 overflow-y: auto; 6009 overflow-y: auto;
6010 flex: auto;
6211 } 6011 }
6212 6012
6213 #search-results-pane-file-based li { 6013 #search-results-pane-file-based li {
6214 list-style: none; 6014 list-style: none;
6215 } 6015 }
6216 6016
6217 #search-results-pane-file-based ol { 6017 #search-results-pane-file-based ol {
6218 -webkit-padding-start: 0; 6018 -webkit-padding-start: 0;
6219 margin-top: 0; 6019 margin-top: 0;
6220 } 6020 }
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
6479 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:increment { 6279 .custom-popup-vertical-scroll ::-webkit-scrollbar-track-piece:vertical:increment {
6480 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0; 6280 -webkit-border-image: url(Images/trackVert.png) 11 0 11 0;
6481 border-color: transparent; 6281 border-color: transparent;
6482 border-width: 0 0 11px 0; 6282 border-width: 0 0 11px 0;
6483 } 6283 }
6484 6284
6485 .console-context { 6285 .console-context {
6486 max-width: 200px; 6286 max-width: 200px;
6487 } 6287 }
6488 6288
6489 .inspector-footer { 6289 .inspector-footer.status-bar {
6490 position: absolute; 6290 flex: 0 0 auto;
6491 bottom: 0; 6291 background-color: rgb(236, 236, 236);
6492 left: 0;
6493 right: 0;
6494 height: auto; 6292 height: auto;
6495 } 6293 }
6496 6294
6497 .progress-bar-container { 6295 .progress-bar-container {
6498 display: -webkit-flex; 6296 display: inline-flex;
6499 margin: 0 8px; 6297 margin: 0 8px;
6500 -webkit-flex: 1 0; 6298 -webkit-flex: 1 0;
6501 } 6299 }
6502 6300
6503 .progress-bar-container span { 6301 .progress-bar-container span {
6504 padding: 6px; 6302 padding: 6px;
6505 } 6303 }
6506 6304
6507 .progress-bar-container progress { 6305 .progress-bar-container progress {
6508 margin-top: 7px; 6306 margin-top: 7px;
6509 -webkit-flex: 1 0; 6307 -webkit-flex: 1 0;
6510 } 6308 }
6511 6309
6512 body.platform-mac .progress-bar-container progress { 6310 body.platform-mac .progress-bar-container progress {
6513 margin-top: 6px; 6311 margin-top: 6px;
6514 } 6312 }
6515 6313
6516 .progress-bar-container button.status-bar-item { 6314 .progress-bar-container button.status-bar-item {
6517 border-left: none; 6315 border-left: none;
6518 margin-top: 1px; 6316 margin-top: 1px;
6519 } 6317 }
6520 6318
6521 .source-frame-cursor-position {
6522 padding-left: 6px;
6523 padding-top: 4px;
6524 display: inline-block;
6525 pointer-events: auto;
6526 -webkit-user-select: text;
6527 font-size: 11px;
6528 cursor: text;
6529 line-height: 14px;
6530 }
6531
6532 .elements-tree-outline li.parent::before { 6319 .elements-tree-outline li.parent::before {
6533 top: 0 !important; 6320 top: 0 !important;
6534 } 6321 }
6535 6322
6323 #drawer-editor-view {
6324 flex: auto;
6325 }
6326
6327 .toolbar-close-button-item {
6328 display: inline-block;
6329 float: right;
6330 padding-right: 4px;
6331 padding-top: 4px;
6332 padding-left: 2px;
6333 }
6334
6335 body.undocked .toolbar-close-button-item {
6336 display: none;
6337 }
OLDNEW
« no previous file with comments | « chrome_linux/resources/inspector/helpScreen.css ('k') | chrome_linux/resources/inspector/inspector.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698