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
6* * /deep/ tr-ui-e-chrome-cc-picture-ops-list-view {
7  -webkit-flex-direction: column;
8  border-top: 1px solid grey;
9  display: -webkit-flex;
10}
11
12* /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > .x-list-view {
13  -webkit-flex: 1 1 auto;
14  overflow: auto;
15}
16
17* /deep/ tr-ui-e-chrome-cc-picture-ops-list-view > .x-list-view .list-item {
18  border-bottom: 1px solid #555;
19  font-size: small;
20  font-weight: bold;
21  padding-bottom: 5px;
22  padding-left: 5px;
23}
24
25* /deep/ tr-ui-e-chrome-cc-picture-ops-list-view >
26      .x-list-view .list-item:hover {
27  background-color: #f0f0f0;
28  cursor: pointer;
29}
30
31* /deep/ tr-ui-e-chrome-cc-picture-ops-list-view >
32      .x-list-view .list-item > * {
33  color: #777;
34  font-size: x-small;
35  font-weight: normal;
36  margin-left: 1em;
37  max-width: 300px; /* force long strings to wrap */
38}
39
40* /deep/ tr-ui-e-chrome-cc-picture-ops-list-view >
41      .x-list-view .list-item > .elementInfo {
42  color: purple;
43  font-size: small;
44  font-weight: bold;
45}
46
47* /deep/ tr-ui-e-chrome-cc-picture-ops-list-view >
48      .x-list-view .list-item > .time {
49  color: rgb(136, 0, 0);
50}
51
52* /deep/ tr-ui-e-chrome-cc-picture-ops-list-view .x-list-view:focus >
53      .list-item[beforeSelection] {
54  background-color: rgb(171, 217, 202);
55  outline: 1px dotted rgba(0, 0, 0, 0.1);
56  outline-offset: 0;
57}
58
59* /deep/ tr-ui-e-chrome-cc-picture-ops-list-view .x-list-view >
60      .list-item[beforeSelection] {
61  background-color: rgb(103, 199, 165);
62}
63