| 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 color: rgb(170, 13, 145); | 28 color: rgb(170, 13, 145); |
| 28 } | 29 } |
| 29 | 30 |
| 30 .object-value-function { | 31 .object-value-function { |
| 31 font-style: italic; | 32 font-style: italic; |
| 32 } | 33 } |
| 33 | 34 |
| 34 .object-value-function.linkified:hover { | 35 .object-value-function.linkified:hover { |
| 35 background-color: rgba(0, 0, 0, 0.1); | 36 background-color: rgba(0, 0, 0, 0.1); |
| 36 cursor: pointer; | 37 cursor: pointer; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 47 .object-value-array { | 48 .object-value-array { |
| 48 position: relative; | 49 position: relative; |
| 49 vertical-align: baseline; | 50 vertical-align: baseline; |
| 50 color: inherit; | 51 color: inherit; |
| 51 display: inline-block; | 52 display: inline-block; |
| 52 } | 53 } |
| 53 | 54 |
| 54 .object-value-number { | 55 .object-value-number { |
| 55 color: rgb(28, 0, 207); | 56 color: rgb(28, 0, 207); |
| 56 } | 57 } |
| 57 .object-value-boolean { | |
| 58 color: rgb(170, 13, 145); | |
| 59 } | |
| 60 | 58 |
| 61 .object-value-string, | 59 .object-value-string, |
| 62 .object-value-regexp, | 60 .object-value-regexp, |
| 63 .object-value-symbol { | 61 .object-value-symbol { |
| 64 color: rgb(196, 26, 22); | 62 color: rgb(196, 26, 22); |
| 65 white-space: pre; | 63 white-space: pre; |
| 66 unicode-bidi: -webkit-isolate; | 64 unicode-bidi: -webkit-isolate; |
| 67 } | 65 } |
| 68 | 66 |
| 69 .object-value-node { | 67 .object-value-node { |
| 70 color: rgb(136, 18, 128); | 68 color: rgb(136, 18, 128); |
| 71 } | 69 } |
| 72 | 70 |
| 73 .object-value-null, | 71 .object-value-null, |
| 74 .object-value-undefined { | 72 .object-value-undefined { |
| 75 color: rgb(128, 128, 128); | 73 color: rgb(128, 128, 128); |
| 76 } | 74 } |
| 77 | 75 |
| 78 .object-value { | 76 .object-value { |
| 79 text-overflow: ellipsis; | 77 text-overflow: ellipsis; |
| 80 overflow: hidden; | 78 overflow: hidden; |
| 81 -webkit-user-select: text; | 79 -webkit-user-select: text; |
| 82 } | 80 } |
| 83 | 81 |
| 84 .object-value-calculate-value-button:hover { | 82 .object-value-calculate-value-button:hover { |
| 85 text-decoration: underline; | 83 text-decoration: underline; |
| 86 } | 84 } |
| 87 | 85 |
| 88 .object-value-object .section, | |
| 89 .object-value-promise .section, | |
| 90 .object-formatted-map .section, | |
| 91 .object-value-set .section, | |
| 92 .object-value-iterator .section, | |
| 93 .object-value-generator .section, | |
| 94 .object-value-node .section, | |
| 95 .object-value-typedarray .section, | |
| 96 .object-value-array .section { | |
| 97 position: static; | |
| 98 } | |
| 99 | |
| 100 .object-value-object .section > .header::before, | |
| 101 .object-value-promise .section > .header::before { | |
| 102 margin-top: 0; | |
| 103 } | |
| 104 | |
| 105 | |
| 106 .object-value-object .properties-tree, | |
| 107 .object-value-promise .properties-tree, | |
| 108 .object-value-map .properties-tree, | |
| 109 .object-value-set .properties-tree, | |
| 110 .object-value-iterator .properties-tree, | |
| 111 .object-value-generator .properties-tree, | |
| 112 .object-value-node .properties-tree { | |
| 113 padding-left: 0 !important; | |
| 114 } | |
| 115 | |
| 116 .object-value-preview-node, | |
| 117 .section .object-value-node { | |
| 118 color: rgb(136, 18, 128); | |
| 119 } | |
| 120 | |
| 121 .object-properties-section-custom-section { | 86 .object-properties-section-custom-section { |
| 122 display: inline-flex; | 87 display: inline-flex; |
| 123 flex-direction: column; | 88 flex-direction: column; |
| 124 } | 89 } |
| 125 | 90 |
| 126 .-theme-with-dark-background .object-value-number, | 91 .-theme-with-dark-background .object-value-number, |
| 127 :host-context(.-theme-with-dark-background) .object-value-number, | 92 :host-context(.-theme-with-dark-background) .object-value-number, |
| 128 .-theme-with-dark-background .object-value-boolean, | 93 .-theme-with-dark-background .object-value-boolean, |
| 129 :host-context(.-theme-with-dark-background) .object-value-boolean { | 94 :host-context(.-theme-with-dark-background) .object-value-boolean { |
| 130 color: hsl(252, 100%, 75%); | 95 color: hsl(252, 100%, 75%); |
| 131 } | 96 } |
| OLD | NEW |