| 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 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 .object-value-generator, | 46 .object-value-generator, |
| 47 .object-value-node, | 47 .object-value-node, |
| 48 .object-value-typedarray, | 48 .object-value-typedarray, |
| 49 .object-value-array { | 49 .object-value-array { |
| 50 position: relative; | 50 position: relative; |
| 51 vertical-align: baseline; | 51 vertical-align: baseline; |
| 52 color: inherit; | 52 color: inherit; |
| 53 display: inline-block; | 53 display: inline-block; |
| 54 } | 54 } |
| 55 | 55 |
| 56 .object-value-number, | 56 .object-value-number { |
| 57 color: rgb(28, 0, 207); |
| 58 } |
| 57 .object-value-boolean { | 59 .object-value-boolean { |
| 58 color: rgb(28, 0, 207); | 60 color: rgb(170, 13, 145); |
| 59 } | 61 } |
| 60 | 62 |
| 61 .object-value-string, | 63 .object-value-string, |
| 62 .object-value-regexp, | 64 .object-value-regexp, |
| 63 .object-value-symbol { | 65 .object-value-symbol { |
| 64 color: rgb(196, 26, 22); | 66 color: rgb(196, 26, 22); |
| 65 white-space: pre; | 67 white-space: pre; |
| 66 unicode-bidi: -webkit-isolate; | 68 unicode-bidi: -webkit-isolate; |
| 67 } | 69 } |
| 68 | 70 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 display: inline-flex; | 124 display: inline-flex; |
| 123 flex-direction: column; | 125 flex-direction: column; |
| 124 } | 126 } |
| 125 | 127 |
| 126 .-theme-with-dark-background .object-value-number, | 128 .-theme-with-dark-background .object-value-number, |
| 127 :host-context(.-theme-with-dark-background) .object-value-number, | 129 :host-context(.-theme-with-dark-background) .object-value-number, |
| 128 .-theme-with-dark-background .object-value-boolean, | 130 .-theme-with-dark-background .object-value-boolean, |
| 129 :host-context(.-theme-with-dark-background) .object-value-boolean { | 131 :host-context(.-theme-with-dark-background) .object-value-boolean { |
| 130 color: hsl(252, 100%, 75%); | 132 color: hsl(252, 100%, 75%); |
| 131 } | 133 } |
| OLD | NEW |