| 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 25 matching lines...) Expand all Loading... |
| 36 font-family: dejavu sans mono, monospace; | 36 font-family: dejavu sans mono, monospace; |
| 37 } | 37 } |
| 38 | 38 |
| 39 .source-code { | 39 .source-code { |
| 40 font-family: monospace; | 40 font-family: monospace; |
| 41 font-size: 11px !important; | 41 font-size: 11px !important; |
| 42 white-space: pre-wrap; | 42 white-space: pre-wrap; |
| 43 } | 43 } |
| 44 | 44 |
| 45 * { | 45 * { |
| 46 box-sizing: border-box; | 46 box-sizing: content-box; |
| 47 } | 47 } |
| 48 | 48 |
| 49 :focus { | 49 :focus { |
| 50 outline: none; | 50 outline: none; |
| 51 } | 51 } |
| 52 | 52 |
| 53 img { | 53 img { |
| 54 -webkit-user-drag: none; | 54 -webkit-user-drag: none; |
| 55 } | 55 } |
| 56 | 56 |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 } | 229 } |
| 230 | 230 |
| 231 body.inactive select.chrome-select, | 231 body.inactive select.chrome-select, |
| 232 .chrome-select:disabled { | 232 .chrome-select:disabled { |
| 233 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); | 233 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); |
| 234 border-color: rgba(80, 80, 80, 0.2); | 234 border-color: rgba(80, 80, 80, 0.2); |
| 235 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), | 235 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), |
| 236 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 236 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
| 237 color: #aaa; | 237 color: #aaa; |
| 238 } | 238 } |
| OLD | NEW |