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

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

Issue 9958101: [WebUI] Fix rest of CSS style nits in misc. dirs so I can turn on CSS checker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: estade review 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 */
6 .timeline-view { 5 .timeline-view {
6 -webkit-box-flex: 1;
7 -webkit-box-orient: vertical;
8 display: -webkit-box;
7 padding: 0; 9 padding: 0;
8 -webkit-box-orient: vertical;
9 -webkit-box-flex: 1;
10 display: -webkit-box;
11 } 10 }
12 11
13 .timeline-view > .timeline { 12 .timeline-view > .timeline {
13 -webkit-box-flex: 1;
14 display: -webkit-box; 14 display: -webkit-box;
15 -webkit-box-flex: 1;
16 overflow: auto; 15 overflow: auto;
17 } 16 }
18 17
19 .timeline-view .timeline-container { 18 .timeline-view .timeline-container {
20 -webkit-box-flex: 1; 19 -webkit-box-flex: 1;
21 display: -webkit-box; 20 display: -webkit-box;
22 overflow: auto; 21 overflow: auto;
23 } 22 }
24 23
25 .timeline-view .timeline-container > * { 24 .timeline-view .timeline-container > * {
26 -webkit-box-flex: 1; 25 -webkit-box-flex: 1;
27 } 26 }
28 .timeline-view .summary-container * { 27 .timeline-view .summary-container * {
29 -webkit-user-select: text; 28 -webkit-user-select: text;
30 } 29 }
31 30
32 .timeline-view .summary-container { 31 .timeline-view .summary-container {
33 border-top: 1px solid black; 32 border-top: 1px solid black;
33 font-family: monospace;
34 max-height: 250px; 34 max-height: 250px;
35 min-height: 250px; 35 min-height: 250px;
36 font-family: monospace;
37 overflow: auto; 36 overflow: auto;
38 } 37 }
39 38
40 .timeline-view .selection { 39 .timeline-view .selection {
41 margin: 2px; 40 margin: 2px;
42 } 41 }
43 42
44 .timeline-view .selection ul { 43 .timeline-view .selection ul {
45 margin: 0; 44 margin: 0;
46 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698