mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-22 18:39:55 +02:00
* Toggle pills * Finished animation framework * . * Fixed localization * Fixed iconOnly * Updated SRD Action Countdown types * feat: add shimmer animation when change countdown value * Fixed so that hidden countdowns don't take up space * Fixed countdowns.hbs part using wrong context for iconOnly * Restored glow animation for category chip * Changed back to a single sheen effect * [Review] Move visible countdown types to getter (#1999) * Move visible countdown types to getter * Punchier shimmer animation * Restored encounter/narrative * Lang cleanup * . --------- Co-authored-by: Murilo Brito <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>
|
|
<header class="countdowns-header">
|
|
<i class="fa-solid fa-clock-rotate-left" inert></i>
|
|
{{#unless iconOnly}}
|
|
<span class="window-title">{{localize "DAGGERHEART.UI.Countdowns.title"}}</span>
|
|
{{/unless}}
|
|
<div class="header-type-toggles">
|
|
{{#each typeToggles as |type|}}
|
|
<a class="header-type {{#unless type.active}}inactive{{/unless}}" data-action="toggleCountdownTypes" data-type="{{type.type}}">{{localize type.label}}</a>
|
|
{{/each}}
|
|
</div>
|
|
{{#if isGM}}
|
|
<a class="header-control" data-tooltip aria-label="DAGGERHEART.APPLICATIONS.CountdownEdit.editTitle" data-action="editCountdowns">
|
|
<i class="fa-solid fa-wrench" inert></i>
|
|
</a>
|
|
{{/if}}
|
|
<a class="header-control" data-tooltip aria-label="DAGGERHEART.UI.Countdowns.toggleIconMode" data-action="toggleViewMode">
|
|
<i class="fa-solid fa-down-left-and-up-right-to-center" inert></i>
|
|
</a>
|
|
</header>
|
|
<div class="countdowns-container">
|
|
{{> "systems/daggerheart/templates/ui/countdowns/parts/countdowns.hbs" }}
|
|
</div>
|
|
</div> |