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