2014-11-29 14:39:37 -05:00
|
|
|
extends /templates/core/modal-base
|
2014-11-12 17:06:30 -05:00
|
|
|
|
|
|
|
block modal-header-content
|
|
|
|
h3 Choose Container for Vector Icon
|
|
|
|
|
|
|
|
block modal-body-content
|
|
|
|
if chosenContainer
|
|
|
|
form.form
|
|
|
|
.form-group
|
|
|
|
select#container-select.form-control
|
|
|
|
for container in containers
|
|
|
|
option(value=container, selected=container === chosenContainer)= container
|
|
|
|
|
|
|
|
canvas(width=demoSize height=demoSize)#resulting-icon
|
|
|
|
|
|
|
|
.alert.alert-info Arrow keys to move, Shift-Plus/Minus to scale.
|
|
|
|
else
|
|
|
|
div forgetting something?
|
|
|
|
|
|
|
|
block modal-footer-content
|
|
|
|
button.btn.pull-left.btn-info#center
|
|
|
|
span.glyphicon.glyphicon-cutlery
|
|
|
|
span.spl Center
|
|
|
|
button.btn.btn-primary#done-button Done
|