Skip to content

Instantly share code, notes, and snippets.

@chuckh
Created July 24, 2014 17:17
Show Gist options
  • Save chuckh/1efb4fcfafda079a59d3 to your computer and use it in GitHub Desktop.
Save chuckh/1efb4fcfafda079a59d3 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-button/paper-button.html">
<polymer-element name="form-dialog" mode="add">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#open_form_button {
background-color: rgb(255, 212, 121);
}
</style>
<paper-button label="Open Form Dialog" raisedbutton icon="arrow-forward" id="open_form_button" on-click"{{openformdialog}}" hidden></paper-button>
</template>
<script>
Polymer('form-dialog', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment