| 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; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 border-bottom: 1px solid #BFBFBF; | 29 border-bottom: 1px solid #BFBFBF; |
| 30 } | 30 } |
| 31 | 31 |
| 32 .ax-name { | 32 .ax-name { |
| 33 color: rgb(136, 19, 145); | 33 color: rgb(136, 19, 145); |
| 34 flex-shrink: 0; | 34 flex-shrink: 0; |
| 35 } | 35 } |
| 36 | 36 |
| 37 .ax-readable-name { | 37 .ax-readable-name { |
| 38 flex-shrink: 0; | 38 flex-shrink: 0; |
| 39 padding-left: 2px; |
| 39 } | 40 } |
| 40 | 41 |
| 41 .ax-readable-string { | 42 .ax-readable-string { |
| 42 font-style: italic; | 43 font-style: italic; |
| 43 } | 44 } |
| 44 | 45 |
| 45 span.ax-role { | 46 span.ax-role { |
| 46 font-weight: bold; | 47 font-weight: bold; |
| 47 } | 48 } |
| 48 | 49 |
| 49 span.ax-internal-role { | 50 span.ax-internal-role { |
| 50 font-style: italic; | 51 font-style: italic; |
| 51 } | 52 } |
| 52 | 53 |
| 53 .ax-ignored-info { | 54 .ax-ignored-info { |
| 54 padding: 6px; | 55 padding: 6px; |
| 55 } | 56 } |
| 56 | 57 |
| 57 .ax-ignored-node-pane { | 58 .ax-ignored-node-pane { |
| 58 background-color: hsl(0, 0%, 96%); | 59 background-color: hsl(0, 0%, 96%); |
| 59 } | 60 } |
| 60 | 61 |
| 61 .tree-outline li { | 62 .tree-outline li { |
| 62 padding-top: 5px; | 63 padding-left: 1px; |
| 63 } | 64 } |
| 64 | 65 |
| 65 .tree-outline li.invalid { | 66 .tree-outline li.invalid { |
| 66 position: relative; | 67 position: relative; |
| 67 left: -2px; | 68 left: -2px; |
| 68 text-decoration: line-through; | 69 text-decoration: line-through; |
| 69 } | 70 } |
| 70 | 71 |
| 71 .tree-outline label[is=dt-icon-label] { | 72 .tree-outline label[is=dt-icon-label] { |
| 72 position: relative; | 73 position: relative; |
| 73 left: -11px; | 74 left: -11px; |
| 74 } | 75 } |
| 75 | 76 |
| 76 span.ax-value-undefined { | 77 span.ax-value-undefined { |
| 77 font-style: italic; | 78 font-style: italic; |
| 78 } | 79 } |
| 79 | 80 |
| 80 .ax-value-source-unused { | 81 .ax-value-source-unused { |
| 81 opacity: 0.5; | 82 opacity: 0.5; |
| 82 } | 83 } |
| 83 | 84 |
| 84 .ax-value-source-superseded, | 85 .ax-value-source-superseded, |
| 85 .ax-value-source-invalid { | 86 .ax-value-source-invalid { |
| 86 text-decoration: line-through; | 87 text-decoration: line-through; |
| 87 } | 88 } |
| 88 | 89 |
| 89 .tree-outline label[is=dt-icon-label] + .ax-name { | 90 .tree-outline label[is=dt-icon-label] + .ax-name { |
| 90 margin-left: -11px; | 91 margin-left: -11px; |
| 91 } | 92 } |
| OLD | NEW |