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