Finally managed to make the other items of value textarea match the size of the gem pouch!

This commit is contained in:
Peter Bjerg Lidegaard
2022-09-22 09:08:07 +02:00
parent db18a1d533
commit ceec98038c
4 changed files with 34 additions and 10 deletions
+6 -4
View File
@@ -12322,7 +12322,7 @@
</div>
<br>
<div class="sheet-2colrow">
<div class="sheet-2colrow sheet-flex">
<div class="sheet-col">
<h4>Gem Pouch</h4>
<fieldset name="repeating_gem" class="repeating_gem">
@@ -12346,10 +12346,12 @@
<br>
<label>Total GP value from gems:</label><input type="text" name="attr_gemstotalvalue" title="@{gemstotalvalue}" value="0" class="sheet-sym" readonly>
</div>
<div class="sheet-col">
<div class="sheet-col sheet-flex-column">
<h4>Other Items Of Value</h4>
<textarea name="attr_otherval" title="@{otherval}"></textarea><br>
<label>Total GP value from other items:</label><input type="text" name="attr_othervalue" title="@{othervalue}" class="sheet-short">
<textarea style="height: 100%; min-height: 150px" name="attr_otherval" title="@{otherval}"></textarea>
<div>
<label>Total GP value from other items:</label><input type="text" name="attr_othervalue" title="@{othervalue}" class="sheet-short">
</div>
</div>
</div>
</div>
+11 -1
View File
@@ -1680,13 +1680,23 @@ table.sheet-padding-right-column2 td:nth-child(2) {
color: #000;
}
.sheet-flex,
.charsheet .sheet-body .sheet-flex {
display: flex;
}
.sheet-flex-column,
.charsheet .sheet-body .sheet-flex-column {
display: flex;
flex-direction: column;
}
.sheet-flex-wrap .repcontainer {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.charsheet label input[type="radio"],
.charsheet label input[type="checkbox"] {
position: absolute;
+11 -1
View File
@@ -1003,13 +1003,23 @@ table.sheet-padding-right-column2 td:nth-child(2) {
color: #000;
}
.sheet-flex,
.charsheet .sheet-body .sheet-flex {
display: flex;
}
.sheet-flex-column,
.charsheet .sheet-body .sheet-flex-column {
display: flex;
flex-direction: column;
}
.sheet-flex-wrap .repcontainer {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.charsheet label input[type="radio"],
.charsheet label input[type="checkbox"] {
position: absolute;
@@ -571,7 +571,7 @@
</div>
<br>
<div class="sheet-2colrow">
<div class="sheet-2colrow sheet-flex">
<div class="sheet-col">
<h4>Gem Pouch</h4>
<fieldset name="repeating_gem" class="repeating_gem">
@@ -595,10 +595,12 @@
<br>
<label>Total GP value from gems:</label><input type="text" name="attr_gemstotalvalue" title="@{gemstotalvalue}" value="0" class="sheet-sym" readonly>
</div>
<div class="sheet-col">
<div class="sheet-col sheet-flex-column">
<h4>Other Items Of Value</h4>
<textarea name="attr_otherval" title="@{otherval}"></textarea><br>
<label>Total GP value from other items:</label><input type="text" name="attr_othervalue" title="@{othervalue}" class="sheet-short">
<textarea style="height: 100%; min-height: 150px" name="attr_otherval" title="@{otherval}"></textarea>
<div>
<label>Total GP value from other items:</label><input type="text" name="attr_othervalue" title="@{othervalue}" class="sheet-short">
</div>
</div>
</div>
</div>