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

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

Issue 1156223002: Show human-readable names for accessibility properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: dmazzoni review comments 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 .ax-computed-text { 7 .ax-computed-text {
8 padding: 3px 5px 0; 8 padding: 3px 5px 0;
9 background-image: url(Images/speech.png); 9 background-image: url(Images/speech.png);
10 background-repeat: no-repeat; 10 background-repeat: no-repeat;
11 background-position: 2px center; 11 background-position: 2px center;
12 border-bottom: solid 1px rgba(128, 128, 128, 0.3); 12 /* border-bottom: solid 1px rgba(128, 128, 128, 0.3); */
pfeldman 2015/05/29 12:35:32 We don't land commented out code
aboxhall 2015/05/29 15:33:43 Done.
13 padding: 2px 5px; 13 padding: 4px 4px 0 4px;
14 padding-left: 21px; 14 padding-left: 22px;
15 min-height: 18px; 15 min-height: 18px;
16 font-style: italic;
17 }
18
19 .ax-computed-text div {
20 display: inline-block;
21 border: solid 1px rgba(128, 128, 128, 0.3);
22 padding: 2px;
23 width: 100%;
16 text-overflow: ellipsis; 24 text-overflow: ellipsis;
17 white-space: nowrap; 25 white-space: nowrap;
18 overflow: hidden; 26 overflow: hidden;
19 width: 100%; 27 width: 100%;
20 font-style: italic; 28 text-align: center;
21 } 29 }
22 30
23 div.ax-text-alternatives { 31 div.ax-text-alternatives {
24 margin-bottom: 3px; 32 margin-bottom: 3px;
25 border-bottom: 1px solid #BFBFBF; 33 border-bottom: 1px solid #BFBFBF;
26 } 34 }
27 35
28 .ax-name { 36 .ax-name {
29 color: rgb(136, 19, 145); 37 color: rgb(136, 19, 145);
30 flex-shrink: 0; 38 flex-shrink: 0;
31 } 39 }
32 40
41 .ax-readable-name {
42 flex-shrink: 0;
43 }
44
33 span.ax-role { 45 span.ax-role {
34 color: #006649; 46 /* color: #006649; */
pfeldman 2015/05/29 12:35:32 ditto
aboxhall 2015/05/29 15:33:43 Done.
47 font-weight: bold;
35 } 48 }
36 49
37 span.ax-internal-role { 50 span.ax-internal-role {
38 font-style: italic; 51 font-style: italic;
39 } 52 }
40 53
41 .ax-ignored-info { 54 .ax-ignored-info {
42 padding: 6px; 55 padding: 6px;
43 font-style: italic; 56 font-style: italic;
44 } 57 }
58
59 .tree-outline li {
60 padding-top: 5px;
61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698