Reduce Action Selection click number & Style Action Type Dialog

This commit is contained in:
Dapoolp 2025-07-25 13:49:12 +02:00
parent 0632a8c6bb
commit 549140d861
7 changed files with 133 additions and 34 deletions

View file

@ -5,8 +5,11 @@
<ul class="actions-list">
{{#each types}}
<li class="action-item">
<input type="radio" name="type" value="{{id}}" {{#if (eq @index 0)}}checked{{/if}}>
<span class="label">{{localize name}}</span>
<label class="label" for="{{id}}">
<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>