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

Side by Side Diff: chrome/browser/resources/tracing/timeline_view.css

Issue 9923005: [WebUI] Fix rest of CSS style nits so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: padding fixes, remove a no-op change Created 8 years, 8 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 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 * Use of this source code is governed by a BSD-style license that can be
3 Use of this source code is governed by a BSD-style license that can be 3 * found in the LICENSE file.
4 found in the LICENSE file. 4 */
5 */ 5
6 .timeline-view { 6 .timeline-view {
7 -webkit-box-flex: 1;
8 -webkit-box-orient: vertical;
9 display: -webkit-box;
7 padding: 0; 10 padding: 0;
8 -webkit-box-orient: vertical;
9 -webkit-box-flex: 1;
10 display: -webkit-box;
11 } 11 }
12 12
13 .timeline-view > .timeline { 13 .timeline-view > .timeline {
14 -webkit-box-flex: 1;
14 display: -webkit-box; 15 display: -webkit-box;
15 -webkit-box-flex: 1;
16 overflow: auto; 16 overflow: auto;
17 } 17 }
18 18
19 .timeline-view .timeline-container { 19 .timeline-view .timeline-container {
20 -webkit-box-flex: 1; 20 -webkit-box-flex: 1;
21 display: -webkit-box; 21 display: -webkit-box;
22 overflow: auto; 22 overflow: auto;
23 } 23 }
24 24
25 .timeline-view .timeline-container > * { 25 .timeline-view .timeline-container > * {
26 -webkit-box-flex: 1; 26 -webkit-box-flex: 1;
27 } 27 }
28 .timeline-view .summary-container * { 28 .timeline-view .summary-container * {
29 -webkit-user-select: text; 29 -webkit-user-select: text;
30 } 30 }
31 31
32 .timeline-view .summary-container { 32 .timeline-view .summary-container {
33 border-top: 1px solid black; 33 border-top: 1px solid black;
34 font-family: monospace;
34 max-height: 250px; 35 max-height: 250px;
35 min-height: 250px; 36 min-height: 250px;
36 font-family: monospace;
37 overflow: auto; 37 overflow: auto;
38 } 38 }
39 39
40 .timeline-view .selection { 40 .timeline-view .selection {
41 margin: 2px; 41 margin: 2px;
42 } 42 }
43 43
44 .timeline-view .selection ul { 44 .timeline-view .selection ul {
45 margin: 0; 45 margin: 0;
46 } 46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698