picture_ops_list_view.css revision 66a37686207944273ced825e0e8b6b6375f8c3de
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
6picture-ops-list-view {
7  -webkit-flex-direction: column;
8  display: -webkit-flex;
9}
10
11picture-ops-list-view > .x-list-view {
12  -webkit-flex: 1 1 auto;
13  overflow: auto;
14}
15
16picture-ops-list-view > .x-list-view .list-item {
17  border-bottom: 1px solid #555;
18  font-size: small;
19  font-weight: bold;
20  padding-bottom: 5px;
21  padding-left: 5px;
22}
23
24picture-ops-list-view > .x-list-view .list-item:hover {
25  background-color: #f0f0f0;
26  cursor: pointer;
27}
28
29picture-ops-list-view > .x-list-view .list-item > * {
30  color: #777;
31  font-size: x-small;
32  font-weight: normal;
33  margin-left: 1em;
34  max-width: 300px; /* force long strings to wrap */
35}
36
37.x-list-view:focus > .list-item[beforeSelection] {
38  background-color: rgb(171, 217, 202);
39  outline: 1px dotted rgba(0, 0, 0, 0.1);
40  outline-offset: 0;
41}
42
43.x-list-view > .list-item[beforeSelection] {
44  background-color: rgb(103, 199, 165);
45}
46