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

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

Issue 1076453004: Show reasons why nodes are ignored in accessibility sidebar (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add a catch-all return to ignoredReasonName Created 5 years, 7 months 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 (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 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 div.ax-computed-name { 7 div.ax-computed-name {
8 padding: 5px; 8 padding: 5px;
9 background-image: url(Images/speech.png); 9 background-image: url(Images/speech.png);
10 background-repeat: no-repeat; 10 background-repeat: no-repeat;
(...skipping 12 matching lines...) Expand all
23 flex-shrink: 0; 23 flex-shrink: 0;
24 } 24 }
25 25
26 span.ax-role { 26 span.ax-role {
27 color: #006649; 27 color: #006649;
28 } 28 }
29 29
30 span.ax-internal-role { 30 span.ax-internal-role {
31 font-style: italic; 31 font-style: italic;
32 } 32 }
33
34 .ax-ignored-info {
35 padding: 6px;
36 font-style: italic;
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698