Make side properties a bit better readable.
This commit is contained in:
parent
5c74da883b
commit
319c40c4a7
2 changed files with 5 additions and 5 deletions
|
@ -9,7 +9,7 @@
|
||||||
.side-property {
|
.side-property {
|
||||||
margin: 2px 0;
|
margin: 2px 0;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 40% auto;
|
grid-template-columns: minmax(40%, max-content) 1fr;
|
||||||
justify-content: left;
|
justify-content: left;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
<div class="grid basic-properties">
|
<div class="grid basic-properties">
|
||||||
<div class="basic-property">
|
<div class="basic-property">
|
||||||
<label for="data.spellType">{{localize "DS4.SpellType"}}</label>
|
<label for="data.spellType">{{localize "DS4.SpellType"}}</label>
|
||||||
<select name="data.spellType" data-type="String">
|
<select id="data.spellType" name="data.spellType" data-type="String">
|
||||||
{{#select data.spellType}}
|
{{#select data.spellType}}
|
||||||
{{#each config.spellTypes as |value key|}}
|
{{#each config.spellTypes as |value key|}}
|
||||||
<option value="{{key}}">{{value}}</option>
|
<option value="{{key}}">{{value}}</option>
|
||||||
|
@ -41,7 +41,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="basic-property">
|
<div class="basic-property">
|
||||||
<label for="data.bonus">{{localize "DS4.SpellBonus"}}</label>
|
<label for="data.bonus">{{localize "DS4.SpellBonus"}}</label>
|
||||||
<input type="text" name="data.bonus" value="{{data.bonus}}" data-dtype="String" />
|
<input id="data.bonus" type="text" name="data.bonus" value="{{data.bonus}}" data-dtype="String" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{/systems/ds4/templates/item/partials/sheet-header.hbs}}
|
{{/systems/ds4/templates/item/partials/sheet-header.hbs}}
|
||||||
|
@ -50,7 +50,7 @@
|
||||||
{{#> systems/ds4/templates/item/partials/body.hbs}}
|
{{#> systems/ds4/templates/item/partials/body.hbs}}
|
||||||
<div class="side-property">
|
<div class="side-property">
|
||||||
<label for="data.spellCategory">{{localize "DS4.SpellCategory"}}</label>
|
<label for="data.spellCategory">{{localize "DS4.SpellCategory"}}</label>
|
||||||
<select name="data.spellCategory" data-type="String">
|
<select id="data.spellCategory" name="data.spellCategory" data-type="String">
|
||||||
{{#select data.spellCategory}}
|
{{#select data.spellCategory}}
|
||||||
{{#each config.spellCategories as |value key|}}
|
{{#each config.spellCategories as |value key|}}
|
||||||
<option value="{{key}}">{{value}}</option>
|
<option value="{{key}}">{{value}}</option>
|
||||||
|
@ -65,7 +65,7 @@
|
||||||
<div class="side-property">
|
<div class="side-property">
|
||||||
<label for="data.scrollPrice">{{localize "DS4.SpellScrollPriceGold"}}</label>
|
<label for="data.scrollPrice">{{localize "DS4.SpellScrollPriceGold"}}</label>
|
||||||
<input type="number" min="0" max="9999" step="0.01" data-dtype="Number"
|
<input type="number" min="0" max="9999" step="0.01" data-dtype="Number"
|
||||||
name="data.scrollPrice" value="{{data.scrollPrice}}" />
|
name="data.scrollPrice" id="data.scrollPrice" value="{{data.scrollPrice}}" />
|
||||||
</div>
|
</div>
|
||||||
{{/systems/ds4/templates/item/partials/body.hbs}}
|
{{/systems/ds4/templates/item/partials/body.hbs}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue