| 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::before { | 26 .object-value-function-prefix { |
| 27 content: "function"; | |
| 28 color: rgb(170, 13, 145); | 27 color: rgb(170, 13, 145); |
| 29 padding-right: 5px; | |
| 30 } | 28 } |
| 31 | 29 |
| 32 .object-value-function { | 30 .object-value-function { |
| 33 font-style: italic; | 31 font-style: italic; |
| 34 } | 32 } |
| 35 | 33 |
| 36 .object-value-function.linkified:hover { | 34 .object-value-function.linkified:hover { |
| 37 background-color: rgba(0, 0, 0, 0.1); | 35 background-color: rgba(0, 0, 0, 0.1); |
| 38 cursor: pointer; | 36 cursor: pointer; |
| 39 } | 37 } |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 display: inline-flex; | 122 display: inline-flex; |
| 125 flex-direction: column; | 123 flex-direction: column; |
| 126 } | 124 } |
| 127 | 125 |
| 128 .-theme-with-dark-background .object-value-number, | 126 .-theme-with-dark-background .object-value-number, |
| 129 :host-context(.-theme-with-dark-background) .object-value-number, | 127 :host-context(.-theme-with-dark-background) .object-value-number, |
| 130 .-theme-with-dark-background .object-value-boolean, | 128 .-theme-with-dark-background .object-value-boolean, |
| 131 :host-context(.-theme-with-dark-background) .object-value-boolean { | 129 :host-context(.-theme-with-dark-background) .object-value-boolean { |
| 132 color: hsl(252, 100%, 75%); | 130 color: hsl(252, 100%, 75%); |
| 133 } | 131 } |
| OLD | NEW |