| OLD | NEW |
| 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 outline: none; | 226 outline: none; |
| 227 text-shadow: 0 1px 0 rgb(240, 240, 240); | 227 text-shadow: 0 1px 0 rgb(240, 240, 240); |
| 228 padding-right: 20px; | 228 padding-right: 20px; |
| 229 padding-left: 6px; | 229 padding-left: 6px; |
| 230 background-image: -webkit-image-set(url(Images/chromeSelect.png) 1x, url(Ima
ges/chromeSelect_2x.png) 2x), linear-gradient(#ededed, #ededed 38%, #dedede); | 230 background-image: -webkit-image-set(url(Images/chromeSelect.png) 1x, url(Ima
ges/chromeSelect_2x.png) 2x), linear-gradient(#ededed, #ededed 38%, #dedede); |
| 231 background-position: right center; | 231 background-position: right center; |
| 232 background-repeat: no-repeat; | 232 background-repeat: no-repeat; |
| 233 min-height: 24px; | 233 min-height: 24px; |
| 234 } | 234 } |
| 235 | 235 |
| 236 .chrome-select optgroup, |
| 237 .chrome-select option { |
| 238 background-color: #EEEEEE; |
| 239 color: #222; |
| 240 } |
| 241 |
| 236 .chrome-select:enabled:hover { | 242 .chrome-select:enabled:hover { |
| 237 background-image: -webkit-image-set(url(Images/chromeSelect.png) 1x, url(Ima
ges/chromeSelect_2x.png) 2x), linear-gradient(#f0f0f0, #f0f0f0 38%, #e0e0e0); | 243 background-image: -webkit-image-set(url(Images/chromeSelect.png) 1x, url(Ima
ges/chromeSelect_2x.png) 2x), linear-gradient(#f0f0f0, #f0f0f0 38%, #e0e0e0); |
| 238 border-color: rgba(0, 0, 0, 0.3); | 244 border-color: rgba(0, 0, 0, 0.3); |
| 239 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), | 245 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), |
| 240 inset 0 1px 2px rgba(255, 255, 255, 0.95); | 246 inset 0 1px 2px rgba(255, 255, 255, 0.95); |
| 241 color: black; | 247 color: black; |
| 242 } | 248 } |
| 243 | 249 |
| 244 .chrome-select:enabled:active { | 250 .chrome-select:enabled:active { |
| 245 background-image: -webkit-image-set(url(Images/chromeSelect.png) 1x, url(Ima
ges/chromeSelect_2x.png) 2x), linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7); | 251 background-image: -webkit-image-set(url(Images/chromeSelect.png) 1x, url(Ima
ges/chromeSelect_2x.png) 2x), linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7); |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |