OLD | NEW |
(Empty) | |
| 1 |
| 2 <!doctype html> |
| 3 <!-- |
| 4 Copyright 2013 The Polymer Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style |
| 6 license that can be found in the LICENSE file. |
| 7 --> |
| 8 <html> |
| 9 <head> |
| 10 <title>polymer-ui-submenu-item</title> |
| 11 <script src="../platform/platform.js"></script> |
| 12 <link rel="import" href="polymer-ui-submenu-item.html"> |
| 13 <link rel="import" href="../polymer-ui-menu-item/polymer-ui-menu-item.html"> |
| 14 <link rel="stylesheet" href="../polymer-ui-base/base.css"> |
| 15 <style> |
| 16 section { |
| 17 width: 300px; |
| 18 padding: 10px; |
| 19 } |
| 20 </style> |
| 21 </head> |
| 22 <body class="polymer-ui-body-text" unresolved> |
| 23 <h2>polymer-ui-light-theme</h2> |
| 24 <section theme="polymer-ui-light-theme"> |
| 25 <polymer-ui-submenu-item icon="settings" label="Topics" active> |
| 26 <polymer-ui-menu-item label="Topics 1"></polymer-ui-menu-item> |
| 27 <polymer-ui-menu-item label="Topics 2"></polymer-ui-menu-item> |
| 28 </polymer-ui-submenu-item> |
| 29 </section> |
| 30 <h2>polymer-ui-dark-theme</h2> |
| 31 <section style="background: #333;" theme="polymer-ui-dark-theme"> |
| 32 <polymer-ui-submenu-item icon="settings" label="Topics" active> |
| 33 <polymer-ui-menu-item label="Topics 1"></polymer-ui-menu-item> |
| 34 <polymer-ui-menu-item label="Topics 2"></polymer-ui-menu-item> |
| 35 </polymer-ui-submenu-item> |
| 36 </section> |
| 37 </body> |
| 38 </html> |
OLD | NEW |