OLD | NEW |
| (Empty) |
1 /* | |
2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | |
3 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE | |
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS | |
5 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS | |
6 Code distributed by Google as part of the polymer project is also | |
7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS | |
8 */ | |
9 | |
10 :host { | |
11 display: block; | |
12 height: auto; | |
13 } | |
14 | |
15 :host(.core-selected, [active]) { | |
16 font-weight: initial; | |
17 } | |
18 | |
19 core-item { | |
20 cursor: default; | |
21 } | |
22 | |
23 ::content > core-item { | |
24 cursor: default; | |
25 } | |
26 | |
27 :host(.font-scalable) > core-item { | |
28 min-height: 2.5em; | |
29 } | |
30 | |
31 :host(.font-scalable) > core-item::shadow core-icon { | |
32 margin: 0 1em 0 0.25em; | |
33 height: 1.5em; | |
34 width: 1.5em; | |
35 } | |
36 | |
37 #submenu { | |
38 margin: 0 0 0 44px; | |
39 } | |
40 | |
41 :host(.font-scalable) > #submenu { | |
42 margin: 0 0 0 2.75em; | |
43 } | |
OLD | NEW |