Skip to content

Commit 98d927f

Browse files
committed
Corrected responsive layout for overlapping form columns.
1 parent ceca7d4 commit 98d927f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/resources/templates/report.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ <h1 class="page-header">ILL Reports (VDX)</h1>
1717

1818
<div class="hidden-print">
1919
<h2>Search</h2>
20-
<form action="/" method="post" class="form-inline">
20+
<form action="/" method="post">
2121
<div class="row">
22-
<div class="col-sm-3">
22+
<div class="col-sm-4">
2323
<label for="campus">Location</label><br/>
2424
<select id="campus" name="campus" class="form-control">
2525
<option value="">All Campuses</option>
2626
<option th:each="campus : ${campuses}" th:value="${campus.code}" th:text="${campus.description}" th:selected="${campus.code eq campusDefault}"></option>
2727
</select>
2828
</div>
29-
<div class="col-sm-2">
29+
<div class="col-sm-3">
3030
<label for="from">Begin Date</label><br/>
3131
<input id="from" name="from" class="form-control" type="text" placeholder="YYYY-MM-DD" th:value="${searchStartDate}" required="required" />
3232
</div>
33-
<div class="col-sm-2">
33+
<div class="col-sm-3">
3434
<label for="to">End Date</label><br/>
3535
<input id="to" name="to" class="form-control" type="text" placeholder="YYYY-MM-DD" th:value="${searchEndDate}" required="required" />
3636
</div>

0 commit comments

Comments
 (0)