- Rewrote _item.sass with unified layout: type-bar + dark header + stats pills + tabs - All 11 item templates converted to new pill-based stats bar - Chat roll message font sizes and padding compacted - Physical item partial rewritten as stat pills (QTY/WEIGHT/COST/TL) - Legacy itemsheet-header and itemsheet-maincol hidden
22 lines
1.1 KiB
HTML
22 lines
1.1 KiB
HTML
<div class="item-stat-pill">
|
|
<span class="stat-label">{{ localize 'MGT2.Items.Quantity' }}</span>
|
|
<input type="number" name="system.quantity" value="{{system.quantity}}" data-dtype="Number" integer="true" positive="true" />
|
|
</div>
|
|
<div class="item-stat-pill">
|
|
<span class="stat-label">{{ localize 'MGT2.Items.Weight' }} ({{unitlabels.weight}})</span>
|
|
<input type="number" name="weight" value="{{weight}}" data-dtype="Number" step="0.5" />
|
|
</div>
|
|
<div class="item-stat-pill-checkbox">
|
|
<input type="checkbox" name="system.weightless" id="weightless-{{item.id}}" data-dtype="Boolean" {{checked system.weightless}} />
|
|
<label for="weightless-{{item.id}}">{{ localize 'MGT2.Items.Weightless' }}</label>
|
|
</div>
|
|
<div class="item-stat-pill">
|
|
<span class="stat-label">{{ localize 'MGT2.Items.Cost' }}</span>
|
|
<input type="number" name="system.cost" value="{{system.cost}}" data-dtype="Number" step="1" />
|
|
</div>
|
|
<div class="item-stat-pill">
|
|
<span class="stat-label">{{ localize 'MGT2.Items.TL' }}</span>
|
|
<select name="system.tl">
|
|
{{selectOptions config.TL selected = system.tl localize = true}}
|
|
</select>
|
|
</div> |