Textarea tweaks

This commit is contained in:
walcutt 2024-12-13 14:31:47 -05:00
parent 6af715f7d5
commit d1d8bb8516
2 changed files with 5 additions and 1 deletions

View File

@ -122,6 +122,10 @@
margin: 0; margin: 0;
} }
.hench-sheet-container textarea {
resize: vertical;
}
/* Specific */ /* Specific */
.hench-row-even{ .hench-row-even{

View File

@ -256,7 +256,7 @@
<input type="text" name="hench-move-name-custom" class="hench-text-input hench-emphasized hench-strong" data-field-path="system.customMove.name" value="{{actor.system.customMove.name}}" /> <input type="text" name="hench-move-name-custom" class="hench-text-input hench-emphasized hench-strong" data-field-path="system.customMove.name" value="{{actor.system.customMove.name}}" />
</div> </div>
<div> <div>
<textarea name="hench-move-description-custom" class="hench-text-input" data-field-path="system.customMove.description">{{actor.system.customMove.description}}</textarea> <textarea name="hench-move-description-custom" class="hench-text-input" data-field-path="system.customMove.description" rows="4">{{actor.system.customMove.description}}</textarea>
</div> </div>
</div> </div>
</div> </div>