Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/components/objectValue.css

Issue 2397933005: DevTools: ConsoleViewMessage rewrite signatures for formatter functions (Closed)
Patch Set: remove patches 6, 7 Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698