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

Side by Side Diff: Source/devtools/front_end/networkLogView.css

Issue 466703002: DevTools: get rid of Element.prototype.removeMatchingStyleClasses (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Quick-Fix Created 6 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 background: linear-gradient(0deg, hsl(0, 0%, 73%), hsl(0, 0%, 78%)); 356 background: linear-gradient(0deg, hsl(0, 0%, 73%), hsl(0, 0%, 78%));
357 } 357 }
358 358
359 .network-graph-bar.waiting { 359 .network-graph-bar.waiting {
360 opacity: 0.35; 360 opacity: 0.35;
361 } 361 }
362 362
363 /* Resource categories */ 363 /* Resource categories */
364 364
365 365
366 .resource-cached .network-graph-bar { 366 .network-graph-bar.cached {
367 background: hsl(0, 0%, 90%); 367 background: hsl(0, 0%, 90%);
368 box-shadow: inset 0 1px 1px 0px rgba(255, 255, 255, 0.8), 368 box-shadow: inset 0 1px 1px 0px rgba(255, 255, 255, 0.8),
369 inset 0 0 0 2px hsl(0, 0%, 73%), 369 inset 0 0 0 2px hsl(0, 0%, 73%),
370 inset 0 1px 0 2px hsla(0, 0%, 76%, 0.85); 370 inset 0 1px 0 2px hsla(0, 0%, 76%, 0.85);
371 } 371 }
372 372
373 .network-graph-bar.document { 373 .network-graph-bar.document {
374 border-color: hsl(215, 49%, 52%); 374 border-color: hsl(215, 49%, 52%);
375 background: linear-gradient(0deg, hsl(215, 72%, 61%), hsl(215, 100%, 69%)); 375 background: linear-gradient(0deg, hsl(215, 72%, 61%), hsl(215, 100%, 69%));
376 } 376 }
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 564
565 #network-container { 565 #network-container {
566 overflow-y: auto; 566 overflow-y: auto;
567 overflow-x: hidden; 567 overflow-x: hidden;
568 } 568 }
569 569
570 /* Brief mode peculiarities. */ 570 /* Brief mode peculiarities. */
571 #network-container.brief-mode .network-timeline-grid { 571 #network-container.brief-mode .network-timeline-grid {
572 display: none; 572 display: none;
573 } 573 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698