1/* Copyright (c) 2013 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
6layer-picker {
7  -webkit-flex-direction: column;
8  display: -webkit-flex;
9}
10
11layer-picker > top-controls {
12  -webkit-flex: 0 0 auto;
13  background-image: -webkit-gradient(linear,
14                                     0 0, 100% 0,
15                                     from(#E5E5E5),
16                                     to(#D1D1D1));
17  border-bottom: 1px solid #8e8e8e;
18  border-top: 1px solid white;
19  display: inline;
20}
21
22layer-picker > .x-list-view {
23  -webkit-flex: 1 1 auto;
24  font-family: monospace;
25  overflow: auto;
26}
27
28layer-picker > x-generic-object-view {
29  -webkit-flex: 0 0 auto;
30  height: 200px;
31  overflow: auto;
32}
33
34layer-picker > x-generic-object-view * {
35  -webkit-user-select: text !important;
36  cursor: text;
37}
38