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

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

Issue 2829923002: DevTools: Base aggregated tree view percentage on the busy time. (Closed)
Patch Set: . Created 3 years, 8 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 * 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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 } 583 }
584 584
585 .timeline-tree-view .data-grid .background-bar { 585 .timeline-tree-view .data-grid .background-bar {
586 float: right; 586 float: right;
587 height: 18px; 587 height: 18px;
588 background-color: hsla(43, 84%, 64%, 0.2); 588 background-color: hsla(43, 84%, 64%, 0.2);
589 border-bottom: 1px solid hsl(43, 84%, 64%); 589 border-bottom: 1px solid hsl(43, 84%, 64%);
590 } 590 }
591 591
592 .timeline-tree-view .data-grid .selected .background-bar { 592 .timeline-tree-view .data-grid .selected .background-bar {
593 background-color: rgba(255, 255, 255, 0.25); 593 background-color: rgba(255, 255, 255, 0.3);
594 border-bottom-color: rgba(255, 255, 255, 0.5); 594 border-bottom-color: rgba(255, 255, 255, 0.9);
595 } 595 }
596 596
597 .timeline-tree-view .timeline-details-view-body .full-widget-dimmed-banner { 597 .timeline-tree-view .timeline-details-view-body .full-widget-dimmed-banner {
598 background-color: inherit; 598 background-color: inherit;
599 } 599 }
600 600
601 .timeline-details .filter-input-field { 601 .timeline-details .filter-input-field {
602 width: 120px; 602 width: 120px;
603 } 603 }
604 604
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 } 663 }
664 664
665 .timeline-landing-warning-close { 665 .timeline-landing-warning-close {
666 float: right; 666 float: right;
667 margin-top: -10px; 667 margin-top: -10px;
668 margin-right: -13px; 668 margin-right: -13px;
669 } 669 }
670 670
671 .timeline-landing-warning span[is=ui-icon] { 671 .timeline-landing-warning span[is=ui-icon] {
672 margin: -8px; 672 margin: -8px;
673 } 673 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698