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

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

Issue 1304193004: DevTools: [timeline] Include other thread costs in overview (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: addressing comments Created 5 years, 4 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 | « Source/devtools/front_end/timeline/TimelinePanel.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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 font-weight: bold; 261 font-weight: bold;
262 text-transform: uppercase; 262 text-transform: uppercase;
263 z-index: -100; 263 z-index: -100;
264 margin-left: 10px; 264 margin-left: 10px;
265 } 265 }
266 266
267 #timeline-overview-network { 267 #timeline-overview-network {
268 flex-basis: 25px; 268 flex-basis: 25px;
269 } 269 }
270 270
271 #timeline-overview-main-thread, 271 #timeline-overview-cpu-activity,
272 #timeline-overview-framerate, 272 #timeline-overview-framerate,
273 #timeline-overview-memory { 273 #timeline-overview-memory {
274 flex-basis: 21px; 274 flex-basis: 21px;
275 } 275 }
276 276
277 #timeline-overview-filmstrip { 277 #timeline-overview-filmstrip {
278 flex-basis: 81px; 278 flex-basis: 81px;
279 } 279 }
280 280
281 .overview-strip::before { 281 .overview-strip::before {
282 content: ""; 282 content: "";
283 position: absolute; 283 position: absolute;
284 right: 0; 284 right: 0;
285 top: 0; 285 top: 0;
286 bottom: 0; 286 bottom: 0;
287 left: 0; 287 left: 0;
288 color: #888; 288 color: #888;
289 text-align: right; 289 text-align: right;
290 padding: 1px 4px; 290 padding: 1px 4px;
291 font-size: 9px; 291 font-size: 9px;
292 border-bottom: 1px solid hsla(0, 0%, 0%, 0.06); 292 border-bottom: 1px solid hsla(0, 0%, 0%, 0.06);
293 z-index: -200; 293 z-index: -200;
294 } 294 }
295 295
296 #timeline-overview-responsiveness::before { 296 #timeline-overview-responsiveness::before {
297 display: none; 297 display: none;
298 } 298 }
299 299
300 #timeline-overview-main-thread::before { 300 #timeline-overview-cpu-activity::before {
301 content: "100%"; 301 content: "100%";
302 } 302 }
303 303
304 #timeline-overview-cpu-activity .background {
305 opacity: 0.15;
306 z-index: -10;
307 }
308
304 #timeline-overview-framerate::before { 309 #timeline-overview-framerate::before {
305 content: "60 fps"; 310 content: "60 fps";
306 } 311 }
307 312
308 #timeline-overview-responsiveness { 313 #timeline-overview-responsiveness {
309 flex-basis: 6px; 314 flex-basis: 6px;
310 margin-top: 1px !important; 315 margin-top: 1px !important;
311 } 316 }
312 317
313 #timeline-overview-input { 318 #timeline-overview-input {
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after
1053 position: absolute; 1058 position: absolute;
1054 right: -2px; 1059 right: -2px;
1055 bottom: 0px; 1060 bottom: 0px;
1056 border-bottom: 1px solid hsl(0, 100%, 74%); 1061 border-bottom: 1px solid hsl(0, 100%, 74%);
1057 } 1062 }
1058 1063
1059 .timeline-tree-view .data-grid .selected .background-bar { 1064 .timeline-tree-view .data-grid .selected .background-bar {
1060 background-color: rgba(255,255,255,0.25); 1065 background-color: rgba(255,255,255,0.25);
1061 border-bottom-color: transparent; 1066 border-bottom-color: transparent;
1062 } 1067 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/timeline/TimelinePanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698