Last active
August 29, 2015 14:12
-
-
Save clyfe/ec78f358917cadd59a04 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="../core-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<link rel="import" href="../core-tooltip/core-tooltip.html"> | |
<polymer-element name="my-element" fit=""> | |
<template> | |
<style> | |
:host { | |
box-sizing: border-box; | |
} | |
#hover-me { | |
width: 300px; | |
left: 40px; | |
top: 40px; | |
background-color: rgb(255, 255, 255); | |
} | |
</style> | |
<core-scaffold id="core_scaffold" fit> | |
<div navigation>Drawer</div> | |
<core-tooltip label="Tooltip" position="left" id="hover-me"> | |
Hover over me to see the darn tooltip positioning itself behind the left drawer. | |
</core-tooltip> | |
</core-scaffold> | |
</template> | |
<script> | |
Polymer({ | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment