mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 20:25:50 +00:00
Improvements to layout
This commit is contained in:
parent
97aba3f4e6
commit
f06cf8c3fa
4 changed files with 15 additions and 7 deletions
|
@ -19,6 +19,14 @@
|
||||||
<level value="info" />
|
<level value="info" />
|
||||||
</logger>
|
</logger>
|
||||||
|
|
||||||
|
<logger name="javax.validation">
|
||||||
|
<level value="debug" />
|
||||||
|
</logger>
|
||||||
|
|
||||||
|
<logger name="org.hibernate.validator">
|
||||||
|
<level value="trace" />
|
||||||
|
</logger>
|
||||||
|
|
||||||
<!-- Root Logger -->
|
<!-- Root Logger -->
|
||||||
<root>
|
<root>
|
||||||
<priority value="info" /><!--
|
<priority value="info" /><!--
|
||||||
|
|
|
@ -19,11 +19,11 @@
|
||||||
<table class="table table-striped">
|
<table class="table table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Name</th>
|
<th style="width: 150px;">Name</th>
|
||||||
<th>Address</th>
|
<th style="width: 200px;">Address</th>
|
||||||
<th>City</th>
|
<th>City</th>
|
||||||
<th>Telephone</th>
|
<th>Telephone</th>
|
||||||
<th>Pets</th>
|
<th style="width: 100px;">Pets</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<c:forEach var="owner" items="${selections}">
|
<c:forEach var="owner" items="${selections}">
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="control-group" id="birthDate">
|
<div class="control-group" id="birthDate">
|
||||||
<label class="control-label">Birth Date </label>
|
<label class="control-label">Birth Date (yyyy-MM-dd)</label>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<form:input path="birthDate" />
|
<form:input path="birthDate" />
|
||||||
<span class="help-inline"><form:errors path="birthDate" /></span>
|
<span class="help-inline"><form:errors path="birthDate" /></span>
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
.container {
|
.container {
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
margin-left: 50px;
|
margin-left: 50px;
|
||||||
width: 610px;
|
width: 700px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-horizontal {
|
.form-horizontal {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input[type="text"] {
|
||||||
line-height: 35px;
|
height: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue