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 x-lthi-view { | 5 x-lthi-view { |
6 display: block; | 6 display: block; |
7 -webkit-flex-direction: column; | 7 -webkit-flex-direction: column; |
8 } | 8 } |
9 | 9 |
10 x-lthi-view > x-lthi-view-options { | 10 x-lthi-view > x-lthi-view-options { |
11 display: inline-span; | 11 display: inline-span; |
12 margins: 0 auto 0 auto; | 12 margins: 0 auto 0 auto; |
| 13 border-bottom: 1px solid rgba(0,0,0,.25); |
13 } | 14 } |
14 | 15 |
15 x-lthi-view > x-lthi-view-options > span:not(:nth-child(1)) { | 16 x-lthi-view > x-lthi-view-options > span:not(:nth-child(1)), |
| 17 x-lthi-view > x-lthi-view-options > label:not(:nth-child(1)) { |
16 margin-left: 16px; | 18 margin-left: 16px; |
17 } | 19 } |
18 | 20 |
19 x-lthi-view > x-lthi-view-options > span { | 21 x-lthi-view > x-lthi-view-options > span { |
20 margin-right: 8px; | 22 margin-right: 8px; |
21 } | 23 } |
22 | 24 |
23 | 25 |
24 x-lthi-view > x-trees { | 26 x-lthi-view > x-quad-views { |
25 display: -webkit-flex; | 27 display: -webkit-flex; |
26 -webkit-flex-direction: row; | 28 -webkit-flex-direction: row; |
27 } | 29 } |
28 | 30 |
29 x-lthi-view > x-trees > *:not(:first-child) { | 31 x-lthi-view > x-quad-views > *:not(:first-child) { |
30 margin-left: 16px; | 32 margin-left: 16px; |
31 } | 33 } |
OLD | NEW |