removed unnecessary whitespaces from textareas, placeholder is now displayed correctly.

This commit is contained in:
Patrick Werner 2017-04-06 11:59:19 +02:00
parent 645cf3aca7
commit 61f35deac1
2 changed files with 3 additions and 8 deletions

View File

@ -167,9 +167,7 @@
Bundle Bundle
<span class="loadingStar">*</span> <span class="loadingStar">*</span>
</div> </div>
<textarea class="form-control" id="transaction-body" style="white-space: nowrap; overflow: auto;" placeholder="(place transaction bundle body here)" rows="1"> <textarea class="form-control" id="transaction-body" style="white-space: nowrap; overflow: auto;" placeholder="(place transaction bundle body here)" rows="1"><th:block th:if="${transactionBundle} != null" th:text="${transactionBundle}"/></textarea>
<th:block th:if="${transactionBundle} != null" th:text="${transactionBundle}"/>
</textarea>
</div> </div>
</div> </div>
</div> </div>

View File

@ -430,8 +430,7 @@
Contents Contents
<span class="loadingStar">*</span> <span class="loadingStar">*</span>
</div> </div>
<textarea class="form-control" id="resource-create-body" style="white-space: nowrap; overflow: auto;" placeholder="(place resource body here)" rows="1"> <textarea class="form-control" id="resource-create-body" style="white-space: nowrap; overflow: auto;" placeholder="(place resource body here)" rows="1"></textarea>
</textarea>
</div> </div>
</div> </div>
</div> </div>
@ -492,9 +491,7 @@
Contents Contents
<span class="loadingStar">*</span> <span class="loadingStar">*</span>
</div> </div>
<textarea class="form-control" id="resource-update-body" style="white-space: nowrap; overflow: auto;" placeholder="(place resource body here)" rows="1"> <textarea class="form-control" id="resource-update-body" style="white-space: nowrap; overflow: auto;" placeholder="(place resource body here)" rows="1"><th:block th:if="${updateResource} != null" th:text="${updateResource}"/></textarea>
<th:block th:if="${updateResource} != null" th:text="${updateResource}"/>
</textarea>
</div> </div>
</div> </div>
</div> </div>