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

Side by Side Diff: chrome/tools/test/reference_build/chrome_linux/resources/inspector/inspector.css

Issue 177049: On Linux, move the passing of filedescriptors to a dedicated socketpair(). (Closed)
Patch Set: Removed *.d files from reference build Created 11 years, 3 months 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
3 * 4 *
4 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
6 * are met: 7 * are met:
7 * 8 *
8 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 11 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the 12 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution. 13 * documentation and/or other materials provided with the distribution.
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 } 192 }
192 193
193 .toolbar-item.resources .toolbar-icon { 194 .toolbar-item.resources .toolbar-icon {
194 background-image: url(Images/resourcesIcon.png); 195 background-image: url(Images/resourcesIcon.png);
195 } 196 }
196 197
197 .toolbar-item.scripts .toolbar-icon { 198 .toolbar-item.scripts .toolbar-icon {
198 background-image: url(Images/scriptsIcon.png); 199 background-image: url(Images/scriptsIcon.png);
199 } 200 }
200 201
201 .toolbar-item.databases .toolbar-icon { 202 .toolbar-item.storage .toolbar-icon {
202 background-image: url(Images/databasesIcon.png); 203 background-image: url(Images/storageIcon.png);
203 } 204 }
204 205
205 .toolbar-item.profiles .toolbar-icon { 206 .toolbar-item.profiles .toolbar-icon {
206 background-image: url(Images/profilesIcon.png); 207 background-image: url(Images/profilesIcon.png);
207 } 208 }
208 209
209 #close-button { 210 #close-button {
210 width: 14px; 211 width: 14px;
211 height: 14px; 212 height: 14px;
212 background-image: url(Images/closeButtons.png); 213 background-image: url(Images/closeButtons.png);
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 overflow: hidden; 253 overflow: hidden;
253 } 254 }
254 255
255 #main-status-bar { 256 #main-status-bar {
256 position: absolute; 257 position: absolute;
257 bottom: 0; 258 bottom: 0;
258 left: 0; 259 left: 0;
259 right: 0; 260 right: 0;
260 } 261 }
261 262
262 body.console-visible #main-status-bar { 263 body.drawer-visible #main-status-bar {
263 height: 24px; 264 height: 24px;
264 background-image: url(Images/statusbarResizerVertical.png), url(Images/statu sbarBackground.png); 265 background-image: url(Images/statusbarResizerVertical.png), url(Images/statu sbarBackground.png);
265 background-repeat: no-repeat, repeat-x; 266 background-repeat: no-repeat, repeat-x;
266 background-position: right center, center; 267 background-position: right center, center;
267 cursor: row-resize; 268 cursor: row-resize;
268 } 269 }
269 270
270 body.console-visible #main-status-bar * { 271 body.drawer-visible #main-status-bar * {
271 cursor: default; 272 cursor: default;
272 } 273 }
273 274
274 body.console-visible #main-panels { 275 body.drawer-visible #main-panels {
275 bottom: 24px; 276 bottom: 24px;
276 } 277 }
277 278
278 .status-bar { 279 .status-bar {
279 background-color: rgb(235, 235, 235); 280 background-color: rgb(235, 235, 235);
280 background-image: url(Images/statusbarBackground.png); 281 background-image: url(Images/statusbarBackground.png);
281 background-repeat: repeat-x; 282 background-repeat: repeat-x;
282 white-space: nowrap; 283 white-space: nowrap;
283 height: 23px; 284 height: 23px;
284 overflow: hidden; 285 overflow: hidden;
(...skipping 14 matching lines...) Expand all
299 vertical-align: top; 300 vertical-align: top;
300 border: 0 transparent none; 301 border: 0 transparent none;
301 background-color: transparent; 302 background-color: transparent;
302 } 303 }
303 304
304 .status-bar-item:active { 305 .status-bar-item:active {
305 position: relative; 306 position: relative;
306 z-index: 200; 307 z-index: 200;
307 } 308 }
308 309
310 .glyph {
311 position: absolute;
312 top: 0;
313 left: 0;
314 right: 0;
315 bottom: 0;
316 background-color: rgba(0, 0, 0, 0.75);
317 z-index: 1;
318 }
319
320 .glyph.shadow {
321 top: 1px;
322 background-color: white !important;
323 z-index: 0;
324 }
325
309 button.status-bar-item { 326 button.status-bar-item {
327 position: relative;
310 width: 32px; 328 width: 32px;
311 background-image: url(Images/statusbarButtons.png); 329 background-image: url(Images/statusbarButtons.png);
312 background-position: 0 0; 330 background-position: 0 0;
313 } 331 }
314 332
315 button.status-bar-item:active { 333 button.status-bar-item:active {
316 background-position: 32px 0; 334 background-position: 32px 0 !important;
335 }
336
337 button.status-bar-item .glyph.shadow {
338 background-color: rgba(255, 255, 255, 0.33) !important;
339 }
340
341 button.status-bar-item.toggled-on .glyph {
342 background-color: rgb(66, 129, 235);
317 } 343 }
318 344
319 button.status-bar-item:disabled { 345 button.status-bar-item:disabled {
320 opacity: 0.5; 346 opacity: 0.5;
321 background-position: 0 0 !important; 347 background-position: 0 0 !important;
322 } 348 }
323 349
324 select.status-bar-item { 350 select.status-bar-item {
325 min-width: 48px; 351 min-width: 48px;
326 border-width: 0 17px 0 2px; 352 border-width: 0 17px 0 2px;
327 padding: 0 2px 0 6px; 353 padding: 0 2px 0 6px;
328 font-weight: bold; 354 font-weight: bold;
329 color: rgb(48, 48, 48); 355 color: rgb(48, 48, 48);
330 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; 356 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
331 -webkit-border-image: url(Images/statusbarMenuButton.png) 0 17 0 2; 357 -webkit-border-image: url(Images/statusbarMenuButton.png) 0 17 0 2;
332 -webkit-border-radius: 0; 358 -webkit-border-radius: 0;
333 -webkit-appearance: none; 359 -webkit-appearance: none;
334 } 360 }
335 361
336 select.status-bar-item:active { 362 select.status-bar-item:active {
337 color: black; 363 color: black;
338 -webkit-border-image: url(Images/statusbarMenuButtonSelected.png) 0 17 0 2; 364 -webkit-border-image: url(Images/statusbarMenuButtonSelected.png) 0 17 0 2;
339 } 365 }
340 366
341 #dock-status-bar-item { 367 #dock-status-bar-item .glyph {
342 background-image: url(Images/dockButtons.png); 368 -webkit-mask-image: url(Images/undockButtonGlyph.png);
343 } 369 }
344 370
345 body.attached #dock-status-bar-item:active { 371 body.detached #dock-status-bar-item .glyph {
346 background-position: 32px 0; 372 -webkit-mask-image: url(Images/dockButtonGlyph.png);
347 } 373 }
348 374
349 body.detached #dock-status-bar-item { 375 #console-status-bar-item .glyph {
350 background-position: 0 24px; 376 -webkit-mask-image: url(Images/consoleButtonGlyph.png);
351 } 377 }
352 378
353 body.detached #dock-status-bar-item.toggled-on:active { 379 #clear-console-status-bar-item .glyph {
354 background-position: 32px 24px; 380 -webkit-mask-image: url(Images/clearConsoleButtonGlyph.png);
355 } 381 }
356 382
357 #console-status-bar-item { 383 #changes-status-bar-item .glyph {
358 background-image: url(Images/consoleButtons.png); 384 -webkit-mask-image: url(Images/consoleButtonGlyph.png); /* TODO: Needs Image for Changes Toggle Button */
359 } 385 }
360 386
361 #console-status-bar-item:active { 387 #clear-changes-status-bar-item .glyph {
362 background-position: 32px 0; 388 -webkit-mask-image: url(Images/clearConsoleButtonGlyph.png);
363 } 389 }
364 390
365 #console-status-bar-item.toggled-on { 391 #count-items {
366 background-position: 0 24px;
367 }
368
369 #console-status-bar-item.toggled-on:active {
370 background-position: 32px 24px;
371 }
372
373 #clear-console-status-bar-item {
374 background-image: url(Images/clearConsoleButtons.png);
375 }
376
377 #clear-console-status-bar-item:active {
378 background-position: 32px 0;
379 }
380
381 #error-warning-count {
382 position: absolute; 392 position: absolute;
383 right: 16px; 393 right: 16px;
384 top: 0; 394 top: 0;
385 cursor: pointer; 395 cursor: pointer;
386 padding: 6px 2px; 396 padding: 6px 2px;
387 font-size: 10px; 397 font-size: 10px;
388 height: 19px; 398 height: 19px;
389 } 399 }
390 400
391 #error-warning-count:hover { 401 #changes-count, #error-warning-count {
402 display: inline;
403 }
404
405 #error-warning-count:hover, #changes-count:hover {
392 border-bottom: 1px solid rgb(96, 96, 96); 406 border-bottom: 1px solid rgb(96, 96, 96);
393 } 407 }
394 408
409 #style-changes-count::before {
410 content: url(Images/styleIcon.png); /* TODO: Needs Image for Style Changes I con */
411 width: 10px;
412 height: 10px;
413 vertical-align: -1px;
414 margin-right: 2px;
415 }
416
395 #error-count::before { 417 #error-count::before {
396 content: url(Images/errorIcon.png); 418 content: url(Images/errorIcon.png);
397 width: 10px; 419 width: 10px;
398 height: 10px; 420 height: 10px;
399 vertical-align: -1px; 421 vertical-align: -1px;
400 margin-right: 2px; 422 margin-right: 2px;
401 } 423 }
402 424
403 #error-count + #warning-count { 425 #changes-count + #error-warning-count, #error-count + #warning-count {
404 margin-left: 6px; 426 margin-left: 6px;
405 } 427 }
406 428
407 #warning-count::before { 429 #warning-count::before {
408 content: url(Images/warningIcon.png); 430 content: url(Images/warningIcon.png);
409 width: 10px; 431 width: 10px;
410 height: 10px; 432 height: 10px;
411 vertical-align: -1px; 433 vertical-align: -1px;
412 margin-right: 2px; 434 margin-right: 2px;
413 } 435 }
414 436
415 #console { 437 #drawer {
416 display: none; 438 display: none;
417 position: absolute; 439 position: absolute;
418 bottom: 0; 440 bottom: 0;
419 left: 0; 441 left: 0;
420 right: 0; 442 right: 0;
421 height: 200px; 443 height: 200px;
422 background-color: white; 444 background-color: white;
423 background-image: url(Images/statusbarBottomBackground.png); 445 background-image: url(Images/statusbarBottomBackground.png);
424 background-repeat: repeat-x; 446 background-repeat: repeat-x;
425 background-position: bottom; 447 background-position: bottom;
426 } 448 }
427 449
428 body.console-visible #console { 450 body.drawer-visible #drawer {
429 display: block; 451 display: block;
430 } 452 }
431 453
432 #console-status-bar { 454 #drawer-status-bar {
433 position: absolute; 455 position: absolute;
434 bottom: 0; 456 bottom: 0;
435 left: 0; 457 left: 0;
436 right: 0; 458 right: 0;
437 background: none; 459 background: none;
438 } 460 }
439 461
440 #console-messages { 462 #console-messages {
441 position: absolute; 463 position: absolute;
442 z-index: 0; 464 z-index: 0;
443 top: 0; 465 top: 0;
444 left: 0; 466 left: 0;
445 right: 0; 467 right: 0;
446 bottom: 23px; 468 bottom: 23px;
447 font-size: 10px; 469 font-size: initial;
448 font-family: Monaco, Lucida Console, monospace; 470 font-family: monospace;
449 padding: 2px 0; 471 padding: 2px 0;
450 overflow-y: overlay; 472 overflow-y: overlay;
451 -webkit-user-select: text; 473 -webkit-user-select: text;
452 -webkit-text-size-adjust: auto; 474 -webkit-text-size-adjust: auto;
453 } 475 }
454 476
455 #console-prompt { 477 #console-prompt {
456 position: relative; 478 position: relative;
457 padding: 1px 22px 1px 24px; 479 padding: 1px 22px 1px 24px;
458 min-height: 16px; 480 min-height: 16px;
(...skipping 17 matching lines...) Expand all
476 } 498 }
477 499
478 .console-adjacent-user-command-result { 500 .console-adjacent-user-command-result {
479 border-bottom: none; 501 border-bottom: none;
480 } 502 }
481 503
482 .console-adjacent-user-command-result + .console-user-command-result.console-log -level::before { 504 .console-adjacent-user-command-result + .console-user-command-result.console-log -level::before {
483 background-image: none; 505 background-image: none;
484 } 506 }
485 507
486 .console-message::before, .console-user-command::before, #console-prompt::before , .console-group-title-level::before { 508 .console-message::before, .console-user-command::before, #console-prompt::before , .console-group-title::before {
487 position: absolute; 509 position: absolute;
488 display: block; 510 display: block;
489 content: ""; 511 content: "";
490 left: 7px; 512 left: 7px;
491 top: 0.8em; 513 top: 0.8em;
492 width: 10px; 514 width: 10px;
493 height: 10px; 515 height: 10px;
494 margin-top: -5px; 516 margin-top: -5px;
495 -webkit-user-select: none; 517 -webkit-user-select: none;
496 } 518 }
(...skipping 25 matching lines...) Expand all
522 } 544 }
523 545
524 .repeated-message.console-error-level::before, .repeated-message.console-warning -level:before { 546 .repeated-message.console-error-level::before, .repeated-message.console-warning -level:before {
525 visibility: hidden; 547 visibility: hidden;
526 } 548 }
527 549
528 .console-group .console-group > .console-group-messages { 550 .console-group .console-group > .console-group-messages {
529 margin-left: 16px; 551 margin-left: 16px;
530 } 552 }
531 553
532 .console-group-title-level { 554 .console-group-title {
533 font-weight: bold; 555 font-weight: bold;
534 } 556 }
535 557
536 .console-group-title-level::before { 558 .console-group-title::before {
537 background-image: url(Images/disclosureTriangleSmallDown.png); 559 background-image: url(Images/disclosureTriangleSmallDown.png);
538 top: 0.6em; 560 top: 0.6em;
539 width: 11px; 561 width: 11px;
540 height: 12px; 562 height: 12px;
541 } 563 }
542 564
543 .console-group.collapsed .console-group-title-level::before { 565 .console-group.collapsed .console-group-title::before {
544 background-image: url(Images/disclosureTriangleSmallRight.png); 566 background-image: url(Images/disclosureTriangleSmallRight.png);
545 } 567 }
546 568
547 .console-group.collapsed > .console-group-messages { 569 .console-group.collapsed > .console-group-messages {
548 display: none; 570 display: none;
549 } 571 }
550 572
551 .console-error-level .console-message-text { 573 .console-error-level .console-message-text {
552 color: red; 574 color: red;
553 } 575 }
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 659
638 .console-group-messages .outline-disclosure.single-node li { 660 .console-group-messages .outline-disclosure.single-node li {
639 padding-left: 2px; 661 padding-left: 2px;
640 } 662 }
641 663
642 .console-group-messages .outline-disclosure li .selection { 664 .console-group-messages .outline-disclosure li .selection {
643 margin-left: -6px; 665 margin-left: -6px;
644 margin-right: -6px; 666 margin-right: -6px;
645 } 667 }
646 668
669 .console-group-messages .add-attribute {
670 display: none;
671 }
672
647 .console-formatted-object, .console-formatted-node { 673 .console-formatted-object, .console-formatted-node {
648 position: relative; 674 position: relative;
649 display: inline-block; 675 display: inline-block;
650 vertical-align: top; 676 vertical-align: top;
651 } 677 }
652 678
653 .console-formatted-object .section, .console-formatted-node .section { 679 .console-formatted-object .section, .console-formatted-node .section {
654 position: static; 680 position: static;
655 } 681 }
656 682
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 right: auto; 787 right: auto;
762 left: auto; 788 left: auto;
763 bottom: auto; 789 bottom: auto;
764 } 790 }
765 791
766 .resource-view.headers-visible .source-view-frame { 792 .resource-view.headers-visible .source-view-frame {
767 height: auto; 793 height: auto;
768 vertical-align: top; 794 vertical-align: top;
769 } 795 }
770 796
797 .invisible {
798 color: inherit;
799 text-decoration: none;
800 }
801
771 .webkit-line-gutter-backdrop { 802 .webkit-line-gutter-backdrop {
772 /* Keep this in sync with view-source.css (.webkit-line-gutter-backdrop) */ 803 /* Keep this in sync with view-source.css (.webkit-line-gutter-backdrop) */
773 width: 31px; 804 width: 31px;
774 background-color: rgb(240, 240, 240); 805 background-color: rgb(240, 240, 240);
775 border-right: 1px solid rgb(187, 187, 187); 806 border-right: 1px solid rgb(187, 187, 187);
776 position: absolute; 807 position: absolute;
777 z-index: -1; 808 z-index: -1;
778 left: 0; 809 left: 0;
779 top: 0; 810 top: 0;
780 height: 100% 811 height: 100%
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
1083 .webkit-html-external-link { 1114 .webkit-html-external-link {
1084 /* Keep this in sync with view-source.css (.webkit-html-external-link) */ 1115 /* Keep this in sync with view-source.css (.webkit-html-external-link) */
1085 text-decoration: none; 1116 text-decoration: none;
1086 } 1117 }
1087 1118
1088 .webkit-html-external-link:hover { 1119 .webkit-html-external-link:hover {
1089 /* Keep this in sync with view-source.css (.webkit-html-external-link:hover) */ 1120 /* Keep this in sync with view-source.css (.webkit-html-external-link:hover) */
1090 text-decoration: underline; 1121 text-decoration: underline;
1091 } 1122 }
1092 1123
1124 .add-attribute {
1125 margin-left: 1px;
1126 margin-right: 1px;
1127 }
1128
1093 .placard { 1129 .placard {
1094 position: relative; 1130 position: relative;
1095 margin-top: 1px; 1131 margin-top: 1px;
1096 padding: 3px 8px 4px 18px; 1132 padding: 3px 8px 4px 18px;
1097 min-height: 18px; 1133 min-height: 18px;
1098 white-space: nowrap; 1134 white-space: nowrap;
1099 } 1135 }
1100 1136
1101 .placard:nth-of-type(2n) { 1137 .placard:nth-of-type(2n) {
1102 background-color: rgb(234, 243, 255); 1138 background-color: rgb(234, 243, 255);
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1161 .section .header { 1197 .section .header {
1162 padding: 2px 8px 4px 18px; 1198 padding: 2px 8px 4px 18px;
1163 border-top: 1px solid rgb(145, 160, 192); 1199 border-top: 1px solid rgb(145, 160, 192);
1164 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 62, 177, 207)), to(rgb(120, 138, 177))); 1200 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 62, 177, 207)), to(rgb(120, 138, 177)));
1165 min-height: 18px; 1201 min-height: 18px;
1166 white-space: nowrap; 1202 white-space: nowrap;
1167 -webkit-background-origin: padding; 1203 -webkit-background-origin: padding;
1168 -webkit-background-clip: padding; 1204 -webkit-background-clip: padding;
1169 } 1205 }
1170 1206
1207 .section.no-affect .header {
1208 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 67, 167, 167)), to(rgb(123, 123, 123)))
1209 }
1210
1171 .section .header::before { 1211 .section .header::before {
1172 position: absolute; 1212 position: absolute;
1173 top: 4px; 1213 top: 4px;
1174 left: 7px; 1214 left: 7px;
1175 width: 8px; 1215 width: 8px;
1176 height: 8px; 1216 height: 8px;
1177 content: url(Images/treeRightTriangleWhite.png); 1217 content: url(Images/treeRightTriangleWhite.png);
1178 } 1218 }
1179 1219
1220 .section.blank-section .header::before {
1221 display: none;
1222 }
1223
1180 .section.expanded .header::before { 1224 .section.expanded .header::before {
1181 content: url(Images/treeDownTriangleWhite.png); 1225 content: url(Images/treeDownTriangleWhite.png);
1182 } 1226 }
1183 1227
1184 .section .header .title { 1228 .section .header .title {
1185 color: white; 1229 color: white;
1186 font-weight: bold; 1230 font-weight: bold;
1187 word-wrap: break-word; 1231 word-wrap: break-word;
1188 white-space: normal; 1232 white-space: normal;
1189 } 1233 }
1190 1234
1235 .section .header .title.blank-title {
1236 font-style: italic;
1237 }
1238
1191 .section .header label { 1239 .section .header label {
1192 display: none; 1240 display: none;
1193 } 1241 }
1194 1242
1195 .section.expanded .header label { 1243 .section.expanded .header label {
1196 display: inline; 1244 display: inline;
1197 } 1245 }
1198 1246
1199 .section .header input[type=checkbox] { 1247 .section .header input[type=checkbox] {
1200 height: 10px; 1248 height: 10px;
(...skipping 17 matching lines...) Expand all
1218 .section .header .subtitle a { 1266 .section .header .subtitle a {
1219 color: inherit; 1267 color: inherit;
1220 } 1268 }
1221 1269
1222 .section .properties { 1270 .section .properties {
1223 display: none; 1271 display: none;
1224 margin: 0; 1272 margin: 0;
1225 padding: 2px 6px 3px; 1273 padding: 2px 6px 3px;
1226 list-style: none; 1274 list-style: none;
1227 background-color: white; 1275 background-color: white;
1276 min-height: 18px;
1277 }
1278
1279 .section.no-affect .properties li {
1280 opacity: 0.5;
1281 }
1282
1283 .section.no-affect .properties li.editing {
1284 opacity: 1.0;
1228 } 1285 }
1229 1286
1230 .section.expanded .properties { 1287 .section.expanded .properties {
1231 display: block; 1288 display: block;
1232 } 1289 }
1233 1290
1234 .section .properties li { 1291 .section .properties li {
1235 margin-left: 12px; 1292 margin-left: 12px;
1236 white-space: nowrap; 1293 white-space: nowrap;
1237 text-overflow: ellipsis; 1294 text-overflow: ellipsis;
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
1558 } 1615 }
1559 1616
1560 .database-sidebar-tree-item .icon { 1617 .database-sidebar-tree-item .icon {
1561 content: url(Images/database.png); 1618 content: url(Images/database.png);
1562 } 1619 }
1563 1620
1564 .database-table-sidebar-tree-item .icon { 1621 .database-table-sidebar-tree-item .icon {
1565 content: url(Images/databaseTable.png); 1622 content: url(Images/databaseTable.png);
1566 } 1623 }
1567 1624
1568 .domstorage-sidebar-tree-item .icon { 1625 .domstorage-sidebar-tree-item.local-storage .icon {
1569 content: url(Images/domStorage.png); 1626 content: url(Images/localStorage.png);
1627 }
1628
1629 .domstorage-sidebar-tree-item.session-storage .icon {
1630 content: url(Images/sessionStorage.png);
1631 }
1632
1633 .cookie-sidebar-tree-item .icon {
1634 content: url(Images/cookie.png);
1570 } 1635 }
1571 1636
1572 #storage-views { 1637 #storage-views {
1573 position: absolute; 1638 position: absolute;
1574 top: 0; 1639 top: 0;
1575 right: 0; 1640 right: 0;
1576 left: 200px; 1641 left: 200px;
1577 bottom: 0; 1642 bottom: 0;
1578 } 1643 }
1579 1644
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1721 border-right: 1px solid #aaa; 1786 border-right: 1px solid #aaa;
1722 -webkit-user-select: text; 1787 -webkit-user-select: text;
1723 } 1788 }
1724 1789
1725 .data-grid td > div, .data-grid th > div { 1790 .data-grid td > div, .data-grid th > div {
1726 white-space: nowrap; 1791 white-space: nowrap;
1727 text-overflow: ellipsis; 1792 text-overflow: ellipsis;
1728 overflow: hidden; 1793 overflow: hidden;
1729 } 1794 }
1730 1795
1796 .data-grid .centered div {
1797 text-align: center;
1798 }
1799
1800 .data-grid .right div {
1801 text-align: right;
1802 }
1803
1731 .data-grid th.sortable div { 1804 .data-grid th.sortable div {
1732 position: relative; 1805 position: relative;
1733 } 1806 }
1734 1807
1735 .data-grid th.sortable:active { 1808 .data-grid th.sortable:active {
1736 background-image: url(Images/glossyHeaderPressed.png); 1809 background-image: url(Images/glossyHeaderPressed.png);
1737 } 1810 }
1738 1811
1739 .data-grid th.sort-ascending, .data-grid th.sort-descending { 1812 .data-grid th.sort-ascending, .data-grid th.sort-descending {
1740 border-right: 1px solid rgb(107, 140, 196); 1813 border-right: 1px solid rgb(107, 140, 196);
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
1803 } 1876 }
1804 1877
1805 .data-grid:focus tr.expanded.selected td.disclosure::before { 1878 .data-grid:focus tr.expanded.selected td.disclosure::before {
1806 content: url(Images/treeDownTriangleWhite.png); 1879 content: url(Images/treeDownTriangleWhite.png);
1807 } 1880 }
1808 1881
1809 .data-grid tr:not(.parent) td.disclosure { 1882 .data-grid tr:not(.parent) td.disclosure {
1810 text-indent: 10px; 1883 text-indent: 10px;
1811 } 1884 }
1812 1885
1886 .data-grid-resizer {
1887 position: absolute;
1888 top: 0;
1889 bottom: 0;
1890 width: 5px;
1891 z-index: 500;
1892 cursor: col-resize;
1893 }
1894
1813 .storage-view.query { 1895 .storage-view.query {
1814 font-size: 10px; 1896 font-size: initial;
1815 font-family: Monaco, Lucida Console, monospace; 1897 font-family: monospace;
1816 padding: 2px 0; 1898 padding: 2px 0;
1817 overflow-y: overlay; 1899 overflow-y: overlay;
1818 overflow-x: hidden; 1900 overflow-x: hidden;
1819 -webkit-text-size-adjust: auto; 1901 -webkit-text-size-adjust: auto;
1820 } 1902 }
1821 1903
1822 .database-query-prompt { 1904 .database-query-prompt {
1823 position: relative; 1905 position: relative;
1824 padding: 1px 22px 1px 24px; 1906 padding: 1px 22px 1px 24px;
1825 min-height: 16px; 1907 min-height: 16px;
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
1912 font-size: 16px; 1994 font-size: 16px;
1913 line-height: 20px; 1995 line-height: 20px;
1914 font-weight: normal; 1996 font-weight: normal;
1915 margin-top: 0; 1997 margin-top: 0;
1916 } 1998 }
1917 1999
1918 .panel-enabler-disclaimer { 2000 .panel-enabler-disclaimer {
1919 font-size: 10px; 2001 font-size: 10px;
1920 color: rgb(110, 116, 128); 2002 color: rgb(110, 116, 128);
1921 margin-bottom: 12px; 2003 margin-bottom: 12px;
2004 margin-left: 20px;
1922 } 2005 }
1923 2006
1924 .panel-enabler-disclaimer:empty { 2007 .panel-enabler-disclaimer:empty {
1925 display: none; 2008 display: none;
1926 } 2009 }
1927 2010
1928 .panel-enabler-view img { 2011 .panel-enabler-view img {
1929 height: 100%; 2012 height: 100%;
1930 min-height: 200px; 2013 min-height: 200px;
1931 max-width: 100%; 2014 max-width: 100%;
(...skipping 15 matching lines...) Expand all
1947 width: 330px; 2030 width: 330px;
1948 margin: 0; 2031 margin: 0;
1949 padding: 15px; 2032 padding: 15px;
1950 white-space: normal; 2033 white-space: normal;
1951 } 2034 }
1952 2035
1953 .panel-enabler-view label { 2036 .panel-enabler-view label {
1954 position: relative; 2037 position: relative;
1955 display: block; 2038 display: block;
1956 text-align: left; 2039 text-align: left;
1957 margin-left: 50px;
1958 margin-bottom: 6px;
1959 line-height: 18px;
1960 word-break: break-word; 2040 word-break: break-word;
2041 margin: 0 0 5px 20px;
1961 } 2042 }
1962 2043
1963 .panel-enabler-view button { 2044 .panel-enabler-view button {
1964 font-size: 13px; 2045 font-size: 13px;
1965 margin: 6px 0 0 0; 2046 margin: 6px 0 0 0;
1966 padding: 3px 20px; 2047 padding: 3px 20px;
1967 color: rgb(6, 6, 6); 2048 color: rgb(6, 6, 6);
1968 height: 24px; 2049 height: 24px;
1969 background-color: transparent; 2050 background-color: transparent;
1970 border: 1px solid rgb(165, 165, 165); 2051 border: 1px solid rgb(165, 165, 165);
1971 background-color: rgb(237, 237, 237); 2052 background-color: rgb(237, 237, 237);
1972 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 52, 252, 252)), to(rgb(223, 223, 223))); 2053 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 52, 252, 252)), to(rgb(223, 223, 223)));
1973 -webkit-border-radius: 12px; 2054 -webkit-border-radius: 12px;
1974 -webkit-appearance: none; 2055 -webkit-appearance: none;
1975 } 2056 }
1976 2057
1977 .panel-enabler-view button:active { 2058 .panel-enabler-view button:active {
1978 background-color: rgb(215, 215, 215); 2059 background-color: rgb(215, 215, 215);
1979 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 94, 194, 194)), to(rgb(239, 239, 239))); 2060 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 94, 194, 194)), to(rgb(239, 239, 239)));
1980 } 2061 }
1981 2062
1982 body.inactive .panel-enabler-view button, .panel-enabler-view button:disabled { 2063 body.inactive .panel-enabler-view button, .panel-enabler-view button:disabled {
1983 color: rgb(130, 130, 130); 2064 color: rgb(130, 130, 130);
1984 border-color: rgb(212, 212, 212); 2065 border-color: rgb(212, 212, 212);
1985 background-color: rgb(239, 239, 239); 2066 background-color: rgb(239, 239, 239);
1986 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 50, 250, 250)), to(rgb(235, 235, 235))); 2067 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 50, 250, 250)), to(rgb(235, 235, 235)));
1987 } 2068 }
1988 2069
2070 .panel-enabler-view input {
2071 height: 17px;
2072 width: 17px;
2073 border: 1px solid rgb(165, 165, 165);
2074 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 52, 252, 252)), to(rgb(223, 223, 223)));
2075 -webkit-border-radius: 8px;
2076 -webkit-appearance: none;
2077 vertical-align: middle;
2078 margin: 0 5px 5px 0;
2079 }
2080
2081 .panel-enabler-view input:active {
2082 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(1 94, 194, 194)), to(rgb(239, 239, 239)));
2083 }
2084
2085 .panel-enabler-view input:checked {
2086 background: url(Images/radioDot.png) center no-repeat,
2087 -webkit-gradient(linear, left top, left bottom, from(rgb(252, 25 2, 252)), to(rgb(223, 223, 223)));
2088 }
2089
2090 .panel-enabler-view.resources img {
2091 content: url(Images/resourcesSilhouette.png);
2092 }
2093
1989 .panel-enabler-view.scripts img { 2094 .panel-enabler-view.scripts img {
1990 content: url(Images/scriptsSilhouette.png); 2095 content: url(Images/scriptsSilhouette.png);
1991 } 2096 }
1992 2097
1993 .panel-enabler-view.profiles img { 2098 .panel-enabler-view.profiles img {
1994 content: url(Images/profilesSilhouette.png); 2099 content: url(Images/profilesSilhouette.png);
1995 } 2100 }
1996 2101
1997 button.enable-toggle-status-bar-item { 2102 button.enable-toggle-status-bar-item .glyph {
1998 background-image: url(Images/enableButtons.png); 2103 -webkit-mask-image: url(Images/enableOutlineButtonGlyph.png);
1999 } 2104 }
2000 2105
2001 button.enable-toggle-status-bar-item:active { 2106 button.enable-toggle-status-bar-item.toggled-on .glyph {
2002 background-position: 32px 0; 2107 -webkit-mask-image: url(Images/enableSolidButtonGlyph.png);
2003 } 2108 }
2004 2109
2005 button.enable-toggle-status-bar-item.toggled-on { 2110 .scripts-pause-on-exceptions-status-bar-item .glyph {
2006 background-position: 0 24px; 2111 -webkit-mask-image: url(Images/pauseOnExceptionButtonGlyph.png);
2007 }
2008
2009 button.enable-toggle-status-bar-item.toggled-on:active {
2010 background-position: 32px 24px;
2011 }
2012
2013 #scripts-pause-on-exceptions-status-bar-item {
2014 background-image: url(Images/pauseOnExceptionButtons.png);
2015 }
2016
2017 #scripts-pause-on-exceptions-status-bar-item:active {
2018 background-position: 32px 0;
2019 }
2020
2021 #scripts-pause-on-exceptions-status-bar-item.toggled-on {
2022 background-position: 0 24px;
2023 }
2024
2025 #scripts-pause-on-exceptions-status-bar-item.toggled-on:active {
2026 background-position: 32px 24px;
2027 } 2112 }
2028 2113
2029 #scripts-status-bar { 2114 #scripts-status-bar {
2030 position: absolute; 2115 position: absolute;
2031 top: -1px; 2116 top: -1px;
2032 left: 0; 2117 left: 0;
2033 right: 0; 2118 right: 0;
2034 height: 24px; 2119 height: 24px;
2035 } 2120 }
2036 2121
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
2133 top: 23px; 2218 top: 23px;
2134 right: 0; 2219 right: 0;
2135 bottom: 0; 2220 bottom: 0;
2136 width: 225px; 2221 width: 225px;
2137 background-color: rgb(245, 245, 245); 2222 background-color: rgb(245, 245, 245);
2138 border-left: 1px solid rgb(64%, 64%, 64%); 2223 border-left: 1px solid rgb(64%, 64%, 64%);
2139 cursor: default; 2224 cursor: default;
2140 overflow: auto; 2225 overflow: auto;
2141 } 2226 }
2142 2227
2143 #resources-larger-resources-status-bar-item { 2228 .resources-larger-resources-status-bar-item .glyph {
2144 background-image: url(Images/largerResourcesButtons.png); 2229 -webkit-mask-image: url(Images/largerResourcesButtonGlyph.png);
2145 } 2230 }
2146 2231
2147 #resources-larger-resources-status-bar-item:active { 2232 #resources-filter {
2148 background-position: 32px 0; 2233 height: 24px;
2234 padding: 2px 10px 0;
2235 background: -webkit-gradient(linear, left top, left bottom, from(rgb(233, 23 3, 233)), to(rgb(207, 207, 207)));
2236 border-bottom: 1px solid rgb(177, 177, 177);
2237 overflow: hidden;
2149 } 2238 }
2150 2239
2151 #resources-larger-resources-status-bar-item.toggled-on { 2240 #resources-filter li {
2152 background-position: 0 24px; 2241 display: inline-block;
2242 margin: 1px 1px 0 0;
2243 padding: 0 6px 3px;
2244 font-size: 12px;
2245 line-height: 12px;
2246 font-weight: bold;
2247 color: rgb(40, 40, 40);
2248 border: 1px solid transparent;
2249 border-bottom: 0;
2250 background: transparent;
2251 -webkit-border-radius: 8px;
2252 text-shadow: rgba(255, 255, 255, 0.5) 1px 1px 0;
2153 } 2253 }
2154 2254
2155 #resources-larger-resources-status-bar-item.toggled-on:active { 2255 #resources-filter li.selected, #resources-filter li:hover, #resources-filter li: active {
2156 background-position: 32px 24px; 2256 color: white;
2257 text-shadow: rgb(80, 80, 80) 1px 1px 1px;
2258 background: rgba(20, 20, 20, 0.4);
2259 border-color: rgba(20, 20, 20, 0.2);
2260 -webkit-box-shadow: 0 1px 0px rgba(255, 255, 255, 0.5);
2261 }
2262
2263 #resources-filter li:hover {
2264 background: rgba(20, 20, 20, 0.4);
2265 border-color: transparent;
2266 -webkit-box-shadow: none;
2267 }
2268
2269 #resources-filter li:active {
2270 background: rgba(20, 20, 20, 0.6);
2157 } 2271 }
2158 2272
2159 #resources-container { 2273 #resources-container {
2160 position: absolute; 2274 position: absolute;
2161 top: 0; 2275 top: 24px;
2162 left: 0; 2276 left: 0;
2163 bottom: 0; 2277 bottom: 0;
2164 right: 0; 2278 right: 0;
2165 border-right: 0 none transparent; 2279 border-right: 0 none transparent;
2166 overflow-y: auto; 2280 overflow-y: auto;
2167 overflow-x: hidden; 2281 overflow-x: hidden;
2168 } 2282 }
2169 2283
2170 #resources-container.viewing-resource { 2284 #resources-container.viewing-resource {
2171 right: auto; 2285 right: auto;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
2211 background-position: bottom; 2325 background-position: bottom;
2212 text-align: center; 2326 text-align: center;
2213 text-shadow: black 0 1px 1px; 2327 text-shadow: black 0 1px 1px;
2214 white-space: nowrap; 2328 white-space: nowrap;
2215 color: white; 2329 color: white;
2216 -webkit-background-size: 1px 6px; 2330 -webkit-background-size: 1px 6px;
2217 -webkit-background-origin: padding; 2331 -webkit-background-origin: padding;
2218 -webkit-background-clip: padding; 2332 -webkit-background-clip: padding;
2219 } 2333 }
2220 2334
2221 #resources-graph-legend { 2335 .summary-graph-legend {
2222 margin-top: -10px; 2336 margin-top: -10px;
2223 padding-left: 15px; 2337 padding-left: 15px;
2224 } 2338 }
2225 2339
2226 .resources-graph-legend-item { 2340 .summary-graph-legend-item {
2227 display: inline-block; 2341 display: inline-block;
2228 font-weight: bold; 2342 font-weight: bold;
2229 margin-right: 15px; 2343 margin-right: 15px;
2230 vertical-align: top; 2344 vertical-align: top;
2231 } 2345 }
2232 2346
2233 .resources-graph-legend-item.total { 2347 .summary-graph-legend-item.total {
2234 margin-left: 10px; 2348 margin-left: 10px;
2235 } 2349 }
2236 2350
2237 .resources-graph-legend-label { 2351 .summary-graph-legend-label {
2238 display: inline-block; 2352 display: inline-block;
2239 text-align: left; 2353 text-align: left;
2240 } 2354 }
2241 2355
2242 .resources-graph-legend-header { 2356 .summary-graph-legend-header {
2243 font-size: 12px; 2357 font-size: 12px;
2244 } 2358 }
2245 2359
2246 .resources-graph-legend-value { 2360 .summary-graph-legend-value {
2247 font-size: 10px; 2361 font-size: 10px;
2248 } 2362 }
2249 2363
2250 .resources-graph-legend-swatch { 2364 .summary-graph-legend-swatch {
2251 vertical-align: top; 2365 vertical-align: top;
2252 margin-top: 1px; 2366 margin-top: 1px;
2253 margin-right: 3px; 2367 margin-right: 3px;
2254 } 2368 }
2255 2369
2256 #resources-dividers { 2370 #resources-dividers {
2257 position: absolute; 2371 position: absolute;
2258 left: 0; 2372 left: 0;
2259 right: 0; 2373 right: 0;
2260 height: 100%; 2374 height: 100%;
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
2356 top: 0; 2470 top: 0;
2357 bottom: 0; 2471 bottom: 0;
2358 margin: auto -7px; 2472 margin: auto -7px;
2359 border-width: 6px 7px; 2473 border-width: 6px 7px;
2360 height: 13px; 2474 height: 13px;
2361 min-width: 14px; 2475 min-width: 14px;
2362 opacity: 0.65; 2476 opacity: 0.65;
2363 -webkit-border-image: url(Images/timelinePillGray.png) 6 7 6 7; 2477 -webkit-border-image: url(Images/timelinePillGray.png) 6 7 6 7;
2364 } 2478 }
2365 2479
2480 .resources-category-documents, .resources-category-stylesheets, .resources-categ ory-images,
2481 .resources-category-scripts, .resources-category-xhr, .resources-category-fonts, .resources-category-other {
2482 display: none;
2483 }
2484
2485 .filter-all .resources-category-documents, .filter-documents .resources-category -documents,
2486 .filter-all .resources-category-stylesheets, .filter-stylesheets .resources-cate gory-stylesheets,
2487 .filter-all .resources-category-images, .filter-images .resources-category-image s,
2488 .filter-all .resources-category-scripts, .filter-scripts .resources-category-scr ipts,
2489 .filter-all .resources-category-xhr, .filter-xhr .resources-category-xhr,
2490 .filter-all .resources-category-fonts, .filter-fonts .resources-category-fonts,
2491 .filter-all .resources-category-other, .filter-other .resources-category-other,
2492 .resource-sidebar-tree-item.selected {
2493 display: list-item;
2494 }
2495
2366 .resources-graph-bar.waiting { 2496 .resources-graph-bar.waiting {
2367 opacity: 0.35; 2497 opacity: 0.35;
2368 } 2498 }
2369 2499
2370 .resource-cached .resources-graph-bar { 2500 .resource-cached .resources-graph-bar {
2371 -webkit-border-image: url(Images/timelineHollowPillGray.png) 6 7 6 7; 2501 -webkit-border-image: url(Images/timelineHollowPillGray.png) 6 7 6 7;
2372 } 2502 }
2373 2503
2374 .resources-category-documents .resources-graph-bar { 2504 .resources-category-documents .resources-graph-bar {
2375 -webkit-border-image: url(Images/timelinePillBlue.png) 6 7 6 7; 2505 -webkit-border-image: url(Images/timelinePillBlue.png) 6 7 6 7;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
2459 margin-left: 2px; 2589 margin-left: 2px;
2460 } 2590 }
2461 2591
2462 .tip-balloon.bottom .tip-balloon-content { 2592 .tip-balloon.bottom .tip-balloon-content {
2463 margin-top: -10px; 2593 margin-top: -10px;
2464 margin-bottom: -35px; 2594 margin-bottom: -35px;
2465 } 2595 }
2466 2596
2467 #resource-views { 2597 #resource-views {
2468 position: absolute; 2598 position: absolute;
2469 top: 0; 2599 top: 24px;
2470 right: 0; 2600 right: 0;
2471 left: 200px; 2601 left: 200px;
2472 bottom: 0; 2602 bottom: 0;
2473 } 2603 }
2474 2604
2475 .source-view-frame { 2605 .source-view-frame {
2476 width: 100%; 2606 width: 100%;
2477 height: 100%; 2607 height: 100%;
2478 } 2608 }
2479 2609
2480 .sidebar-resizer-vertical { 2610 .sidebar-resizer-vertical {
2481 position: absolute; 2611 position: absolute;
2482 top: 0; 2612 top: 0;
2483 bottom: 0; 2613 bottom: 0;
2484 width: 5px; 2614 width: 5px;
2485 z-index: 500; 2615 z-index: 500;
2486 cursor: col-resize; 2616 cursor: col-resize;
2487 } 2617 }
2488 2618
2619 .resources .sidebar-resizer-vertical {
2620 top: 24px;
2621 }
2622
2489 .sidebar-tree, .sidebar-tree .children { 2623 .sidebar-tree, .sidebar-tree .children {
2490 position: relative; 2624 position: relative;
2491 padding: 0; 2625 padding: 0;
2492 margin: 0; 2626 margin: 0;
2493 list-style: none; 2627 list-style: none;
2494 font-size: 11px; 2628 font-size: 11px;
2495 } 2629 }
2496 2630
2497 .sidebar-tree-section { 2631 .sidebar-tree-section {
2498 position: relative; 2632 position: relative;
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
2965 } 3099 }
2966 3100
2967 .data-grid tr.selected .profile-node-file { 3101 .data-grid tr.selected .profile-node-file {
2968 color: rgb(33%, 33%, 33%); 3102 color: rgb(33%, 33%, 33%);
2969 } 3103 }
2970 3104
2971 .data-grid:focus tr.selected .profile-node-file { 3105 .data-grid:focus tr.selected .profile-node-file {
2972 color: white; 3106 color: white;
2973 } 3107 }
2974 3108
2975 #record-profile-status-bar-item { 3109 button.enable-toggle-status-bar-item .glyph {
2976 background-image: url(Images/recordButtons.png);
2977 } 3110 }
2978 3111
2979 #record-profile-status-bar-item:active { 3112 .record-profile-status-bar-item .glyph {
2980 background-position: 32px 0; 3113 -webkit-mask-image: url(Images/recordButtonGlyph.png);
2981 } 3114 }
2982 3115
2983 #record-profile-status-bar-item.toggled-on { 3116 .record-profile-status-bar-item.toggled-on .glyph {
2984 background-position: 0 24px; 3117 -webkit-mask-image: url(Images/recordToggledButtonGlyph.png);
3118 background-color: rgb(216, 0, 0) !important;
2985 } 3119 }
2986 3120
2987 #record-profile-status-bar-item.toggled-on:active { 3121 /* FIXME: should have its own glyph. */
2988 background-position: 32px 24px; 3122 .heap-snapshot-status-bar-item .glyph {
3123 -webkit-mask-image: url(Images/focusButtonGlyph.png);
2989 } 3124 }
2990 3125
2991 #node-search-status-bar-item { 3126 .node-search-status-bar-item .glyph {
2992 background-image: url(Images/nodeSearchButtons.png); 3127 -webkit-mask-image: url(Images/nodeSearchButtonGlyph.png);
2993 } 3128 }
2994 3129
2995 #node-search-status-bar-item:active { 3130 .percent-time-status-bar-item .glyph {
2996 background-position: 32px 0; 3131 -webkit-mask-image: url(Images/percentButtonGlyph.png);
2997 } 3132 }
2998 3133
2999 #node-search-status-bar-item.toggled-on { 3134 .focus-profile-node-status-bar-item .glyph {
3000 background-position: 0 24px; 3135 -webkit-mask-image: url(Images/focusButtonGlyph.png);
3001 } 3136 }
3002 3137
3003 #node-search-status-bar-item.toggled-on:active { 3138 .exclude-profile-node-status-bar-item .glyph {
3004 background-position: 32px 24px; 3139 -webkit-mask-image: url(Images/excludeButtonGlyph.png);
3005 } 3140 }
3006 3141
3007 .percent-time-status-bar-item { 3142 .reset-profile-status-bar-item .glyph {
3008 background-image: url(Images/percentButtons.png) !important; 3143 -webkit-mask-image: url(Images/reloadButtonGlyph.png);
3009 } 3144 }
3010 3145
3011 .percent-time-status-bar-item:active { 3146 .delete-storage-status-bar-item .glyph {
3012 background-position: 32px 0; 3147 -webkit-mask-image: url(Images/excludeButtonGlyph.png);
3013 }
3014
3015 .percent-time-status-bar-item.toggled-on {
3016 background-position: 0 24px;
3017 }
3018
3019 .percent-time-status-bar-item.toggled-on:active {
3020 background-position: 32px 24px;
3021 }
3022
3023 .focus-profile-node-status-bar-item {
3024 background-image: url(Images/focusButtons.png) !important;
3025 }
3026
3027 .focus-profile-node-status-bar-item:active {
3028 background-position: 32px 0;
3029 }
3030
3031 .exclude-profile-node-status-bar-item {
3032 background-image: url(Images/excludeButtons.png) !important;
3033 }
3034
3035 .exclude-profile-node-status-bar-item:active {
3036 background-position: 32px 0;
3037 }
3038
3039 .reset-profile-status-bar-item {
3040 background-image: url(Images/reloadButtons.png) !important;
3041 }
3042
3043 .reset-profile-status-bar-item:active {
3044 background-position: 32px 0;
3045 }
3046
3047 .delete-storage-status-bar-item {
3048 background-image: url(Images/excludeButtons.png) !important;
3049 }
3050
3051 .delete-storage-status-bar-item:active {
3052 background-position: 32px 0;
3053 } 3148 }
3054 3149
3055 #storage-view-status-bar-items { 3150 #storage-view-status-bar-items {
3056 position: absolute; 3151 position: absolute;
3057 top: 0; 3152 top: 0;
3058 bottom: 0; 3153 bottom: 0;
3059 left: 200px; 3154 left: 200px;
3060 overflow: hidden; 3155 overflow: hidden;
3061 border-left: 1px solid rgb(184, 184, 184); 3156 border-left: 1px solid rgb(184, 184, 184);
3062 margin-left: -1px; 3157 margin-left: -1px;
3063 } 3158 }
3064 3159
3065 .refresh-storage-status-bar-item { 3160 .refresh-storage-status-bar-item .glyph {
3066 background-image: url(Images/reloadButtons.png) !important; 3161 -webkit-mask-image: url(Images/reloadButtonGlyph.png);
3067 }
3068
3069 .refresh-storage-status-bar-item:active {
3070 background-position: 32px 0;
3071 } 3162 }
3072 3163
3073 #storage-view-status-bar-items { 3164 #storage-view-status-bar-items {
3074 position: absolute; 3165 position: absolute;
3075 top: 0; 3166 top: 0;
3076 bottom: 0; 3167 bottom: 0;
3077 left: 200px; 3168 left: 200px;
3078 overflow: hidden; 3169 overflow: hidden;
3079 border-left: 1px solid rgb(184, 184, 184); 3170 border-left: 1px solid rgb(184, 184, 184);
3080 margin-left: -1px; 3171 margin-left: -1px;
3081 } 3172 }
3173
3174 ol.breakpoint-list {
3175 -webkit-padding-start: 2px;
3176 list-style: none;
3177 margin: 0;
3178 }
3179
3180 .breakpoint-list li {
3181 white-space: nowrap;
3182 text-overflow: ellipsis;
3183 overflow: hidden;
3184 margin: 4px 0;
3185 }
3186
3187 .breakpoint-list .checkbox-elem {
3188 font-size: 10px;
3189 margin: 0 4px;
3190 vertical-align: top;
3191 position: relative;
3192 z-index: 1;
3193 }
3194
3195 .breakpoint-list .source-text {
3196 font-family: monospace;
3197 white-space: nowrap;
3198 text-overflow: ellipsis;
3199 overflow: hidden;
3200 margin: 2px 0 0px 20px;
3201 }
3202
3203 .breakpoint-list a {
3204 color: rgb(33%, 33%, 33%);
3205 cursor: pointer;
3206 }
3207
3208 .breakpoint-list a:hover {
3209 color: rgb(15%, 15%, 15%);
3210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698