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

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

Issue 1315643009: DevTools: Tweak timeline tree view bars (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/timeline/TimelineTreeView.js ('k') | 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) 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 1021 matching lines...) Expand 10 before | Expand all | Expand 10 after
1032 border: 1px solid rgba(0, 0, 0, 0.1); 1032 border: 1px solid rgba(0, 0, 0, 0.1);
1033 } 1033 }
1034 1034
1035 .timeline-tree-view .data-grid .name-container .activity-link { 1035 .timeline-tree-view .data-grid .name-container .activity-link {
1036 flex: auto; 1036 flex: auto;
1037 text-align: right; 1037 text-align: right;
1038 overflow: hidden; 1038 overflow: hidden;
1039 text-overflow: ellipsis; 1039 text-overflow: ellipsis;
1040 } 1040 }
1041 1041
1042 .timeline-tree-view .data-grid .background-bar-container {
1043 position: absolute;
1044 left: 3px;
1045 right: 0;
1046 }
1047
1042 .timeline-tree-view .data-grid .background-bar { 1048 .timeline-tree-view .data-grid .background-bar {
1049 float: right;
paulirish 2015/09/10 00:11:43 The render times will be much faster if we do this
alph 2015/09/10 17:37:09 Bars were shown 2px less than they are. So if a ba
1043 height: 15px; 1050 height: 15px;
1044 background-color: hsla(0, 100%, 74%, 0.1); 1051 background-color: hsla(43, 84%, 64%, 0.2);
1045 position: absolute; 1052 border-bottom: 1px solid hsl(43, 84%, 64%);
1046 right: -2px;
1047 bottom: 0px;
1048 border-bottom: 1px solid hsl(0, 100%, 74%);
1049 } 1053 }
1050 1054
1051 .timeline-tree-view .data-grid .selected .background-bar { 1055 .timeline-tree-view .data-grid .selected .background-bar {
1052 background-color: rgba(255,255,255,0.25); 1056 background-color: rgba(255, 255, 255, 0.25);
1053 border-bottom-color: transparent; 1057 border-bottom-color: transparent;
1054 } 1058 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/timeline/TimelineTreeView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698