| 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 .object-properties-section .name { | 7 .object-properties-section .name { |
| 8 color: rgb(136, 19, 145); | 8 color: rgb(136, 19, 145); |
| 9 flex-shrink: 0; | 9 flex-shrink: 0; |
| 10 } | 10 } |
| 11 | 11 |
| 12 .object-properties-section-separator { | 12 .object-properties-section-separator { |
| 13 flex-shrink: 0; | 13 flex-shrink: 0; |
| 14 } | 14 } |
| 15 | 15 |
| 16 .object-properties-section-dimmed { | 16 .object-properties-section-dimmed { |
| 17 opacity: 0.6; | 17 opacity: 0.6; |
| 18 } | 18 } |
| 19 | 19 |
| 20 .object-properties-section { | 20 .object-properties-section { |
| 21 padding: 0 0 0px 0px; | 21 padding: 0 0 0px 0px; |
| 22 color: rgb(33,33,33) !important; | 22 color: rgb(33,33,33) !important; |
| 23 display: flex; |
| 24 flex-direction: column; |
| 23 } | 25 } |
| 24 | 26 |
| 25 .object-properties-section li { | 27 .object-properties-section li { |
| 26 min-height: inherit; | 28 min-height: inherit; |
| 27 line-height: 12px; | 29 line-height: 12px; |
| 28 -webkit-user-select: text; | 30 -webkit-user-select: text; |
| 29 } | 31 } |
| 30 | 32 |
| 31 .object-properties-section li::before { | 33 .object-properties-section li::before { |
| 32 top: -1px; | 34 top: -1px; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 43 text-overflow: clip; | 45 text-overflow: clip; |
| 44 } | 46 } |
| 45 | 47 |
| 46 .tree-outline ol.title-less-mode { | 48 .tree-outline ol.title-less-mode { |
| 47 padding-left: 0px; | 49 padding-left: 0px; |
| 48 } | 50 } |
| 49 | 51 |
| 50 .object-properties-section .synthetic-property { | 52 .object-properties-section .synthetic-property { |
| 51 font-style: italic; | 53 font-style: italic; |
| 52 } | 54 } |
| 55 |
| 56 .object-properties-section-root-element { |
| 57 display: flex; |
| 58 flex-direction: row; |
| 59 } |
| 60 |
| 61 .object-properties-section-root-element::before { |
| 62 -webkit-mask-position: -4px -97px !important; |
| 63 } |
| 64 |
| 65 .object-properties-section-root-element.expanded::before { |
| 66 -webkit-mask-position: -20px -97px !important; |
| 67 } |
| OLD | NEW |