Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(741)

Side by Side Diff: pkg/polymer/lib/elements/polymer-ui-submenu-item/demo.html

Issue 175443005: [polymer] import all elements (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: updated from bower Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698