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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/profiler/heapProfiler.css

Issue 2353033004: [DevTools] Expose left and right toolbar in TabbedPane. (Closed)
Patch Set: review comment Created 4 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2010 Apple Inc. All rights reserved.
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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 padding-top: 3px; 91 padding-top: 3px;
92 vertical-align: middle; 92 vertical-align: middle;
93 margin-left: 4px; 93 margin-left: 4px;
94 margin-right: 8px; 94 margin-right: 8px;
95 } 95 }
96 96
97 .heap-snapshot-view .heap-snapshot-view-resizer * { 97 .heap-snapshot-view .heap-snapshot-view-resizer * {
98 pointer-events: none; 98 pointer-events: none;
99 } 99 }
100 100
101 .heap-snapshot-view .heap-object-details-header {
102 background-color: #eee;
103 }
104
105 .heap-snapshot-view tr:not(.selected) td.object-column span.highlight { 101 .heap-snapshot-view tr:not(.selected) td.object-column span.highlight {
106 background-color: rgb(255, 255, 200); 102 background-color: rgb(255, 255, 200);
107 } 103 }
108 104
109 .heap-snapshot-view td.object-column span.grayed { 105 .heap-snapshot-view td.object-column span.grayed {
110 color: gray; 106 color: gray;
111 } 107 }
112 108
113 .cycled-ancessor-node { 109 .cycled-ancessor-node {
114 opacity: 0.6; 110 opacity: 0.6;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 padding: 2px; 180 padding: 2px;
185 } 181 }
186 182
187 .heap-allocation-stack .stack-frame a { 183 .heap-allocation-stack .stack-frame a {
188 color: rgb(33%, 33%, 33%); 184 color: rgb(33%, 33%, 33%);
189 } 185 }
190 186
191 .no-heap-allocation-stack { 187 .no-heap-allocation-stack {
192 padding: 5px; 188 padding: 5px;
193 } 189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698