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

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

Issue 2033093004: DevTools: fix invalid outline style across inputs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments Created 4 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/networkConfigView.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 * { 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 { 203 .error-input {
204 outline: auto 2px red !important; 204 outline: auto 2px red !important;
205 outline-offset: -2px !important;
205 } 206 }
206 207
207 .chrome-select { 208 .chrome-select {
208 -webkit-appearance: none; 209 -webkit-appearance: none;
209 -webkit-user-select: none; 210 -webkit-user-select: none;
210 border: 1px solid rgb(160, 160, 160); 211 border: 1px solid rgb(160, 160, 160);
211 border-radius: 2px; 212 border-radius: 2px;
212 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 213 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08),
213 inset 0 1px 2px rgba(255, 255, 255, 0.75); 214 inset 0 1px 2px rgba(255, 255, 255, 0.75);
214 color: #444; 215 color: #444;
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb, 270 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-thumb,
270 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark -background ::-webkit-scrollbar-thumb { 271 :host-context(:not(.platform-mac).-theme-with-dark-background) .-theme-with-dark -background ::-webkit-scrollbar-thumb {
271 border-radius: 2px; 272 border-radius: 2px;
272 background-color: #333; 273 background-color: #333;
273 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5); 274 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.5);
274 } 275 }
275 276
276 label[is=dt-icon-label] { 277 label[is=dt-icon-label] {
277 flex: none; 278 flex: none;
278 } 279 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/network/networkConfigView.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698