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

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

Issue 2912563003: DevTools: cleanup button styles (Closed)
Patch Set: a Created 3 years, 6 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 193
194 .profile-canvas-decoration button { 194 .profile-canvas-decoration button {
195 margin: 0 0 0 10px !important; 195 margin: 0 0 0 10px !important;
196 } 196 }
197 197
198 .js_profiler.panel select.chrome-select, 198 .js_profiler.panel select.chrome-select,
199 .heap_profiler.panel select.chrome-select { 199 .heap_profiler.panel select.chrome-select {
200 width: 150px; 200 width: 150px;
201 } 201 }
202 202
203 button.load-profile { 203 button {
pfeldman 2017/05/30 21:18:17 We might have other buttons inside profiles panel
luoe 2017/05/30 22:39:45 I want these margin/width styles to apply to both
204 margin-top: 10px; 204 margin-top: 10px;
205 margin-right: 8px;
205 min-width: 110px; 206 min-width: 110px;
206 } 207 }
207 208
208
209 .cpu-profile-flame-chart-overview-container { 209 .cpu-profile-flame-chart-overview-container {
210 overflow: hidden; 210 overflow: hidden;
211 position: absolute; 211 position: absolute;
212 top: 0; 212 top: 0;
213 width: 100%; 213 width: 100%;
214 height: 80px; 214 height: 80px;
215 } 215 }
216 216
217 #cpu-profile-flame-chart-overview-container { 217 #cpu-profile-flame-chart-overview-container {
218 border-bottom: 1px solid rgba(0, 0, 0, 0.3); 218 border-bottom: 1px solid rgba(0, 0, 0, 0.3);
219 } 219 }
220 220
221 .cpu-profile-flame-chart-overview-canvas { 221 .cpu-profile-flame-chart-overview-canvas {
222 position: absolute; 222 position: absolute;
223 top: 20px; 223 top: 20px;
224 left: 0; 224 left: 0;
225 right: 0; 225 right: 0;
226 bottom: 0; 226 bottom: 0;
227 } 227 }
228 228
229 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar { 229 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar {
230 pointer-events: auto; 230 pointer-events: auto;
231 } 231 }
232 232
233 .cpu-profile-flame-chart-overview-pane { 233 .cpu-profile-flame-chart-overview-pane {
234 flex: 0 0 80px !important; 234 flex: 0 0 80px !important;
235 } 235 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698