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 x-list-view { | |
5 display: block; | |
6 -webkit-user-select: none; | |
7 } | |
8 x-list-view:focus { | |
9 outline: none; | |
10 } | |
11 | |
12 x-list-view * { | |
13 -webkit-user-select: none; | |
14 } | |
15 | |
16 x-list-view > .list-item { | |
17 padding: 2px 4px 2px 4px; | |
18 } | |
19 | |
20 x-list-view:focus > .list-item[selected] { | |
21 background-color: rgb(171, 217, 202); | |
22 outline-offset: 0; | |
23 outline: 1px dotted rgba(0,0,0,0.1); | |
24 } | |
25 | |
26 x-list-view > .list-item[selected] { | |
27 background-color: rgb(103, 199, 165); | |
28 } | |
OLD | NEW |