Changed rpg-docs folder to app

This commit is contained in:
Stefan Zermatten
2018-05-21 14:21:07 +02:00
parent 45e9f491ff
commit 52baf297ca
419 changed files with 12 additions and 13 deletions

View File

@@ -0,0 +1,32 @@
<!--
Dialog stack should be placed last in the root layout template
It creates a stack of dialogs that can be closed individually
-->
<template name="dialogStack">
<div class="dialog-stack layout vertical center center-justified {{dialogStackClass}}">
<div class="fit backdrop"></div>
<div class="dialog-sizer">
{{#each dialogs}}
<div class="dialog" style={{dialogStyle @index}}>
{{> UI.dynamic template=template data=data}}
</div>
{{/each}}
</div>
</div>
</template>
<template name="testDialog">
<paper-toolbar>
Test dialog {{data}}
</paper-toolbar>
<div>
<div class="testButton">
</div>
<div class="testButton">
</div>
<div class="testButton">
</div>
<div class="testButton">
</div>
</div>
</template>