Paul Lewis | 8cddf993 | 2019-09-27 16:40:07 | [diff] [blame] | 1 | /** |
| 2 | * Copyright 2019 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 | .overview-sidebar-panel { |
| 8 | overflow: auto; |
| 9 | display: flex; |
Mathias Bynens | b0c1f4b | 2020-05-15 14:34:41 | [diff] [blame] | 10 | background: #f3f3f3; |
Paul Lewis | 8cddf993 | 2019-09-27 16:40:07 | [diff] [blame] | 11 | } |
| 12 | |
| 13 | .overview-sidebar-panel-item { |
| 14 | height: 30px; |
| 15 | padding-left: 30px; |
| 16 | display: flex; |
| 17 | align-items: center; |
| 18 | cursor: pointer; |
| 19 | } |
| 20 | |
| 21 | .overview-sidebar-panel-item:hover, |
| 22 | .overview-sidebar-panel-item:focus { |
Mathias Bynens | ca9fa2d | 2020-05-19 15:23:40 | [diff] [blame] | 23 | background: rgb(234 234 234); |
Paul Lewis | 8cddf993 | 2019-09-27 16:40:07 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | .overview-sidebar-panel-item.selected { |
Mathias Bynens | b0c1f4b | 2020-05-15 14:34:41 | [diff] [blame] | 27 | background: #1a73e8; |
| 28 | color: #fff; |
Paul Lewis | 8cddf993 | 2019-09-27 16:40:07 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | .overview-toolbar { |
Mathias Bynens | ca9fa2d | 2020-05-19 15:23:40 | [diff] [blame] | 32 | border-bottom: 1px solid rgb(204 204 204); |
Paul Lewis | 8cddf993 | 2019-09-27 16:40:07 | [diff] [blame] | 33 | } |