| OLD | NEW |
| 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 .computed-properties { | 7 .computed-properties { |
| 8 -webkit-user-select: text; | 8 -webkit-user-select: text; |
| 9 flex-shrink: 0; | 9 flex-shrink: 0; |
| 10 } | 10 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 flex-grow: 10; | 33 flex-grow: 10; |
| 34 } | 34 } |
| 35 | 35 |
| 36 .computed-style-property .property-value-text { | 36 .computed-style-property .property-value-text { |
| 37 overflow: hidden; | 37 overflow: hidden; |
| 38 text-overflow: ellipsis; | 38 text-overflow: ellipsis; |
| 39 } | 39 } |
| 40 | 40 |
| 41 .tree-outline li:hover .goto-source-icon { | 41 .tree-outline li:hover .goto-source-icon { |
| 42 display: block; | 42 display: block; |
| 43 margin-top: -2px; |
| 43 } | 44 } |
| 44 | 45 |
| 45 .goto-source-icon { | 46 .goto-source-icon { |
| 46 background-color: #5a5a5a; | 47 background-color: #5a5a5a; |
| 47 display: none; | 48 display: none; |
| 48 position: absolute; | 49 position: absolute; |
| 49 left: -16px; | 50 left: -16px; |
| 50 } | 51 } |
| 51 | 52 |
| 52 .goto-source-icon:hover { | 53 .goto-source-icon:hover { |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 margin-left: 4px; | 111 margin-left: 4px; |
| 111 } | 112 } |
| 112 | 113 |
| 113 .delimeter { | 114 .delimeter { |
| 114 color: transparent; | 115 color: transparent; |
| 115 } | 116 } |
| 116 | 117 |
| 117 .delimeter::selection { | 118 .delimeter::selection { |
| 118 color: transparent; | 119 color: transparent; |
| 119 } | 120 } |
| OLD | NEW |