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

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

Issue 1309723003: DevTools: Refactor memory counter display (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: default formatter complete 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
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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 background-color: #eee; 456 background-color: #eee;
457 overflow-y: hidden; 457 overflow-y: hidden;
458 } 458 }
459 459
460 #memory-graphs-container .sidebar-tree-section { 460 #memory-graphs-container .sidebar-tree-section {
461 flex: 0 0 24px; 461 flex: 0 0 24px;
462 padding: 5px 0 0 5px; 462 padding: 5px 0 0 5px;
463 } 463 }
464 464
465 .memory-counter-sidebar-info { 465 .memory-counter-sidebar-info {
466 flex: 0 0 18px; 466 flex: 0 0 20px;
467 margin-left: 5px; 467 margin-left: 5px;
468 white-space: nowrap; 468 white-space: nowrap;
469 } 469 }
470 470
471 .memory-counter-sidebar-info .swatch { 471 .memory-counter-sidebar-info .range {
472 margin-left: 1px; 472 margin: 0 4px;
473 margin-right: 2px; 473 align-items: center;
474 width: 10px; 474 display: inline-flex;
475 height: 10px;
476 position: relative;
477 top: 1px;
478 display: inline-block;
479 line-height: 1px;
480 background-image: none;
481 border: 1px solid rgba(0,0,0,0.3);
482 opacity: 0.5;
483 -webkit-user-select: none;
484 }
485
486 .memory-counter-sidebar-info .title {
487 margin: 4px;
488 } 475 }
489 476
490 .memory-counter-value { 477 .memory-counter-value {
491 margin: 4px; 478 margin: 4px;
492 } 479 }
493 480
494 #counter-values-bar { 481 #counter-values-bar {
495 flex: 0 0 18px; 482 flex: 0 0 18px;
496 border-bottom: solid 1px lightgray; 483 border-bottom: solid 1px lightgray;
497 width: 100%; 484 width: 100%;
(...skipping 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
1058 position: absolute; 1045 position: absolute;
1059 right: -2px; 1046 right: -2px;
1060 bottom: 0px; 1047 bottom: 0px;
1061 border-bottom: 1px solid hsl(0, 100%, 74%); 1048 border-bottom: 1px solid hsl(0, 100%, 74%);
1062 } 1049 }
1063 1050
1064 .timeline-tree-view .data-grid .selected .background-bar { 1051 .timeline-tree-view .data-grid .selected .background-bar {
1065 background-color: rgba(255,255,255,0.25); 1052 background-color: rgba(255,255,255,0.25);
1066 border-bottom-color: transparent; 1053 border-bottom-color: transparent;
1067 } 1054 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/timeline/TimelinePanel.js ('k') | Source/devtools/front_end/ui/FilterBar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698