OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <!-- | 2 <!-- |
3 @license | 3 @license |
4 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 4 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
5 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 5 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
6 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 6 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
7 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 7 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
8 Code distributed by Google as part of the polymer project is also | 8 Code distributed by Google as part of the polymer project is also |
9 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 9 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
10 --> | 10 --> |
11 <html> | 11 <html> |
12 <head> | 12 <head> |
13 | 13 |
14 <meta charset="utf-8"> | 14 <meta charset="utf-8"> |
15 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 15 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
16 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-
scale=1, user-scalable=yes"> | 16 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-
scale=1, user-scalable=yes"> |
17 | 17 |
18 <title>paper-menu demo</title> | 18 <title>paper-menu demo</title> |
19 | 19 |
20 <script src="../../webcomponentsjs/webcomponents-lite.js"></script> | 20 <script src="../../webcomponentsjs/webcomponents-lite.js"></script> |
21 | 21 |
22 <link rel="import" href="../../paper-item/paper-item.html"> | 22 <link rel="import" href="../../paper-item/paper-item.html"> |
23 <link rel="import" href="../../iron-collapse/iron-collapse.html"> | 23 <link rel="import" href="../../paper-styles/demo-pages.html"> |
24 <link rel="import" href="../paper-menu.html"> | 24 <link rel="import" href="../paper-menu.html"> |
25 <link rel="import" href="../paper-submenu.html"> | 25 <link rel="import" href="../paper-submenu.html"> |
26 <link rel="import" href="../../paper-styles/demo-pages.html"> | |
27 | 26 |
28 <style is="custom-style"> | 27 <style is="custom-style"> |
29 .horizontal-section { | 28 .horizontal-section { |
30 padding: 0 !important; | 29 padding: 0 !important; |
31 } | 30 } |
32 | 31 |
33 .avatar { | 32 .avatar { |
34 display: inline-block; | 33 display: inline-block; |
35 width: 40px; | 34 width: 40px; |
36 height: 40px; | 35 height: 40px; |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 <paper-item>Unavailable 1</paper-item> | 140 <paper-item>Unavailable 1</paper-item> |
142 <paper-item>Unavailable 2</paper-item> | 141 <paper-item>Unavailable 2</paper-item> |
143 </paper-menu> | 142 </paper-menu> |
144 </paper-submenu> | 143 </paper-submenu> |
145 </paper-menu> | 144 </paper-menu> |
146 </div> | 145 </div> |
147 </div> | 146 </div> |
148 </div> | 147 </div> |
149 </body> | 148 </body> |
150 </html> | 149 </html> |
OLD | NEW |