blob: 6d0d38350cbfd993d2a2b01313ebcef5270436f6 [file] [log] [blame]
Paul Lewis8cddf9932019-09-27 16:40:071/**
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 Bynensb0c1f4b2020-05-15 14:34:4110 background: #f3f3f3;
Paul Lewis8cddf9932019-09-27 16:40:0711}
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 Bynensca9fa2d2020-05-19 15:23:4023 background: rgb(234 234 234);
Paul Lewis8cddf9932019-09-27 16:40:0724}
25
26.overview-sidebar-panel-item.selected {
Mathias Bynensb0c1f4b2020-05-15 14:34:4127 background: #1a73e8;
28 color: #fff;
Paul Lewis8cddf9932019-09-27 16:40:0729}
30
31.overview-toolbar {
Mathias Bynensca9fa2d2020-05-19 15:23:4032 border-bottom: 1px solid rgb(204 204 204);
Paul Lewis8cddf9932019-09-27 16:40:0733}