Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(668)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/accessibility/accessibilityNode.css

Issue 2564433004: DevTools: migrate last usages of samllIcons.png to UI.Icon (Closed)
Patch Set: rebaseline Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 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 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .sidebar-pane.accessibility-computed { 7 .sidebar-pane.accessibility-computed {
8 background-color: rgba(0, 0, 0, 0.03); 8 background-color: rgba(0, 0, 0, 0.03);
9 } 9 }
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 .tree-outline li.property { 74 .tree-outline li.property {
75 color: rgb(33, 33, 33); 75 color: rgb(33, 33, 33);
76 } 76 }
77 77
78 .tree-outline li.invalid { 78 .tree-outline li.invalid {
79 position: relative; 79 position: relative;
80 left: -2px; 80 left: -2px;
81 } 81 }
82 82
83 .tree-outline li.inspected::after {
84 -webkit-mask-image: url(Images/smallIcons.png);
85 -webkit-mask-size: 190px 30px;
86 -webkit-mask-position: -180px 0;
87 background-color: rgb(74, 139, 238);
88 content: "";
89 position: relative;
90 left: 4px;
91 top: 1px;
92 width: 10px;
93 height: 10px;
94 transform: rotate(180deg);
95 }
96
97 .tree-outline:focus li.inspected.selected::after {
98 background-color: white;
99 }
100
101 .tree-outline li.selected .selection { 83 .tree-outline li.selected .selection {
102 background-color: inherit; 84 background-color: inherit;
103 } 85 }
104 86
105 .tree-outline li.no-dom-node { 87 .tree-outline li.no-dom-node {
106 opacity: 0.5; 88 opacity: 0.5;
107 } 89 }
108 90
109 .tree-outline li.children-unloaded::before { 91 .tree-outline li.children-unloaded::before {
110 opacity: 0.2; 92 opacity: 0.2;
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 margin-left: 5px; 158 margin-left: 5px;
177 border: 0; 159 border: 0;
178 display: none; 160 display: none;
179 position: relative; 161 position: relative;
180 top: 2px; 162 top: 2px;
181 } 163 }
182 164
183 .tree-outline:focus li.selected .inspect-dom-node { 165 .tree-outline:focus li.selected .inspect-dom-node {
184 background-color: white; 166 background-color: white;
185 } 167 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698