Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /** | |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 ::-webkit-scrollbar { | |
| 8 background: transparent; | |
| 9 height: 4px; | |
| 10 width: 4px; | |
| 11 } | |
| 12 | |
| 13 ::-webkit-scrollbar-thumb { | |
| 14 background: rgba(0, 0, 0, 0.3); | |
| 15 height: 16px; | |
| 16 } | |
| 17 | |
| 18 ::-webkit-scrollbar-thumb:hover { | |
| 19 background: rgba(0, 0, 0, 0.2); | |
| 20 } | |
| OLD | NEW |