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

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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 } 592 }
593 593
594 .timeline-tree-view .data-grid .background-bar { 594 .timeline-tree-view .data-grid .background-bar {
595 float: right; 595 float: right;
596 height: 18px; 596 height: 18px;
597 background-color: hsla(43, 84%, 64%, 0.2); 597 background-color: hsla(43, 84%, 64%, 0.2);
598 border-bottom: 1px solid hsl(43, 84%, 64%); 598 border-bottom: 1px solid hsl(43, 84%, 64%);
599 } 599 }
600 600
601 .timeline-tree-view .data-grid .selected .background-bar { 601 .timeline-tree-view .data-grid .selected .background-bar {
602 background-color: rgba(255, 255, 255, 0.25); 602 background-color: rgba(255, 255, 255, 0.3);
603 border-bottom-color: rgba(255, 255, 255, 0.5); 603 border-bottom-color: rgba(255, 255, 255, 0.9);
604 } 604 }
605 605
606 .timeline-tree-view .timeline-details-view-body .full-widget-dimmed-banner { 606 .timeline-tree-view .timeline-details-view-body .full-widget-dimmed-banner {
607 background-color: inherit; 607 background-color: inherit;
608 } 608 }
609 609
610 .timeline-details .filter-input-field { 610 .timeline-details .filter-input-field {
611 width: 120px; 611 width: 120px;
612 } 612 }
613 613
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 } 672 }
673 673
674 .timeline-landing-warning-close { 674 .timeline-landing-warning-close {
675 float: right; 675 float: right;
676 margin-top: -10px; 676 margin-top: -10px;
677 margin-right: -13px; 677 margin-right: -13px;
678 } 678 }
679 679
680 .timeline-landing-warning span[is=ui-icon] { 680 .timeline-landing-warning span[is=ui-icon] {
681 margin: -8px; 681 margin: -8px;
682 } 682 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698