feat: style consumable hbs tooltip

This commit is contained in:
molilo 2025-12-18 02:05:34 -03:00
parent 3e7af7cfd7
commit 0a2812b686

View file

@ -1,12 +1,16 @@
<div class="daggerheart dh-style tooltip"> <div class="daggerheart dh-style tooltip">
<h2 class="tooltip-title">{{item.name}}</h2>
<img class="tooltip-image" src="{{item.img}}" /> <img class="tooltip-image" src="{{item.img}}" />
<div class="tooltip-description">{{{description}}}</div> <h2 class="tooltip-title">{{item.name}}</h2>
<div class="tags">
<div class="tooltip-information-section"> <div class="tag">
<div class="tooltip-information full-width"> <span>{{localize "DAGGERHEART.GENERAL.quantity"}} {{item.system.quantity}}</span>
<label>{{localize "DAGGERHEART.GENERAL.quantity"}}</label>
<div>{{item.system.quantity}}</div>
</div> </div>
</div> </div>
{{#if description}}
<div class="tooltip-description">{{{description}}}</div>
{{/if}}
<p class="tooltip-hint">
<i class="fa-solid fa-computer-mouse"></i> {{localize "DAGGERHEART.UI.Tooltip.middleClick"}}
</p>
</div> </div>