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

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

Issue 1304033003: [DevTools] Fixed output of string consisting multiple spaces (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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 | no next file » | 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
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,
60 .object-value-regexp, 60 .object-value-regexp,
61 .object-value-symbol { 61 .object-value-symbol {
62 color: rgb(196, 26, 22); 62 color: rgb(196, 26, 22);
63 white-space: nowrap; 63 white-space: pre;
64 unicode-bidi: -webkit-isolate; 64 unicode-bidi: -webkit-isolate;
65 } 65 }
66 66
67 .object-value-node { 67 .object-value-node {
68 color: rgb(136, 18, 128); 68 color: rgb(136, 18, 128);
69 } 69 }
70 70
71 .object-value-null, 71 .object-value-null,
72 .object-value-undefined { 72 .object-value-undefined {
73 color: rgb(128, 128, 128); 73 color: rgb(128, 128, 128);
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 108
109 .object-value-preview-node, 109 .object-value-preview-node,
110 .section .object-value-node { 110 .section .object-value-node {
111 color: rgb(136, 18, 128); 111 color: rgb(136, 18, 128);
112 } 112 }
113 113
114 .object-properties-section-custom-section { 114 .object-properties-section-custom-section {
115 display: inline-flex; 115 display: inline-flex;
116 flex-direction: column; 116 flex-direction: column;
117 } 117 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698