Fixed alignment of headers in domain.php

This commit is contained in:
Lukas Metzger 2016-01-16 21:00:49 +01:00
parent 818cb9fbc5
commit 3fb0a6b073
2 changed files with 8 additions and 4 deletions

View file

@ -49,8 +49,8 @@ limitations under the License.
<table class="table table-hover" id="table-domains">
<thead>
<tr>
<td><strong>ID</strong> <span class="glyphicon glyphicon-sort cursor-pointer"></span></td>
<td>
<td class="cell-vertical-middle"><strong>ID</strong> <span class="glyphicon glyphicon-sort cursor-pointer"></span></td>
<td class="cell-vertical-middle">
<form class="form-inline">
<div class="form-group">
<strong>Name</strong>
@ -59,7 +59,7 @@ limitations under the License.
</div>
</form>
</td>
<td>
<td class="cell-vertical-middle">
<form class="form-inline">
<div class="form-group">
<strong>Type</strong>
@ -71,7 +71,7 @@ limitations under the License.
</div>
</form>
</td>
<td><strong>Records</strong> <span class="glyphicon glyphicon-sort cursor-pointer"></span></td>
<td class="cell-vertical-middle"><strong>Records</strong> <span class="glyphicon glyphicon-sort cursor-pointer"></span></td>
</tr>
</thead>
<tbody>

View file

@ -17,3 +17,7 @@
box-shadow: none!important;
border-color: #CCC!important;
}
.cell-vertical-bottom { vertical-align: bottom !important; }
.cell-vertical-middle { vertical-align: middle !important; }
.cell-vertical-top { vertical-align: top !important; }