| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. | 3 * found in the LICENSE file. */ |
| 4 */ | |
| 5 | 4 |
| 6 body { | 5 body { |
| 7 -webkit-user-select: none; | 6 -webkit-user-select: none; |
| 8 overflow: hidden; | 7 overflow: hidden; |
| 9 padding: 0; | 8 padding: 0; |
| 10 } | 9 } |
| 11 | 10 |
| 12 .audio-player { | 11 .audio-player { |
| 13 background-color: #1d1d1d; | 12 background-color: #1d1d1d; |
| 14 bottom: 0; | 13 bottom: 0; |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 inset -1px -1px 0 rgba(0, 0, 0, 0.07); | 355 inset -1px -1px 0 rgba(0, 0, 0, 0.07); |
| 357 background-color: rgba(0, 0, 0, 0.05); | 356 background-color: rgba(0, 0, 0, 0.05); |
| 358 } | 357 } |
| 359 | 358 |
| 360 ::-webkit-scrollbar-track:vertical { | 359 ::-webkit-scrollbar-track:vertical { |
| 361 background-clip: padding-box; | 360 background-clip: padding-box; |
| 362 background-color: transparent; | 361 background-color: transparent; |
| 363 border-left: 5px solid transparent; | 362 border-left: 5px solid transparent; |
| 364 border-right: 0 solid transparent; | 363 border-right: 0 solid transparent; |
| 365 } | 364 } |
| OLD | NEW |