Skip to content

Instantly share code, notes, and snippets.

@igorbarinov
Created October 11, 2014 16:22
Show Gist options
  • Save igorbarinov/22f60655938199766ffd to your computer and use it in GitHub Desktop.
Save igorbarinov/22f60655938199766ffd to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../../salesforce/mobile-ui-elements/elements/force-ui-app/force-ui-app.html">
<link rel="import" href="../../salesforce/s1-elements/s1AnchorDark.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#force_ui_app {
overflow-y: scroll;
left: 0px;
top: 50px;
position: absolute;
}
#s1_anchor_dark {
width: 320px;
}
#s1_anchor_light_labelon_bottom {
width: 320px;
left: 1210px;
top: 540px;
}
#s1_anchor_light_no_background {
width: 320px;
left: 1260px;
top: 610px;
}
#s1_avatar_default {
left: 1190px;
top: 560px;
}
#s1_feed_item_default {
width: 320px;
left: 1210px;
top: 550px;
}
#s1_header_primary_default {
width: 320px;
left: 1130px;
top: 520px;
}
#s1_anchor_light_default {
width: 320px;
left: 1140px;
top: 560px;
}
#s1_list_flag_objects {
width: 320px;
left: 1130px;
top: 490px;
}
#s1_staged_navigation_stage_left {
width: 320px;
left: 1190px;
top: 510px;
}
#s1_toast_notification {
width: 320px;
left: 1110px;
top: 630px;
}
#s1_textarea_with_buttonsand_error {
width: 320px;
left: 1190px;
top: 510px;
}
#s1_textarea_with_buttons {
width: 320px;
left: 1230px;
top: 590px;
}
#s1_textarea_default {
width: 320px;
left: 1200px;
top: 630px;
}
</style>
<force-ui-app id="force_ui_app" class="splitview">
<s1-anchor-dark anchordarktitle="Hello" id="s1_anchor_dark"></s1-anchor-dark>
</force-ui-app>
</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