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

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

Issue 423433004: DevTools: move the "Capture *" checkboxes from timeline sidebar to the toolbar. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 19 matching lines...) Expand all
30 #timeline-overview-panel { 30 #timeline-overview-panel {
31 flex: none; 31 flex: none;
32 position: relative; 32 position: relative;
33 border-bottom: 1px solid rgb(140, 140, 140); 33 border-bottom: 1px solid rgb(140, 140, 140);
34 } 34 }
35 35
36 #timeline-overview-panel .timeline-graph-bar { 36 #timeline-overview-panel .timeline-graph-bar {
37 pointer-events: none; 37 pointer-events: none;
38 } 38 }
39 39
40 #timeline-overview-panel .split-view-sidebar > label {
41 margin: 6px 0 3px 5px;
42 height: auto;
43 display: flex;
44 }
45
46 #timeline-overview-panel .split-view-sidebar > label > input {
47 margin-right: 6px;
48 }
49
50 .timeline-records-title, .timeline-records-list { 40 .timeline-records-title, .timeline-records-list {
51 background-color: rgb(236, 236, 236); 41 background-color: rgb(236, 236, 236);
52 } 42 }
53 43
54 .timeline-records-title { 44 .timeline-records-title {
55 padding: 3px 3px 3px 5px; 45 padding: 3px 3px 3px 5px;
56 flex: 0 0 19px; 46 flex: 0 0 19px;
57 color: rgb(92, 110, 129); text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; 47 color: rgb(92, 110, 129); text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
58 } 48 }
59 49
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 265
276 #timeline-overview-memory { 266 #timeline-overview-memory {
277 flex-basis: 20px; 267 flex-basis: 20px;
278 } 268 }
279 269
280 #timeline-overview-frames { 270 #timeline-overview-frames {
281 flex-basis: 79px; 271 flex-basis: 79px;
282 } 272 }
283 273
284 #timeline-overview-pane { 274 #timeline-overview-pane {
285 flex: none; 275 flex: auto;
286 position: relative; 276 position: relative;
287 overflow: hidden; 277 overflow: hidden;
288 } 278 }
289 279
290 #timeline-overview-container { 280 #timeline-overview-container {
291 display: flex; 281 display: flex;
292 flex-direction: column; 282 flex-direction: column;
293 flex: none; 283 flex: none;
294 position: relative; 284 position: relative;
295 overflow: hidden; 285 overflow: hidden;
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 } 812 }
823 813
824 .paint-profiler-image-view { 814 .paint-profiler-image-view {
825 overflow: hidden; 815 overflow: hidden;
826 } 816 }
827 817
828 .paint-profiler-image-view img { 818 .paint-profiler-image-view img {
829 border: solid 1px black; 819 border: solid 1px black;
830 -webkit-transform-origin: 0px 0px; 820 -webkit-transform-origin: 0px 0px;
831 } 821 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698