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 picture-ops-list-view { 7 -webkit-flex-direction: column; 8 display: -webkit-flex; 9 } 10 11 picture-ops-list-view > .x-list-view { 12 -webkit-flex: 1 1 auto; 13 overflow: auto; 14 } 15 16 picture-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 24 picture-ops-list-view > .x-list-view .list-item:hover { 25 background-color: #f0f0f0; 26 cursor: pointer; 27 } 28 29 picture-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 picture-ops-list-view > .x-list-view .list-item > .elementInfo { 38 color: purple; 39 font-size: small; 40 font-weight: bold; 41 } 42 43 .x-list-view:focus > .list-item[beforeSelection] { 44 background-color: rgb(171, 217, 202); 45 outline: 1px dotted rgba(0, 0, 0, 0.1); 46 outline-offset: 0; 47 } 48 49 .x-list-view > .list-item[beforeSelection] { 50 background-color: rgb(103, 199, 165); 51 } 52