OLD | NEW |
---|---|
(Empty) | |
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 | |
3 * found in the LICENSE file. */ | |
4 | |
5 :host { | |
6 display: block; | |
7 } | |
8 | |
9 paper-menu { | |
10 margin: 0; | |
11 padding-top: 20px; | |
12 } | |
13 | |
14 paper-menu > * { | |
15 -webkit-padding-start: 40px; | |
16 font-size: 15px; | |
17 margin-bottom: 5px; | |
18 min-height: 45px; | |
19 } | |
20 | |
21 paper-menu > *.iron-selected { | |
22 background-color: rgb(38, 166, 154); | |
23 } | |
OLD | NEW |