OLD | NEW |
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 |
5 div#chooseMetrics { | 5 #choose-block { |
6 float: left; | 6 -webkit-box-orient: horizontal; |
| 7 background: #eee; |
| 8 display: -webkit-box; |
7 } | 9 } |
8 | 10 |
9 div#chooseEvents { | 11 .spacer { |
10 float: left; | 12 -webkit-box-flex: 1; |
11 margin-left: 20px; | |
12 } | 13 } |
13 | 14 |
14 div#chooseTimeRange { | 15 /* |charts| is the style for the div enclosing all charts, collectively. Its |
15 float: right; | 16 * dimensions must increase if the div encloses more than one chart. |
16 } | 17 * |chart| is the style for any div that encloses a single chart -- a |
17 | 18 * child div of the larger #charts div. */ |
18 div#chooseBlock { | 19 #charts, |
19 background: #eee; | 20 .chart { |
20 overflow: hidden; | 21 height: 500px; |
21 } | 22 width: 900px; |
22 | |
23 div#charts { | |
24 height: 500px; | |
25 width: 900px; | |
26 } | |
27 | |
28 div.chart { | |
29 height: 500px; | |
30 width: 900px; | |
31 } | 23 } |
32 | 24 |
33 div.event-label { | 25 div.event-label { |
34 background: #fff; | 26 background: white; |
35 border: 1px solid; | 27 border: 1px solid; |
36 font: 0.6em; | 28 font: 0.6em; |
37 position: absolute; | 29 position: absolute; |
38 } | 30 } |
39 | |
40 .hidden { | |
41 visibility: hidden; | |
42 } | |
OLD | NEW |