Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / devtools / front_end / sources / uiList.css
blob0f959b2ce17e8a992b2edc9aff6ea6a859ee7a2b
1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
7 .list-item {
8 padding: 2px 8px 3px 8px;
9 position: relative;
10 min-height: 18px;
11 white-space: nowrap;
14 .list-item:nth-of-type(2n) {
15 background-color: #f8f8f8;
18 .list-item.selected {
19 background-color: #dadada;
22 .list-item.selected > .title {
23 font-weight: bold;
26 .list-item:hover {
27 background-color: #eee;
30 .list-item > .title {
31 font-weight: normal;
32 word-wrap: break-word;
33 white-space: normal;
36 .list-item > .subtitle {
37 margin-left: 5px;
38 color: rgba(0, 0, 0, 0.7);
39 text-overflow: ellipsis;
40 overflow: hidden;
41 float: right;
44 .list-item > .subtitle a {
45 color: inherit;
48 .list-item.label {
49 text-align: center;
52 .list-item.label .title,
53 .list-item.label .subtitle {
54 font-style: italic;
55 font-weight: bold;
56 color: #999;
59 .list-item.dimmed {
60 opacity: 0.6;
61 font-style: italic;