maj du div gauche

alignement du tableau
This commit is contained in:
Jerome Morjon 2015-02-20 23:33:10 +01:00
parent 291a5c2937
commit 2cb24c6e1d
2 changed files with 17 additions and 5 deletions

View File

@ -13,6 +13,16 @@ caption
text-align: center;
}
table
{
text-align: center;
}
table thead tr th
{
text-align: center;
}
.listg
{
background: #a7cfdf; /* Old browsers */

View File

@ -21,7 +21,7 @@
<table class="table table-hover">
<thead>
<tr>
<th>Nom</th><th>Action</th>
<th>Nom</th><th>Action</th><th>Supprimer</th>
</tr>
</thead>
<tbody>
@ -33,10 +33,12 @@
<input type="hidden" name="_token" value="{{{ csrf_token() }}}" />
<td>{{$listeoeuvre->nom}}</td>
<td>
<label class="ios7-switch">
<input type="checkbox" checked>
<span></span>
</label>
<label class="ios7-switch">
<input type="checkbox" checked>
<span></span>
</label>
</td>
<td>
<button type="submit" class="btn btn-sm btn-danger">
<span class="glyphicon glyphicon-trash"></span></button>
</td>