| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 .object-value-number { | 54 .object-value-number { |
| 55 color: rgb(28, 0, 207); | 55 color: rgb(28, 0, 207); |
| 56 } | 56 } |
| 57 .object-value-boolean { | 57 .object-value-boolean { |
| 58 color: rgb(170, 13, 145); | 58 color: rgb(170, 13, 145); |
| 59 } | 59 } |
| 60 | 60 |
| 61 .object-value-string, | 61 .object-value-string, |
| 62 .object-value-regexp, | 62 .object-value-regexp, |
| 63 .object-value-symbol { | 63 .object-value-symbol { |
| 64 color: rgb(196, 26, 22); | |
| 65 white-space: pre; | 64 white-space: pre; |
| 66 unicode-bidi: -webkit-isolate; | 65 unicode-bidi: -webkit-isolate; |
| 67 } | 66 } |
| 68 | 67 |
| 68 .object-value-string-inner, |
| 69 .object-value-regexp, |
| 70 .object-value-symbol { |
| 71 color: rgb(196, 26, 22); |
| 72 } |
| 73 |
| 69 .object-value-node { | 74 .object-value-node { |
| 70 color: rgb(136, 18, 128); | 75 color: rgb(136, 18, 128); |
| 71 } | 76 } |
| 72 | 77 |
| 73 .object-value-null, | 78 .object-value-null, |
| 74 .object-value-undefined { | 79 .object-value-undefined { |
| 75 color: rgb(128, 128, 128); | 80 color: rgb(128, 128, 128); |
| 76 } | 81 } |
| 77 | 82 |
| 78 .object-value { | 83 .object-value { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 display: inline-flex; | 127 display: inline-flex; |
| 123 flex-direction: column; | 128 flex-direction: column; |
| 124 } | 129 } |
| 125 | 130 |
| 126 .-theme-with-dark-background .object-value-number, | 131 .-theme-with-dark-background .object-value-number, |
| 127 :host-context(.-theme-with-dark-background) .object-value-number, | 132 :host-context(.-theme-with-dark-background) .object-value-number, |
| 128 .-theme-with-dark-background .object-value-boolean, | 133 .-theme-with-dark-background .object-value-boolean, |
| 129 :host-context(.-theme-with-dark-background) .object-value-boolean { | 134 :host-context(.-theme-with-dark-background) .object-value-boolean { |
| 130 color: hsl(252, 100%, 75%); | 135 color: hsl(252, 100%, 75%); |
| 131 } | 136 } |
| OLD | NEW |