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

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

Issue 2390783006: [DevTools] Accessibility: Show siblings and children of selected node (Closed)
Patch Set: Rebase tests again and be consistent about backendDOMNodeId Created 4 years, 1 month 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 .ax-ignored-info { 56 .ax-ignored-info {
57 padding: 6px; 57 padding: 6px;
58 } 58 }
59 59
60 .ax-ignored-node-pane { 60 .ax-ignored-node-pane {
61 flex: none; 61 flex: none;
62 } 62 }
63 63
64 .ax-tree-ignored-node { 64 .ax-tree-ignored-node {
65 font-style: italic; 65 font-style: italic;
66 opacity: 0.7;
66 } 67 }
67 68
68 .tree-outline li { 69 .tree-outline li {
69 padding-left: 1px; 70 padding-left: 1px;
70 align-items: baseline; 71 align-items: baseline;
71 } 72 }
72 73
73 .tree-outline li.property { 74 .tree-outline li.property {
74 color: rgb(33, 33, 33); 75 color: rgb(33, 33, 33);
75 } 76 }
76 77
77 .tree-outline li.invalid { 78 .tree-outline li.invalid {
78 position: relative; 79 position: relative;
79 left: -2px; 80 left: -2px;
80 } 81 }
81 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 {
102 background-color: inherit;
103 }
104
105 .tree-outline li.no-dom-node {
106 opacity: 0.5;
107 }
108
109 .tree-outline li.children-unloaded::before {
110 opacity: 0.2;
111 }
112
113 .tree-outline li.partially-expanded::before {
114 -webkit-mask-position: -19px -108px;
115 }
116
82 .invalid { 117 .invalid {
83 text-decoration: line-through; 118 text-decoration: line-through;
84 } 119 }
85 120
86 .tree-outline label[is=dt-icon-label] { 121 .tree-outline label[is=dt-icon-label] {
87 position: relative; 122 position: relative;
88 left: -11px; 123 left: -11px;
89 } 124 }
90 125
91 span.ax-value-undefined { 126 span.ax-value-undefined {
(...skipping 13 matching lines...) Expand all
105 margin-left: -11px; 140 margin-left: -11px;
106 } 141 }
107 142
108 .ax-value-string { 143 .ax-value-string {
109 color: rgb(200, 0, 0); 144 color: rgb(200, 0, 0);
110 } 145 }
111 146
112 .sidebar-pane-stack .sidebar-pane { 147 .sidebar-pane-stack .sidebar-pane {
113 padding-left: 4px; 148 padding-left: 4px;
114 } 149 }
150
151 button.expand-siblings {
152 border-radius: 1px;
153 background-color: #f3f3f3;
154 border: 1px solid #ddd;
155 margin-left: 5px;
156 margin-bottom: 1px;
157 font-size: 11px;
158 }
159
160 li.siblings-expanded button.expand-siblings {
161 display: none;
162 }
163
164 .tree-outline li:hover .inspect-dom-node {
165 display: initial;
166 }
167
168 .tree-outline li.no-dom-node:hover .inspect-dom-node,
169 .tree-outline li.inspected:hover .inspect-dom-node {
170 display: none;
171 }
172
173 button.inspect-dom-node {
174 -webkit-mask-image: url(Images/toolbarButtonGlyphs.png);
175 -webkit-mask-position: -10px -127px;
176 background-color: #5a5a5a;
177 width: 11px;
178 height: 11px;
179 padding: 0;
180 margin-left: 5px;
181 border: 0;
182 display: none;
183 position: relative;
184 top: 2px;
185 }
186
187 .tree-outline:focus li.selected button.inspect-dom-node {
188 background-color: white;
189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698