OLD | NEW |
| (Empty) |
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 | |
3 * found in the LICENSE file. */ | |
4 | |
5 x-model-view { | |
6 display: -webkit-flex; | |
7 -webkit-flex-direction: column; | |
8 min-width: 0; | |
9 } | |
10 | |
11 x-model-view { | |
12 -webkit-user-select: none; | |
13 cursor: default; | |
14 } | |
15 | |
16 x-model-view > .lthi-picker { | |
17 padding: 2px 1px 2px 1px; | |
18 background-color: rgb(128, 128, 128); | |
19 border-bottom: 1px solid black; | |
20 } | |
21 | |
22 x-model-view > .lthi-view { | |
23 -webkit-flex: 1; | |
24 display: -webkit-flex; | |
25 min-height: 0; | |
26 } | |
27 | |
28 x-model-view > .lthi-view > .lthi-and-analysis-view { | |
29 -webkit-flex: 1; | |
30 display: -webkit-flex; | |
31 -webkit-flex-direction: column; | |
32 min-height: 0; | |
33 min-width: 0; | |
34 } | |
35 | |
36 x-model-view > .lthi-view > .lthi-and-analysis-view > x-lthi-view { | |
37 min-height: 0; | |
38 min-width: 0; | |
39 overflow: auto; | |
40 } | |
41 | |
42 x-model-view > .lthi-view > .lthi-and-analysis-view > x-analysis-view { | |
43 height: 200px; | |
44 } | |
45 | |
46 x-model-view > .lthi-view > .lthi-list { | |
47 width: 200px; | |
48 border-right: 1px solid black; | |
49 overflow-y: auto; | |
50 } | |
51 | |
52 | |
53 x-model-view x-lthi-view, | |
54 x-model-view x-analysis-view { | |
55 padding: 4px 0 4px 12px; | |
56 } | |
OLD | NEW |