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

Side by Side Diff: Source/devtools/front_end/profilesPanel.css

Issue 668683002: DevTools: remove style reuse from flamechart clients, prepare it to become a component. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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
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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 257
258 .text-button.load-profile { 258 .text-button.load-profile {
259 margin-left: 20px; 259 margin-left: 20px;
260 } 260 }
261 261
262 .text-button.load-profile.multi-target { 262 .text-button.load-profile.multi-target {
263 display: block; 263 display: block;
264 margin-top: 14px; 264 margin-top: 14px;
265 margin-left: 0px; 265 margin-left: 0px;
266 } 266 }
267
268 .cpu-profile-flame-chart-overview-container {
269 overflow: hidden;
270 position: absolute;
271 top: 0;
272 width: 100%;
273 height: 80px;
274 }
275
276 #cpu-profile-flame-chart-overview-container {
277 border-bottom: 1px solid rgba(0, 0, 0, 0.3);
278 }
279
280 .cpu-profile-flame-chart-overview-canvas {
281 position: absolute;
282 top: 20px;
283 left: 0;
284 right: 0;
285 bottom: 0;
286 }
287
288 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar {
289 pointer-events: auto;
290 }
291
292 .cpu-profile-flame-chart-overview-pane {
293 flex: 0 0 80px !important;
294 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/profiler/HeapSnapshotView.js ('k') | Source/devtools/front_end/timeline/TimelineFlameChart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698