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

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

Issue 1636853002: Timeline: simplify handling of event category colors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | « third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 text-align: right; 208 text-align: right;
209 } 209 }
210 210
211 .timeline-aggregated-legend-swatch { 211 .timeline-aggregated-legend-swatch {
212 display: inline-block; 212 display: inline-block;
213 width: 11px; 213 width: 11px;
214 height: 11px; 214 height: 11px;
215 margin: 0 6px; 215 margin: 0 6px;
216 position: relative; 216 position: relative;
217 top: 1px; 217 top: 1px;
218 border: 1px solid; 218 border: 1px solid rgba(0, 0, 0, 0.2);
219 } 219 }
220 220
221 .popover ul { 221 .popover ul {
222 margin: 0; 222 margin: 0;
223 padding: 0; 223 padding: 0;
224 list-style-type: none; 224 list-style-type: none;
225 } 225 }
226 226
227 #resources-container-content { 227 #resources-container-content {
228 overflow: hidden; 228 overflow: hidden;
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 .timeline-details-chip-title { 371 .timeline-details-chip-title {
372 font-size: 13px; 372 font-size: 13px;
373 padding: 8px; 373 padding: 8px;
374 display: flex; 374 display: flex;
375 align-items: center; 375 align-items: center;
376 } 376 }
377 377
378 .timeline-details-chip-title > div { 378 .timeline-details-chip-title > div {
379 width: 12px; 379 width: 12px;
380 height: 12px; 380 height: 12px;
381 border: 1px solid rgba(0, 0, 0, 0.2);
381 display: inline-block; 382 display: inline-block;
382 margin-right: 4px; 383 margin-right: 4px;
383 content: " "; 384 content: " ";
384 } 385 }
385 386
386 .timeline-details-view-row-title { 387 .timeline-details-view-row-title {
387 color: rgb(152, 152, 152); 388 color: rgb(152, 152, 152);
388 overflow: hidden; 389 overflow: hidden;
389 } 390 }
390 391
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 border-bottom: 1px solid #ddd; 730 border-bottom: 1px solid #ddd;
730 background-color: #f3f3f3 731 background-color: #f3f3f3
731 } 732 }
732 733
733 .timeline-stack-view-header { 734 .timeline-stack-view-header {
734 height: 26px; 735 height: 26px;
735 background-color: white; 736 background-color: white;
736 padding: 6px 10px; 737 padding: 6px 10px;
737 color: #5a5a5a; 738 color: #5a5a5a;
738 } 739 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698