mirror of https://github.com/keeweb/keeweb
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
479 B
Handlebars
14 lines
479 B
Handlebars
<div class="dropdown">
|
|
{{#each options as |option|}}
|
|
<div class="dropdown__item {{#if option.active}}dropdown__item--active{{/if}}" data-value="{{option.value}}">
|
|
<i class="fa fa-{{option.icon}} dropdown__item-icon"></i>
|
|
<span class="dropdown__item-text">
|
|
{{option.text}}
|
|
{{~#if option.hint~}}
|
|
<span class="muted-color">{{option.hint}}</span>
|
|
{{~/if~}}
|
|
</span>
|
|
</div>
|
|
{{/each}}
|
|
</div>
|