daggerheart/templates/dialogs/actionSelect.hbs
Dapoulp 3f95740b7a
Reduce Action Selection click number & Style Action Type Dialog (#408)
* Reduce Action Selection click number & Style Action Type Dialog

* fixes

* Action Select buttons color
2025-07-25 19:13:21 +02:00

15 lines
No EOL
456 B
Handlebars

<form id="item-action-select">
<header class="dialog-header">
<h1>{{itemName}}</h1>
</header>
<ul class="action-buttons-list">
{{#each actions}}
<li class="action-item">
<button type="button" class="list-button reverted" data-action-id="{{id}}" data-action="choose">
<img src="{{ img }}">
<span>{{ name }}</span>
</button>
</li>
{{/each}}
</ul>
</form>