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; text-align: center;
} }
table
{
text-align: center;
}
table thead tr th
{
text-align: center;
}
.listg .listg
{ {
background: #a7cfdf; /* Old browsers */ background: #a7cfdf; /* Old browsers */

View File

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