OLD | NEW |
| (Empty) |
1 /* | |
2 Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
3 Use of this source code is governed by a BSD-style license that can be | |
4 found in the LICENSE file. | |
5 */ | |
6 #profiling-view { | |
7 padding: 0px; | |
8 -webkit-box-orient: vertical; | |
9 -webkit-box-flex: 1; | |
10 } | |
11 | |
12 #profiling-view[selected] { | |
13 display: -webkit-box; | |
14 } | |
15 | |
16 #profiling-view > .control { | |
17 display: -webkit-box; | |
18 border-bottom: 1px solid #555; | |
19 } | |
20 | |
21 #profiling-view > .container { | |
22 display: -webkit-box; | |
23 -webkit-box-flex: 1; | |
24 } | |
25 | |
26 .profiling-overlay { | |
27 display: -webkit-box; | |
28 -webkit-box-orient: vertical; | |
29 text-align: center; | |
30 } | |
31 | |
32 .profiling-overlay .raw-text { | |
33 overflow: auto; | |
34 -webkit-box-flex: 1; | |
35 wrap: none; | |
36 } | |
37 | |
38 .profiling-overlay .error { | |
39 border: 1px solid red; | |
40 text-align: center; | |
41 } | |
OLD | NEW |