| OLD | NEW |
| 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 .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: 16px center; |
| 12 padding: 4px 4px 0 4px; | 12 padding: 4px 4px 0 4px; |
| 13 padding-left: 22px; | 13 padding-left: 36px; |
| 14 min-height: 18px; | 14 min-height: 18px; |
| 15 font-style: italic; | |
| 16 } | 15 } |
| 17 | 16 |
| 18 .ax-computed-text div { | 17 .ax-computed-text div { |
| 19 display: inline-block; | 18 display: inline-block; |
| 20 border: solid 1px rgba(128, 128, 128, 0.3); | |
| 21 padding: 2px; | 19 padding: 2px; |
| 22 width: 100%; | 20 width: 100%; |
| 23 text-overflow: ellipsis; | 21 text-overflow: ellipsis; |
| 24 white-space: nowrap; | 22 white-space: nowrap; |
| 25 overflow: hidden; | 23 overflow: hidden; |
| 26 width: 100%; | 24 width: 100%; |
| 27 text-align: center; | |
| 28 } | 25 } |
| 29 | 26 |
| 30 div.ax-text-alternatives { | 27 div.ax-text-alternatives { |
| 31 margin-bottom: 3px; | 28 margin-bottom: 3px; |
| 32 border-bottom: 1px solid #BFBFBF; | 29 border-bottom: 1px solid #BFBFBF; |
| 33 } | 30 } |
| 34 | 31 |
| 35 .ax-name { | 32 .ax-name { |
| 36 color: rgb(136, 19, 145); | 33 color: rgb(136, 19, 145); |
| 37 flex-shrink: 0; | 34 flex-shrink: 0; |
| 38 } | 35 } |
| 39 | 36 |
| 40 .ax-readable-name { | 37 .ax-readable-name { |
| 41 flex-shrink: 0; | 38 flex-shrink: 0; |
| 42 } | 39 } |
| 43 | 40 |
| 44 span.ax-role { | 41 span.ax-role { |
| 45 font-weight: bold; | 42 font-weight: bold; |
| 46 } | 43 } |
| 47 | 44 |
| 48 span.ax-internal-role { | 45 span.ax-internal-role { |
| 49 font-style: italic; | 46 font-style: italic; |
| 50 } | 47 } |
| 51 | 48 |
| 52 .ax-ignored-info { | 49 .ax-ignored-info { |
| 53 padding: 6px; | 50 padding: 6px; |
| 54 font-style: italic; | 51 } |
| 52 |
| 53 .ax-ignored-node-pane { |
| 54 background-color: hsl(0, 0%, 96%); |
| 55 } | 55 } |
| 56 | 56 |
| 57 .tree-outline li { | 57 .tree-outline li { |
| 58 padding-top: 5px; | 58 padding-top: 5px; |
| 59 } | 59 } |
| OLD | NEW |