Created
June 12, 2014 22:01
-
-
Save designer-polymer/6c461753df7bacff4d74 to your computer and use it in GitHub Desktop.
designer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <link rel="import" href="../paper-form/paper-form.html"> | |
| <link rel="import" href="../paper-form/paper-fields.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| :host { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| box-sizing: border-box; | |
| } | |
| #paper_form { | |
| left: 210px; | |
| top: 120px; | |
| position: absolute; | |
| width: 660px; | |
| height: 480px; | |
| } | |
| </style> | |
| <paper-form id="paper_form" segment vertical layout> | |
| <paper-row id="paper_row" horizontal layout center wrap novanish> | |
| <input-field name="Field Name" value="a" editvalue="a" error="You must glob the zolb" invalidated id="input_field" kind="input" layout horizontal center field flex></input-field> | |
| </paper-row> | |
| </paper-form> | |
| </template> | |
| <script> | |
| Polymer('my-element', { | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment