OLD | NEW |
1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 | 4 |
5 :host { | 5 :host { |
6 display: block; | 6 background-color: rgb(38, 50, 56); |
| 7 color: white; |
| 8 display: flex; |
| 9 flex-direction: column; |
| 10 overflow: auto; |
7 } | 11 } |
8 | 12 |
9 paper-menu { | 13 paper-menu { |
10 margin: 0; | 14 margin: 0; |
11 padding-top: 20px; | 15 padding-top: 20px; |
12 } | 16 } |
13 | 17 |
14 paper-menu > * { | 18 paper-menu > * { |
15 -webkit-padding-start: 40px; | 19 -webkit-padding-start: 40px; |
16 font-size: 15px; | 20 font-size: 15px; |
17 margin-bottom: 5px; | 21 margin-bottom: 5px; |
18 min-height: 45px; | 22 min-height: 45px; |
19 } | 23 } |
20 | 24 |
21 paper-menu > *.iron-selected { | 25 paper-menu > *.iron-selected { |
22 background-color: rgb(38, 166, 154); | 26 background-color: rgb(38, 166, 154); |
23 } | 27 } |
OLD | NEW |