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

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

Issue 2866363003: DevTools: format keys in object previews using sans serif. (Closed)
Patch Set: w/ tests Created 3 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 | « third_party/WebKit/Source/devtools/front_end/object_ui/objectPropertiesSection.css ('k') | 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
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 .object-value-boolean {
dgozman 2017/05/13 01:43:25 This makes "true" differ in color in console promp
28 color: rgb(170, 13, 145); 28 color: rgb(13, 34, 170);
29 } 29 }
30 30
31 .object-value-function { 31 .object-value-function {
32 font-style: italic; 32 font-style: italic;
33 } 33 }
34 34
35 .object-value-function.linkified:hover { 35 .object-value-function.linkified:hover {
36 background-color: rgba(0, 0, 0, 0.1); 36 background-color: rgba(0, 0, 0, 0.1);
37 cursor: pointer; 37 cursor: pointer;
38 } 38 }
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 .-theme-with-dark-background .object-value-number, 95 .-theme-with-dark-background .object-value-number,
96 :host-context(.-theme-with-dark-background) .object-value-number, 96 :host-context(.-theme-with-dark-background) .object-value-number,
97 .-theme-with-dark-background .object-value-boolean, 97 .-theme-with-dark-background .object-value-boolean,
98 :host-context(.-theme-with-dark-background) .object-value-boolean { 98 :host-context(.-theme-with-dark-background) .object-value-boolean {
99 color: hsl(252, 100%, 75%); 99 color: hsl(252, 100%, 75%);
100 } 100 }
101 101
102 .object-properties-section .object-description { 102 .object-properties-section .object-description {
103 color: gray; 103 color: gray;
104 } 104 }
105
106 .object-properties-preview {
107 white-space: nowrap;
108 }
109
110 .name {
111 color: rgb(136, 19, 145);
112 flex-shrink: 0;
113 }
114
115 .object-properties-preview .name {
116 color: #565656;
117 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/object_ui/objectPropertiesSection.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698