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

Side by Side Diff: Source/devtools/front_end/timeline/timelinePanel.css

Issue 1178563002: DevTools: Refactor network panel overview (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
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 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 position: absolute; 505 position: absolute;
506 height: 19px; 506 height: 19px;
507 padding-top: 3px; 507 padding-top: 3px;
508 } 508 }
509 509
510 .timeline-frame-strip.selected { 510 .timeline-frame-strip.selected {
511 background-color: rgb(56, 121, 217); 511 background-color: rgb(56, 121, 217);
512 color: white; 512 color: white;
513 } 513 }
514 514
515 #timeline-grid-header {
516 pointer-events: none;
517 height: 20px;
518 }
519
520 #timeline-graph-records-header { 515 #timeline-graph-records-header {
521 pointer-events: none; 516 pointer-events: none;
522 height: 19px; 517 height: 19px;
523 padding: 1px 0; 518 padding: 1px 0;
524 justify-content: center; 519 justify-content: center;
525 } 520 }
526 521
527 .timeline-utilization-strip { 522 .timeline-utilization-strip {
528 z-index: 250; 523 z-index: 250;
529 overflow: hidden; 524 overflow: hidden;
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
862 .timeline-gap { 857 .timeline-gap {
863 flex: none; 858 flex: none;
864 } 859 }
865 860
866 .timeline-filmstrip-preview { 861 .timeline-filmstrip-preview {
867 margin-top: 10px; 862 margin-top: 10px;
868 max-width: 200px; 863 max-width: 200px;
869 max-height: 200px; 864 max-height: 200px;
870 cursor: pointer; 865 cursor: pointer;
871 } 866 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698