30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<template name="toolbarSectionTools">
|
|
<div class="toolbarSectionTools pull-left m-t-1 rm-l-3">
|
|
{{#each toolbarButton in toolbarButtons}}
|
|
{{>toolbarSectionButton toolbarButton}}
|
|
{{/each}}
|
|
|
|
{{ #if extraToolbarButtons}}
|
|
<div id="moreTools" class="js-open-more-tools toolbarSectionButton rp-x-1 rm-l-3">
|
|
<div class="svgContainer">
|
|
<svg>
|
|
<use xlink:href="/packages/viewerbase/assets/icons.svg#icon-tools-more"></use>
|
|
</svg>
|
|
</div>
|
|
<div class="buttonLabel">
|
|
<span>More</span>
|
|
<i class="fa fa-caret-down" aria-hidden="true"></i>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="toolbarSectionDrawerContainer">
|
|
<!-- TODO: [design] check which group of tools shall be shown -->
|
|
<div class="toolbarSectionDrawer">
|
|
{{#each toolbarButton in extraToolbarButtons}}
|
|
{{>toolbarSectionButton toolbarButton}}
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
{{ /if }}
|
|
</div>
|
|
</template> |