| 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-value-scientific-notation-exponent { | 7 .object-value-scientific-notation-exponent { |
| 8 flex-shrink: 0; | 8 flex-shrink: 0; |
| 9 } | 9 } |
| 10 | 10 |
| 11 .object-value-scientific-notation-mantissa { | 11 .object-value-scientific-notation-mantissa { |
| 12 overflow: hidden; | 12 overflow: hidden; |
| 13 text-overflow: ellipsis; | 13 text-overflow: ellipsis; |
| 14 flex-shrink: 1; | 14 flex-shrink: 1; |
| 15 min-width: 1ex; | 15 min-width: 1ex; |
| 16 } | 16 } |
| 17 | 17 |
| 18 .object-value-scientific-notation-number { | 18 .object-value-scientific-notation-number { |
| 19 display: flex !important; | 19 display: flex !important; |
| 20 } | 20 } |
| 21 | 21 |
| 22 .object-value-node:hover { | 22 .object-value-node:hover { |
| 23 background-color: rgba(56, 121, 217, 0.1); | 23 background-color: rgba(56, 121, 217, 0.1); |
| 24 } | 24 } |
| 25 | 25 |
| 26 .object-value-function-prefix, | 26 .object-value-function-prefix, |
| 27 .object-value-boolean { | 27 .object-value-boolean { |
| 28 color: rgb(13, 34, 170); | 28 color: rgb(170, 13, 145); |
| 29 } | 29 } |
| 30 | 30 |
| 31 .object-value-function { | 31 .object-value-function { |
| 32 font-style: italic; | 32 font-style: italic; |
| 33 } | 33 } |
| 34 | 34 |
| 35 .object-value-function.linkified:hover { | 35 .object-value-function.linkified:hover { |
| 36 background-color: rgba(0, 0, 0, 0.1); | 36 background-color: rgba(0, 0, 0, 0.1); |
| 37 cursor: pointer; | 37 cursor: pointer; |
| 38 } | 38 } |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 .-theme-with-dark-background .object-value-number, | 95 .-theme-with-dark-background .object-value-number, |
| 96 :host-context(.-theme-with-dark-background) .object-value-number, | 96 :host-context(.-theme-with-dark-background) .object-value-number, |
| 97 .-theme-with-dark-background .object-value-boolean, | 97 .-theme-with-dark-background .object-value-boolean, |
| 98 :host-context(.-theme-with-dark-background) .object-value-boolean { | 98 :host-context(.-theme-with-dark-background) .object-value-boolean { |
| 99 color: hsl(252, 100%, 75%); | 99 color: hsl(252, 100%, 75%); |
| 100 } | 100 } |
| 101 | 101 |
| 102 .object-properties-section .object-description { | 102 .object-properties-section .object-description { |
| 103 color: gray; | 103 color: gray; |
| 104 } | 104 } |
| 105 | |
| 106 .object-properties-preview { | |
| 107 white-space: nowrap; | |
| 108 } | |
| 109 | |
| 110 .name { | |
| 111 color: rgb(136, 19, 145); | |
| 112 flex-shrink: 0; | |
| 113 } | |
| 114 | |
| 115 .object-properties-preview .name { | |
| 116 color: #565656; | |
| 117 } | |
| OLD | NEW |