maj vue ref
ajout du switch des oeuvres + fix button
This commit is contained in:
parent
4c8e483b99
commit
167854e785
@ -2862,7 +2862,14 @@ fieldset[disabled] .btn-default.active {
|
|||||||
.btn-primary:active,
|
.btn-primary:active,
|
||||||
.btn-primary.active,
|
.btn-primary.active,
|
||||||
.open > .dropdown-toggle.btn-primary {
|
.open > .dropdown-toggle.btn-primary {
|
||||||
background-image: none;
|
background: #4f85bb; /* Old browsers */
|
||||||
|
background: -moz-linear-gradient(top, #4f85bb 0%, #4f85bb 100%); /* FF3.6+ */
|
||||||
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4f85bb), color-stop(100%,#4f85bb)); /* Chrome,Safari4+ */
|
||||||
|
background: -webkit-linear-gradient(top, #4f85bb 0%,#4f85bb 100%); /* Chrome10+,Safari5.1+ */
|
||||||
|
background: -o-linear-gradient(top, #4f85bb 0%,#4f85bb 100%); /* Opera 11.10+ */
|
||||||
|
background: -ms-linear-gradient(top, #4f85bb 0%,#4f85bb 100%); /* IE10+ */
|
||||||
|
background: linear-gradient(to bottom, #4f85bb 0%,#4f85bb 100%); /* W3C */
|
||||||
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f85bb', endColorstr='#4f85bb',GradientType=0 );
|
||||||
}
|
}
|
||||||
.btn-primary.disabled,
|
.btn-primary.disabled,
|
||||||
.btn-primary[disabled],
|
.btn-primary[disabled],
|
||||||
|
@ -22,6 +22,7 @@ background: linear-gradient(to bottom, #a7cfdf 0%,#23538a 100%); /* W3C */
|
|||||||
border-radius: 7px;
|
border-radius: 7px;
|
||||||
border: 1px solid grey;
|
border: 1px solid grey;
|
||||||
box-shadow: 0px 0px 2px dimgrey;
|
box-shadow: 0px 0px 2px dimgrey;
|
||||||
|
width : 20%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.listg legend
|
.listg legend
|
||||||
@ -41,7 +42,7 @@ background: linear-gradient(to bottom, #a7cfdf 0%,#23538a 100%); /* W3C */
|
|||||||
|
|
||||||
.filtred
|
.filtred
|
||||||
{
|
{
|
||||||
background: #eeeeee; /* Old browsers */
|
background: #eeeeee; /* Olbd browsers */
|
||||||
background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
|
background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 100%); /* FF3.6+ */
|
||||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc)); /* Chrome,Safari4+ */
|
||||||
background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
|
background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 100%); /* Chrome10+,Safari5.1+ */
|
||||||
@ -77,6 +78,17 @@ background: linear-gradient(to bottom, #a7cfdf 0%,#23538a 100%); /* W3C */
|
|||||||
box-shadow: 0px 0px 2px dimgrey;
|
box-shadow: 0px 0px 2px dimgrey;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.comboSearch
|
||||||
|
{
|
||||||
|
float: left;
|
||||||
|
margin: 1%;
|
||||||
|
width : 15%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.motCle
|
||||||
|
{
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
/* switch checkbox */
|
/* switch checkbox */
|
||||||
|
|
||||||
|
@ -26,6 +26,12 @@
|
|||||||
<input type="hidden" class="idListeOeuvre" name="idListeOeuvre" value="{{ $listeoeuvre->id }}">
|
<input type="hidden" class="idListeOeuvre" name="idListeOeuvre" value="{{ $listeoeuvre->id }}">
|
||||||
<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>
|
||||||
|
<label class="ios7-switch">
|
||||||
|
<input type="checkbox" checked>
|
||||||
|
<span></span>
|
||||||
|
</label>
|
||||||
|
</td>
|
||||||
<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></a>
|
<span class="glyphicon glyphicon-trash"></span></a>
|
||||||
@ -95,26 +101,25 @@
|
|||||||
<div class="col-md-8 filtred">
|
<div class="col-md-8 filtred">
|
||||||
<legend>Ajout de filtres</legend>
|
<legend>Ajout de filtres</legend>
|
||||||
<h4>Par critère:</h4>
|
<h4>Par critère:</h4>
|
||||||
<select class="form-control">
|
<select class="form-control comboSearch">
|
||||||
<option selected="selected">Selectionner catégorie</option>
|
<option selected="selected">Selectionner catégorie</option>
|
||||||
<option>1</option>
|
<option>1</option>
|
||||||
<option>2</option>
|
<option>2</option>
|
||||||
</select>
|
</select>
|
||||||
<select class="form-control">
|
<select class="form-control comboSearch">
|
||||||
<option selected="selected">Tous les éléments</option>
|
<option selected="selected">Tous les éléments</option>
|
||||||
<option>1</option>
|
<option>1</option>
|
||||||
<option>2</option>
|
<option>2</option>
|
||||||
</select>
|
</select>
|
||||||
<button style="margin-top: 5px" class="btn btn-primary">Ajouter</button>
|
<button style="margin-top: 5px" class="btn btn-primary">Ajouter</button>
|
||||||
<br><br>
|
<br><br>
|
||||||
<h4>Par mot clé:</h4>
|
<div class="input-group motCle form-inline">
|
||||||
|
<input type="text" class="form-control" id="exampleInputAmount" placeholder="Par mot clé">
|
||||||
|
<button type="submit" class="btn btn-primary">Ajouter</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
<form class="form-inline">
|
<form class="form-inline">
|
||||||
<div class="col-sm-8 form-group">
|
|
||||||
<div class="input-group">
|
|
||||||
<input type="text" class="form-control" id="exampleInputAmount" placeholder="Par mot clé">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<button type="submit" class="btn btn-primary">Ajouter</button>
|
|
||||||
<legend>Mes filtres</legend>
|
<legend>Mes filtres</legend>
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<tr>
|
<tr>
|
||||||
|
Reference in New Issue
Block a user