Make a unique ArmourSheet so that it can have a better UX for indicating protection locations

This commit is contained in:
Oliver-Akins 2025-07-20 21:35:27 -06:00
parent 2b88bcc2ef
commit 94942c8eab
9 changed files with 407 additions and 6 deletions

View file

@ -0,0 +1,27 @@
{{!--
Required parameters:
"name" : the name of the item
"system.quantity" : the quantity of the item
"meta.idp" : the ID Prefix for the application
--}}
<header class="item-header">
<div class="name-row">
<input
type="text"
class="name"
aria-label="{{ rc-i18n "Name" }}"
name="name"
value="{{item.name}}"
{{disabled limited}}
>
<span aria-hidden="true">x</span>
<input
type="number"
class="quantity"
aria-label="{{ rc-i18n "RipCrypt.common.quantity" }}"
data-tooltip="{{ rc-i18n "RipCrypt.common.quantity" }}"
name="system.quantity"
value="{{system.quantity}}"
>
</div>
</header>