Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / devtools / front_end / ui / propertiesSection.css
blob0ca1113aaf29ff228a0c94828ff1ed74145f0921
1 /*
2 * Copyright (c) 2014 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 .properties-tree {
8 margin: 0;
9 padding: 0 6px 2px;
10 list-style: none;
11 min-height: 18px;
14 .properties-tree ol {
15 display: none;
16 margin: 0;
17 -webkit-padding-start: 12px;
18 list-style: none;
21 .properties-tree ol.expanded {
22 display: block;
25 .properties-tree li {
26 margin-left: 12px;
27 white-space: nowrap;
28 text-overflow: ellipsis;
29 overflow: hidden;
30 -webkit-user-select: text;
31 cursor: default;
32 padding-top: 2px;
33 line-height: 12px;
36 .properties-tree li.parent {
37 margin-left: 1px;
40 .properties-tree li.parent::before {
41 -webkit-user-select: none;
42 background-image: url(Images/toolbarButtonGlyphs.png);
43 background-size: 352px 168px;
44 opacity: 0.5;
45 content: "a";
46 width: 8px;
47 float: left;
48 margin-right: 4px;
49 color: transparent;
50 text-shadow: none;
53 @media (-webkit-min-device-pixel-ratio: 1.5) {
54 .properties-tree li.parent::before {
55 background-image: url(Images/toolbarButtonGlyphs_2x.png);
57 } /* media */
59 .properties-tree li.parent::before {
60 background-position: -4px -96px;
63 .properties-tree li.parent.expanded::before {
64 background-position: -20px -96px;
67 .properties-tree li .info {
68 padding-top: 4px;
69 padding-bottom: 3px;
72 .properties-tree li.editing {
73 margin-left: 10px;
74 text-overflow: clip;
77 .properties-tree li.editing-sub-part {
78 padding: 3px 6px 8px 18px;
79 margin: -1px -6px -8px -6px;
80 text-overflow: clip;
83 .properties-tree .name {
84 color: rgb(136, 19, 145);
85 flex-shrink: 0;
88 .properties-tree .separator {
89 flex-shrink: 0;
92 .properties-tree .dimmed {
93 opacity: 0.6;
96 .properties-tree .value.error {
97 color: red;
100 .properties-tree .number {
101 color: blue;
104 .properties-tree .keyword {
105 color: rgb(136, 19, 79);
108 .properties-tree .color {
109 color: rgb(118, 15, 21);