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

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

Issue 2712513002: DevTools: extract ObjectUI module from Components (Closed)
Patch Set: fix build.gn Created 3 years, 10 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
(Empty)
1 /*
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
4 * found in the LICENSE file.
5 */
6
7 .object-value-scientific-notation-exponent {
8 flex-shrink: 0;
9 }
10
11 .object-value-scientific-notation-mantissa {
12 overflow: hidden;
13 text-overflow: ellipsis;
14 flex-shrink: 1;
15 min-width: 1ex;
16 }
17
18 .object-value-scientific-notation-number {
19 display: flex !important;
20 }
21
22 .object-value-node:hover {
23 background-color: rgba(56, 121, 217, 0.1);
24 }
25
26 .object-value-function-prefix,
27 .object-value-boolean {
28 color: rgb(170, 13, 145);
29 }
30
31 .object-value-function {
32 font-style: italic;
33 }
34
35 .object-value-function.linkified:hover {
36 background-color: rgba(0, 0, 0, 0.1);
37 cursor: pointer;
38 }
39
40 .object-value-object,
41 .object-value-promise,
42 .object-value-map,
43 .object-value-set,
44 .object-value-iterator,
45 .object-value-generator,
46 .object-value-node,
47 .object-value-typedarray,
48 .object-value-array {
49 position: relative;
50 vertical-align: baseline;
51 color: inherit;
52 display: inline-block;
53 }
54
55 .object-value-number {
56 color: rgb(28, 0, 207);
57 }
58
59 .object-value-string,
60 .object-value-regexp,
61 .object-value-symbol {
62 white-space: pre;
63 unicode-bidi: -webkit-isolate;
64 color: rgb(196, 26, 22);
65 }
66
67 .object-value-string-quote {
68 color: #222;
69 }
70
71 .object-value-node {
72 color: rgb(136, 18, 128);
73 }
74
75 .object-value-null,
76 .object-value-undefined {
77 color: rgb(128, 128, 128);
78 }
79
80 .object-value {
81 text-overflow: ellipsis;
82 overflow: hidden;
83 -webkit-user-select: text;
84 }
85
86 .object-value-calculate-value-button:hover {
87 text-decoration: underline;
88 }
89
90 .object-properties-section-custom-section {
91 display: inline-flex;
92 flex-direction: column;
93 }
94
95 .-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,
98 :host-context(.-theme-with-dark-background) .object-value-boolean {
99 color: hsl(252, 100%, 75%);
100 }
101
102 .object-description {
103 color: gray;
104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698