fix small style details in action config application

This commit is contained in:
moliloo 2025-07-05 16:59:44 -03:00
parent 0f87b389e3
commit 93a61b4d41
7 changed files with 60 additions and 54 deletions

View file

@ -5,13 +5,11 @@
</legend>
{{#each source as |cost index|}}
<div class="nest-inputs">
<fieldset class="flex">
{{formField ../fields.type choices=(@root.disableOption index ../fields.type.choices ../source) label="Resource" value=cost.type name=(concat "cost." index ".type") localize=true}}
{{formField ../fields.value label="Amount" value=cost.value name=(concat "cost." index ".value")}}
{{formField ../fields.scalable label="Scalable" value=cost.scalable name=(concat "cost." index ".scalable") classes="checkbox"}}
{{formField ../fields.step label="Step" value=cost.step name=(concat "cost." index ".step") disabled=(not cost.scalable)}}
</fieldset>
<div class="fas fa-trash" data-action="removeElement" data-index="{{index}}"></div>
{{formField ../fields.scalable label="Scalable" value=cost.scalable name=(concat "cost." index ".scalable") classes="checkbox"}}
{{formField ../fields.type choices=(@root.disableOption index ../fields.type.choices ../source) label="Resource" value=cost.type name=(concat "cost." index ".type") localize=true}}
{{formField ../fields.value label="Amount" value=cost.value name=(concat "cost." index ".value")}}
{{formField ../fields.step label="Step" value=cost.step name=(concat "cost." index ".step") disabled=(not cost.scalable)}}
<a class="btn" data-tooltip="{{localize "DAGGERHEART.Tooltip.delete"}}" data-action="removeElement" data-index="{{index}}"><i class="fas fa-trash"></i></a>
</div>
{{/each}}
</fieldset>

View file

@ -3,17 +3,21 @@
Effects
<a><i class="fa-solid fa-plus icon-button" data-action="addEffect"></i></a>
</legend>
{{#each source as | effect index |}}
<div class="nest-inputs">
<fieldset class="flex list-w-img" data-effect-id="{{effect._id}}" data-action="editEffect">
<ul class="items-list">
{{#each source as | effect index |}}
<div class="inventory-item" data-effect-id="{{effect._id}}" data-action="editEffect">
{{#with (@root.getEffectDetails effect._id) as | details |}}
<img src="{{img}}">
<label>{{name}}</label>
<img class="item-img" src="{{img}}">
<div class="item-label">
<span class="item-name">{{name}}</span>
</div>
{{/with}}
<input type="hidden" name="effects.{{index}}._id" value="{{effect._id}}">
{{#if @root.source.save.trait}}{{formInput ../fields.onSave value=effect.onSave name=(concat "effects." index ".onSave") dataset=(object tooltip="Applied even if save succeeded" tooltipDirection="UP")}}{{/if}}
</fieldset>
<div class="fas fa-trash" data-action="removeEffect" data-index="{{index}}"></div>
</div>
{{/each}}
<div class="controls">
<a data-tooltip="{{localize "DAGGERHEART.Tooltip.delete"}}" data-action="removeEffect" data-index="{{index}}"><i class="fas fa-trash"></i></a>
</div>
</div>
{{/each}}
</ul>
</fieldset>

View file

@ -0,0 +1,3 @@
<header class="dialog-header">
<h1>{{source.name}}</h1>
</header>