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

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

Issue 2434553004: DevTools: Select option background added to fix Dark theme (Closed)
Patch Set: Authors email changed to match registered account Created 4 years, 1 month 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/settings/settingsScreen.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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 258
259 body.inactive select.chrome-select, 259 body.inactive select.chrome-select,
260 .chrome-select:disabled { 260 .chrome-select:disabled {
261 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6); 261 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x, url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3 8%, #e6e6e6);
262 border-color: rgba(80, 80, 80, 0.2); 262 border-color: rgba(80, 80, 80, 0.2);
263 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), 263 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08),
264 inset 0 1px 2px rgba(255, 255, 255, 0.75); 264 inset 0 1px 2px rgba(255, 255, 255, 0.75);
265 color: #aaa; 265 color: #aaa;
266 } 266 }
267 267
268 .chrome-select optgroup,
269 .chrome-select option {
270 background-color: #EEEEEE;
271 color: #222;
272 }
273
268 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar, 274 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar,
269 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb ar { 275 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb ar {
270 width: 14px; 276 width: 14px;
271 } 277 }
272 278
273 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-track, 279 :not(.platform-mac).-theme-with-dark-background ::-webkit-scrollbar-track,
274 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb ar-track { 280 :host-context(:not(.platform-mac).-theme-with-dark-background) ::-webkit-scrollb ar-track {
275 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3); 281 -webkit-box-shadow: inset 0 0 1px rgba(255,255,255,0.3);
276 } 282 }
277 283
(...skipping 29 matching lines...) Expand all
307 padding: 20px; 313 padding: 20px;
308 position: absolute; 314 position: absolute;
309 top: 0; 315 top: 0;
310 right: 0; 316 right: 0;
311 bottom: 0; 317 bottom: 0;
312 left: 0; 318 left: 0;
313 font-size: 13px; 319 font-size: 13px;
314 overflow: auto; 320 overflow: auto;
315 z-index: 500; 321 z-index: 500;
316 } 322 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/settings/settingsScreen.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698