mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Added CountdownEdit view * Added countdowns UI element * . * Fixed migration of countdowns * . * . * style countdown interface, application and ownership dialog * fix buttons height in ownsership selection * . * Added coloured pips to UI cooldowns to signify player visibility if not every player has it * . * Added max-height and overflow * Sync countdown current with max when equal (#1221) * Update module/applications/ui/countdownEdit.mjs Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com> * . --------- Co-authored-by: moliloo <dev.murilobrito@gmail.com> Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com>
24 lines
No EOL
1.1 KiB
Handlebars
24 lines
No EOL
1.1 KiB
Handlebars
<div class="section-container">
|
|
<div class="tiers-container">
|
|
{{#each this.tiers as |tier key|}}
|
|
<fieldset class="tier-container">
|
|
<legend>{{localize tier.name}}</legend>
|
|
|
|
{{#each tier.groups}}
|
|
<div class="checkbox-group-container">
|
|
<div class="checkboxes-container">
|
|
{{#each this.checkboxGroups}}
|
|
<div class="checkbox-grouping-coontainer {{#if this.multi}}multi{{/if}}">
|
|
{{#each this.checkboxes}}
|
|
<input type="checkbox" class="selection-checkbox{{#if (gt this.cost 1)}} multi{{/if}}" {{checked this.selected}} disabled />
|
|
{{/each}}
|
|
</div>
|
|
{{/each}}
|
|
</div>
|
|
<span class="checkbox-group-label">{{this.label}}</span>
|
|
</div>
|
|
{{/each}}
|
|
</fieldset>
|
|
{{/each}}
|
|
</div>
|
|
</div> |