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

Side by Side Diff: chrome/browser/resources/tracing/profiling_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: removing PRESUBMIT.py change until ready 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 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4
4 #profiling-view { 5 #profiling-view {
6 -webkit-box-flex: 1;
7 -webkit-box-orient: vertical;
5 display: -webkit-box; 8 display: -webkit-box;
6 padding: 0; 9 padding: 0;
7 -webkit-box-orient: vertical;
8 -webkit-box-flex: 1;
9 } 10 }
10 11
11 #profiling-view > .control { 12 #profiling-view > .control {
13 border-bottom: 1px solid #555;
12 display: -webkit-box; 14 display: -webkit-box;
13 border-bottom: 1px solid #555;
14 } 15 }
15 16
16 #profiling-view > .control > span { 17 #profiling-view > .control > span {
17 padding-left: 5px; 18 padding-left: 5px;
18 padding-right: 10px; 19 padding-right: 10px;
19 } 20 }
20 21
21 #profiling-view > .control > button { 22 #profiling-view > .control > button {
22 font-size: 75%; 23 font-size: 75%;
23 height: 20px; 24 height: 20px;
24 min-height: 10px; 25 min-height: 10px;
25 } 26 }
26 27
27 #profiling-view > .container { 28 #profiling-view > .container {
29 -webkit-box-flex: 1;
28 display: -webkit-box; 30 display: -webkit-box;
29 -webkit-box-flex: 1;
30 } 31 }
31 32
32 .profiling-overlay { 33 .profiling-overlay {
34 -webkit-box-orient: vertical;
33 display: -webkit-box; 35 display: -webkit-box;
34 -webkit-box-orient: vertical;
35 text-align: center; 36 text-align: center;
36 } 37 }
37 38
38 .profiling-overlay .raw-text { 39 .profiling-overlay .raw-text {
40 -webkit-box-flex: 1;
39 overflow: auto; 41 overflow: auto;
40 -webkit-box-flex: 1;
41 wrap: none; 42 wrap: none;
42 } 43 }
43 44
44 .profiling-overlay .error { 45 .profiling-overlay .error {
45 border: 1px solid red; 46 border: 1px solid red;
46 text-align: center; 47 text-align: center;
47 } 48 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/tracing/overlay.css ('k') | chrome/browser/resources/tracing/timeline.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698