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

Side by Side Diff: pkg/polymer/lib/elements/polymer-ui-field/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 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <title>Polymer UI Field</title>
6 <script src="../platform/platform.js"></script>
7 <link rel="import" href="polymer-ui-field.html" />
8 <link rel="import" href="../polymer-ui-icon/polymer-ui-icon.html" />
9 <link rel="import" href="../polymer-ui-icon-button/polymer-ui-icon-button.ht ml" />
10 <link rel="import" href="../polymer-ui-menu-button/polymer-ui-menu-button.ht ml" />
11 <style>
12 html {
13 font-family: 'Helvetica Neue', 'Roboto', 'Arial', sans-serif;
14 font-size: 14px;
15 }
16
17 polymer-ui-field {
18 border: 1px solid #ddd;
19 margin: 10px;
20 height: 40px;
21 }
22 </style>
23 </head>
24 <body theme="polymer-ui-light-theme" unresolved>
25 <polymer-ui-field>
26 <polymer-ui-icon icon="contact"></polymer-ui-icon>
27 <input placeholder="hi!" flex>
28 </polymer-ui-field>
29 <polymer-ui-field>
30 <polymer-ui-icon icon="search"></polymer-ui-icon>
31 <input placeholder="Search" flex>
32 <polymer-ui-icon icon="dialog"></polymer-ui-icon>
33 </polymer-ui-field>
34 <polymer-ui-field>
35 <polymer-ui-icon icon="plus"></polymer-ui-icon>
36 <label>I'm a label!</label>
37 <input placeholder="I have a label" flex>
38 </polymer-ui-field>
39 <polymer-ui-field>
40 <input placeholder="I have no icon" flex>
41 </polymer-ui-field>
42 </body>
43 </html>
OLDNEW
« no previous file with comments | « pkg/polymer/lib/elements/polymer-ui-field/bower.json ('k') | pkg/polymer/lib/elements/polymer-ui-field/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698