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

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

Issue 1990423002: DevTools: fix styling offset in logged console objects (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 4 years, 7 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/console/consoleView.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 28 matching lines...) Expand all
39 } 39 }
40 40
41 .object-value-object, 41 .object-value-object,
42 .object-value-map, 42 .object-value-map,
43 .object-value-set, 43 .object-value-set,
44 .object-value-iterator, 44 .object-value-iterator,
45 .object-value-generator, 45 .object-value-generator,
46 .object-value-node, 46 .object-value-node,
47 .object-value-array { 47 .object-value-array {
48 position: relative; 48 position: relative;
49 vertical-align: top; 49 vertical-align: baseline;
50 color: inherit; 50 color: inherit;
51 display: inline-block; 51 display: inline-block;
52 } 52 }
53 53
54 .object-value-number, 54 .object-value-number,
55 .object-value-boolean { 55 .object-value-boolean {
56 color: rgb(28, 0, 207); 56 color: rgb(28, 0, 207);
57 } 57 }
58 58
59 .object-value-string, 59 .object-value-string,
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 display: inline-flex; 115 display: inline-flex;
116 flex-direction: column; 116 flex-direction: column;
117 } 117 }
118 118
119 .-theme-with-dark-background .object-value-number, 119 .-theme-with-dark-background .object-value-number,
120 :host-context(.-theme-with-dark-background) .object-value-number, 120 :host-context(.-theme-with-dark-background) .object-value-number,
121 .-theme-with-dark-background .object-value-boolean, 121 .-theme-with-dark-background .object-value-boolean,
122 :host-context(.-theme-with-dark-background) .object-value-boolean { 122 :host-context(.-theme-with-dark-background) .object-value-boolean {
123 color: hsl(252, 100%, 75%); 123 color: hsl(252, 100%, 75%);
124 } 124 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/console/consoleView.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698