| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright 2017 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 .item.disabled { |
| 8 opacity: 0.5; |
| 9 } |
| 10 |
| 11 .item-list { |
| 12 background-color: white; |
| 13 box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), |
| 14 0 2px 4px rgba(0, 0, 0, 0.2), |
| 15 0 2px 6px rgba(0, 0, 0, 0.1); |
| 16 overflow-x: hidden; |
| 17 overflow-y: auto; |
| 18 width: 100%; |
| 19 } |
| 20 |
| 21 .item.highlighted { |
| 22 color: white; |
| 23 background-color: rgb(56, 121, 217); |
| 24 } |
| OLD | NEW |