Skip to content

Instantly share code, notes, and snippets.

@RafalFilipek
Last active August 29, 2015 14:08
Show Gist options
  • Save RafalFilipek/16cb00a37c63a76292c0 to your computer and use it in GitHub Desktop.
Save RafalFilipek/16cb00a37c63a76292c0 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-ajax/core-ajax.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-icons/core-icons.html">
<link rel="import" href="../paper-icon-button/paper-icon-button.html">
<polymer-element name="my-element" fullbleed="" vertical="" layout="" unresolved="">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#core_ajax {
left: 950px;
top: 380px;
position: absolute;
}
#mainheader {
background-color: rgb(3, 169, 244);
}
</style>
<core-ajax url="http://172.16.1.1/v1/internal/ui/services?dc=waw1&token=anonymous" handleas="json" auto method="GET" id="core_ajax" hidden></core-ajax>
<core-header-panel id="core_header_panel" flex>
<core-toolbar id="mainheader" one flex>
<paper-icon-button icon="arrow-back" id="navicon"></paper-icon-button>
<span id="span" flex>Title</span>
<paper-icon-button icon="search" id="searchbutton"></paper-icon-button>
</core-toolbar>
<p id="p">Sample content.</p>
<p id="p1">Sample content.</p>
</core-header-panel>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment