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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/inspectorCommon.css

Issue 1642233002: [DevTools] Cleanup various bindInput implementations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@device-mode-cleanup-misc
Patch Set: Created 4 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
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 * { 7 * {
8 /* This is required for correct sizing of flex items because we rely 8 /* This is required for correct sizing of flex items because we rely
9 * on an old version of the flexbox spec. 9 * on an old version of the flexbox spec.
10 * Longer-term we should remove this, see crbug.com/473625 */ 10 * Longer-term we should remove this, see crbug.com/473625 */
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 padding-bottom: 1px; 193 padding-bottom: 1px;
194 opacity: 1.0 !important; 194 opacity: 1.0 !important;
195 } 195 }
196 196
197 .editing, 197 .editing,
198 .editing * { 198 .editing * {
199 color: #222 !important; 199 color: #222 !important;
200 text-decoration: none !important; 200 text-decoration: none !important;
201 } 201 }
202 202
203 .error-input {
204 outline: auto 2px red !important;
205 }
206
203 .chrome-select { 207 .chrome-select {
204 -webkit-appearance: none; 208 -webkit-appearance: none;
205 -webkit-user-select: none; 209 -webkit-user-select: none;
206 border: 1px solid rgb(160, 160, 160); 210 border: 1px solid rgb(160, 160, 160);
207 border-radius: 2px; 211 border-radius: 2px;
208 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 212 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08),
209 inset 0 1px 2px rgba(255, 255, 255, 0.75); 213 inset 0 1px 2px rgba(255, 255, 255, 0.75);
210 color: #444; 214 color: #444;
211 font: inherit; 215 font: inherit;
212 margin: 0 1px 0 0; 216 margin: 0 1px 0 0;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb ar-track { 265 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb ar-track {
262 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3); 266 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3);
263 } 267 }
264 268
265 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, 269 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb,
266 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark -background ::-webkit-scrollbar-thumb { 270 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark -background ::-webkit-scrollbar-thumb {
267 border-radius: 2px; 271 border-radius: 2px;
268 background-color: #333; 272 background-color: #333;
269 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); 273 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5);
270 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698