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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/sourcesPanel.css

Issue 2902543002: DevTools: migrate WatchExpressionsSidebarPane to shadow (Closed)
Patch Set: rebase Created 3 years, 6 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
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 } 61 }
62 62
63 .cursor-pointer { 63 .cursor-pointer {
64 cursor: pointer; 64 cursor: pointer;
65 } 65 }
66 66
67 .cursor-auto { 67 .cursor-auto {
68 cursor: auto; 68 cursor: auto;
69 } 69 }
70 70
71 .watch-expression-delete-button {
72 width: 10px;
73 height: 10px;
74 background-image: url(Images/deleteIcon.png);
75 background-position: 0 0;
76 background-color: transparent;
77 background-repeat: no-repeat;
78 border: 0 none transparent;
79 position: absolute;
80 top: 4px;
81 right: 3px;
82 display: none;
83 }
84
85 .watch-expression-header:hover .watch-expression-delete-button {
86 display: inline;
87 }
88
89 .watch-expressions {
90 overflow-x: hidden;
91 min-height: 26px;
92 }
93
94 .watch-expressions .dimmed {
95 opacity: 0.6;
96 }
97
98 .watch-expression-title {
99 white-space: nowrap;
100 text-overflow: ellipsis;
101 overflow: hidden;
102 line-height: 16px;
103 margin-left: 11px;
104 }
105
106 .watch-expression-object-header .watch-expression-title {
107 margin-left: 1px;
108 }
109
110 .watch-expression {
111 position: relative;
112 padding: 1px 0px 1px 6px;
113 flex: none;
114 min-height: 20px;
115 }
116
117 .watch-expressions .name {
118 color: rgb(136, 19, 145);
119 flex: none;
120 white-space: nowrap;
121 text-overflow: ellipsis ;
122 overflow: hidden;
123 }
124
125 .watch-expression-error {
126 color: red;
127 }
128
129 .-theme-with-dark-background .watch-expression-error {
130 color: hsl(0, 100%, 65%);
131 }
132
133 .watch-expressions-separator {
134 flex: none;
135 }
136
137 .watch-expressions .value {
138 white-space: nowrap;
139 display: inline;
140 }
141
142 .watch-expression .text-prompt {
143 text-overflow: clip;
144 overflow: hidden;
145 white-space: nowrap;
146 padding-left: 4px;
147 -webkit-user-select: text;
148 }
149
150 .watch-expression-text-prompt-proxy {
151 margin-left: 12px;
152 }
153
154 .watch-expression-header {
155 flex: auto;
156 }
157
158 .watch-expression-object-header {
159 margin-left: -12px;
160 padding-left: 12px;
161 }
162
163 .watch-expression-header:hover {
164 background-color: #F0F0F0;
165 padding-right: 14px;
166 }
167
168 .sidebar-pane-stack .watch-expressions {
169 margin-top: 0px;
170 }
171
172 .event-listeners-sidebar-pane .toolbar { 71 .event-listeners-sidebar-pane .toolbar {
173 border-bottom: 1px solid #eee; 72 border-bottom: 1px solid #eee;
174 } 73 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698