Make a unique ArmourSheet so that it can have a better UX for indicating protection locations
This commit is contained in:
parent
2b88bcc2ef
commit
94942c8eab
9 changed files with 407 additions and 6 deletions
27
templates/Apps/partials/item-header.hbs
Normal file
27
templates/Apps/partials/item-header.hbs
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue