OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright 2017 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 .watch-expression-delete-button { | |
8 width: 10px; | |
9 height: 10px; | |
10 background-image: url(Images/deleteIcon.png); | |
11 background-position: 0 0; | |
12 background-color: transparent; | |
13 background-repeat: no-repeat; | |
14 border: 0 none transparent; | |
15 position: absolute; | |
16 top: 4px; | |
17 right: 3px; | |
18 display: none; | |
19 } | |
20 | |
21 .watch-expression-header:hover .watch-expression-delete-button { | |
22 display: inline; | |
23 } | |
24 | |
25 .watch-expressions { | |
26 overflow-x: hidden; | |
27 min-height: 26px; | |
28 } | |
29 | |
30 .watch-expressions .dimmed { | |
31 opacity: 0.6; | |
32 } | |
33 | |
34 .watch-expression-title { | |
35 white-space: nowrap; | |
36 text-overflow: ellipsis; | |
37 overflow: hidden; | |
38 line-height: 16px; | |
39 margin-left: 11px; | |
40 } | |
41 | |
42 .watch-expression-object-header .watch-expression-title { | |
43 margin-left: 1px; | |
44 } | |
45 | |
46 .watch-expression { | |
47 position: relative; | |
48 padding: 1px 0px 1px 6px; | |
49 flex: none; | |
50 min-height: 20px; | |
51 } | |
52 | |
53 .watch-expressions .name { | |
54 color: rgb(136, 19, 145); | |
55 flex: none; | |
56 white-space: nowrap; | |
57 text-overflow: ellipsis ; | |
58 overflow: hidden; | |
59 } | |
60 | |
61 .watch-expression-error { | |
62 color: red; | |
63 } | |
64 | |
65 :host-context(.-theme-with-dark-background) .watch-expression-error { | |
66 color: hsl(0, 100%, 65%); | |
67 } | |
68 | |
69 .watch-expressions-separator { | |
70 flex: none; | |
71 } | |
72 | |
73 .watch-expressions .value { | |
74 white-space: nowrap; | |
75 display: inline; | |
76 } | |
77 | |
78 .watch-expression .text-prompt { | |
79 text-overflow: clip; | |
80 overflow: hidden; | |
81 white-space: nowrap; | |
82 padding-left: 4px; | |
83 -webkit-user-select: text; | |
84 } | |
85 | |
86 .watch-expression-text-prompt-proxy { | |
87 margin-left: 12px; | |
88 } | |
89 | |
90 .watch-expression-header { | |
91 flex: auto; | |
92 } | |
93 | |
94 .watch-expression-object-header { | |
95 margin-left: -12px; | |
96 padding-left: 12px; | |
97 } | |
98 | |
99 .watch-expression-header:hover { | |
100 background-color: #F0F0F0; | |
101 padding-right: 14px; | |
102 } | |
103 | |
104 .sidebar-pane-stack .watch-expressions { | |
dgozman
2017/05/25 00:22:05
Just remove it.
luoe
2017/05/27 03:04:47
Done.
| |
105 margin-top: 0px; | |
106 } | |
OLD | NEW |