mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Reduce Action Selection click number & Style Action Type Dialog * fixes * Action Select buttons color
16 lines
No EOL
597 B
Handlebars
16 lines
No EOL
597 B
Handlebars
<form id="action-type-select">
|
|
<header class="dialog-header">
|
|
<h1>{{itemName}}</h1>
|
|
</header>
|
|
<ul class="actions-list">
|
|
{{#each types}}
|
|
<li class="action-item">
|
|
<label class="label" for="{{id}}" data-tooltip="{{localize tooltip}}" data-tooltip-direction="LEFT">
|
|
<i class="fa-solid {{icon}} fa-xl"></i>
|
|
<span class="label">{{localize name}}</span>
|
|
</label>
|
|
<input type="radio" name="type" id="{{id}}" value="{{id}}" {{#if (eq @index 0)}}checked{{/if}}>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</form> |