mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-18 07:59:03 +01:00
set currency above item list
This commit is contained in:
parent
d7d5c279e7
commit
37304784c5
2 changed files with 25 additions and 24 deletions
|
|
@ -65,6 +65,7 @@
|
||||||
.currency-section {
|
.currency-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
|
padding: 10px 10px 0;
|
||||||
|
|
||||||
input {
|
input {
|
||||||
color: light-dark(@dark, @beige);
|
color: light-dark(@dark, @beige);
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,30 @@
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="currency-section">
|
||||||
|
<div class="input">
|
||||||
|
<span>{{localize this.inventory.currency.coins}}</span>
|
||||||
|
{{formInput systemFields.gold.fields.coins value=source.system.gold.coins enriched=source.system.gold.coins
|
||||||
|
localize=true toggled=true}}
|
||||||
|
</div>
|
||||||
|
<div class="input">
|
||||||
|
<span>{{localize this.inventory.currency.handfulls}}</span>
|
||||||
|
{{formInput systemFields.gold.fields.handfulls value=source.system.gold.handfulls
|
||||||
|
enriched=source.system.gold.handfulls localize=true toggled=true}}
|
||||||
|
</div>
|
||||||
|
<div class="input">
|
||||||
|
<span>{{localize this.inventory.currency.bags}}</span>
|
||||||
|
{{formInput systemFields.gold.fields.bags value=source.system.gold.bags enriched=source.system.gold.bags
|
||||||
|
localize=true toggled=true}}
|
||||||
|
</div>
|
||||||
|
<div class="input">
|
||||||
|
<span>{{localize this.inventory.currency.chests}}</span>
|
||||||
|
{{formInput systemFields.gold.fields.chests value=source.system.gold.chests
|
||||||
|
enriched=source.system.gold.chests localize=true toggled=true}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="items-section">
|
<div class="items-section">
|
||||||
{{> 'daggerheart.inventory-items'
|
{{> 'daggerheart.inventory-items'
|
||||||
title='TYPES.Item.weapon'
|
title='TYPES.Item.weapon'
|
||||||
|
|
@ -44,28 +68,4 @@
|
||||||
canCreate=true
|
canCreate=true
|
||||||
}}
|
}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="currency-section">
|
|
||||||
<div class="input">
|
|
||||||
<span>{{localize this.inventory.currency.coins}}</span>
|
|
||||||
{{formInput systemFields.gold.fields.coins value=source.system.gold.coins enriched=source.system.gold.coins
|
|
||||||
localize=true toggled=true}}
|
|
||||||
</div>
|
|
||||||
<div class="input">
|
|
||||||
<span>{{localize this.inventory.currency.handfulls}}</span>
|
|
||||||
{{formInput systemFields.gold.fields.handfulls value=source.system.gold.handfulls
|
|
||||||
enriched=source.system.gold.handfulls localize=true toggled=true}}
|
|
||||||
</div>
|
|
||||||
<div class="input">
|
|
||||||
<span>{{localize this.inventory.currency.bags}}</span>
|
|
||||||
{{formInput systemFields.gold.fields.bags value=source.system.gold.bags enriched=source.system.gold.bags
|
|
||||||
localize=true toggled=true}}
|
|
||||||
</div>
|
|
||||||
<div class="input">
|
|
||||||
<span>{{localize this.inventory.currency.chests}}</span>
|
|
||||||
{{formInput systemFields.gold.fields.chests value=source.system.gold.chests
|
|
||||||
enriched=source.system.gold.chests localize=true toggled=true}}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</section>
|
</section>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue