Skip to content

Instantly share code, notes, and snippets.

@inotnako
Last active August 29, 2015 14:06
Show Gist options
  • Save inotnako/8ee951a3cdc38c82811a to your computer and use it in GitHub Desktop.
Save inotnako/8ee951a3cdc38c82811a to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../core-drawer-panel/core-drawer-panel.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-menu/core-submenu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../paper-tabs/paper-tabs.html">
<link rel="import" href="../paper-tabs/paper-tab.html">
<polymer-element name="mc-order-editor">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
html, body {
font-family: RobotoDraft, sans-serif;
}
#core_header_panel {
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
background-color: rgb(225, 225, 225);
}
#core_header_panel2 {
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: absolute;
background-color: rgb(248, 253, 255);
}
#core_toolbar {
color: rgb(255, 255, 255);
background-color: rgb(82, 124, 193);
}
#core_toolbar1 {
color: rgb(255, 255, 255);
background-color: rgb(77, 134, 227);
}
#section {
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
background-color: rgb(250, 250, 250);
}
#section4 {
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 4px, rgba(0, 0, 0, 0.0980392) 0px 0px 3px;
background-color: rgb(250, 250, 250);
}
#drawerPanel {
left: 0px;
top: -10px;
position: absolute;
}
</style>
<core-drawer-panel transition selected="main" rightdrawer id="drawerPanel" touch-action>
<section id="section" drawer>
<core-toolbar id="navheader'">
<span id="span">Nikolla Peroff</span>
</core-toolbar>
<core-menu selected="0" selectedindex="0">
<core-item id="core_item" label="Orders" horizontal center layout active></core-item>
<core-item id="core_item1" label="Dashboard" horizontal center layout></core-item>
</core-menu>
</section>
<section id="section1" main>
<core-header-panel mode="standard" id="core_header_panel">
<core-toolbar id="core_toolbar" class="small-tall tall">
<core-icon-button icon="menu" id="core_icon_button"></core-icon-button>
<div id="div">Order # 78234</div>
<div id="div2" class="bottom fit" horizontal layout>
<paper-tabs selected="2" selectedindex="2" id="paper_tabs" flex>
<paper-tab id="paper_tab1">Services</paper-tab>
<paper-tab id="paper_tab2">Settings</paper-tab>
<paper-tab id="paper_tab2" active>Files</paper-tab>
</paper-tabs>
</div>
</core-toolbar>
<section id="section4">
</section>
</core-header-panel>
</section>
<section id="section3" drawer>
<core-header-panel mode="standard" id="core_header_panel2">
<core-toolbar id="core_toolbar1" class="medium-tall tall">
</core-toolbar>
<section id="section5">
</section>
</core-header-panel>
</section>
</core-drawer-panel>
</template>
<script>
Polymer('mc-order-editor', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment