| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2017 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 { | |
| 8 -webkit-user-select: text; | |
| 9 flex-shrink: 0; | |
| 10 } | |
| 11 | |
| 12 .computed-style-property { | 7 .computed-style-property { |
| 13 display: flex; | 8 display: flex; |
| 14 overflow: hidden; | 9 overflow: hidden; |
| 15 flex: auto; | 10 flex: auto; |
| 16 } | 11 } |
| 17 | 12 |
| 18 .computed-style-property .property-name { | 13 .computed-style-property .property-name { |
| 19 min-width: 5em; | 14 min-width: 5em; |
| 20 text-overflow: ellipsis; | 15 text-overflow: ellipsis; |
| 21 overflow: hidden; | 16 overflow: hidden; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 margin-left: 4px; | 106 margin-left: 4px; |
| 112 } | 107 } |
| 113 | 108 |
| 114 .delimeter { | 109 .delimeter { |
| 115 color: transparent; | 110 color: transparent; |
| 116 } | 111 } |
| 117 | 112 |
| 118 .delimeter::selection { | 113 .delimeter::selection { |
| 119 color: transparent; | 114 color: transparent; |
| 120 } | 115 } |
| OLD | NEW |