| OLD | NEW |
| (Empty) |
| 1 /* | |
| 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 | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 .object-properties-section .name { | |
| 8 color: rgb(136, 19, 145); | |
| 9 flex-shrink: 0; | |
| 10 } | |
| 11 | |
| 12 .object-properties-section-separator { | |
| 13 flex-shrink: 0; | |
| 14 padding-right: 5px; | |
| 15 } | |
| 16 | |
| 17 .object-properties-section-dimmed { | |
| 18 opacity: 0.6; | |
| 19 } | |
| 20 | |
| 21 .object-properties-section { | |
| 22 padding: 0 0 0px 0px; | |
| 23 color: rgb(33,33,33) !important; | |
| 24 display: flex; | |
| 25 flex-direction: column; | |
| 26 } | |
| 27 | |
| 28 .object-properties-section li { | |
| 29 -webkit-user-select: text; | |
| 30 } | |
| 31 | |
| 32 .object-properties-section li::before { | |
| 33 top: -1px; | |
| 34 } | |
| 35 | |
| 36 .object-properties-section li.editing-sub-part { | |
| 37 padding: 3px 6px 8px; | |
| 38 margin: -1px -6px -8px -6px; | |
| 39 text-overflow: clip; | |
| 40 } | |
| 41 | |
| 42 .object-properties-section li.editing { | |
| 43 margin-left: 10px; | |
| 44 text-overflow: clip; | |
| 45 } | |
| 46 | |
| 47 .tree-outline ol.title-less-mode { | |
| 48 padding-left: 0px; | |
| 49 } | |
| 50 | |
| 51 .object-properties-section .synthetic-property { | |
| 52 font-style: italic; | |
| 53 } | |
| 54 | |
| 55 .object-properties-section-root-element { | |
| 56 display: flex; | |
| 57 flex-direction: row; | |
| 58 } | |
| OLD | NEW |