boutons flottants supr

This commit is contained in:
Alexis Burnaz 2026-04-22 10:32:44 +02:00
parent 5338f682af
commit 349c379dc7
10 changed files with 32 additions and 32 deletions

View File

@ -460,27 +460,27 @@ a.grille-garanties:hover{
.rc-has-floating-label {
position: relative;
margin-top: 1.8rem;
margin-top: 0.5rem;
}
.rc-has-floating-label .rc-field-label.rc-floating-label {
position: absolute;
top: 0.95rem;
left: 0.75rem;
margin: 0;
font-size: 1rem;
font-weight: 500;
color: #7f8c8d;
position: static;
top: auto;
left: auto;
margin: 0 0 6px 0;
font-size: 0.95rem;
font-weight: 700;
color: #1a237e;
pointer-events: none;
transition: top .18s ease, font-size .18s ease, color .18s ease;
background: #fff;
padding: 0 4px;
z-index: 2;
transition: none;
background: transparent;
padding: 0;
z-index: auto;
}
.rc-has-floating-label .rc-field-label.rc-floating-label.active {
top: -0.55rem;
font-size: .78rem;
top: auto;
font-size: 0.95rem;
font-weight: 700;
color: #1a237e;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -778,7 +778,7 @@
<div class="input-field">
<i class="material-icons prefix">trending_up</i>
<label class="rc-field-label" for="CA">Montant en euros</label>
<input id="CA" type="text">
<input id="CA" type="text" placeholder="Ex: 1234567">
<span class="helper-text">Chiffre d'affaires</span>
<span id="CA-error" class="helper-text red-text"></span>
</div>
@ -793,7 +793,7 @@
<div class="input-field">
<i class="material-icons prefix">euro_symbol</i>
<label class="rc-field-label" for="cotisationIrreductible">Montant en euros</label>
<input id="cotisationIrreductible" type="text">
<input id="cotisationIrreductible" type="text" placeholder="Ex: 1200">
<span class="helper-text">Cotisation minimale irréductible</span>
<span id="cotisationIrreductible-error" class="helper-text red-text"></span>
</div>
@ -823,7 +823,7 @@
<td><input type="text" name="genre" id="genreVehicule" placeholder="VP" /></td>
<td><input type="text" name="type" id="typeVehicule" placeholder="Non défini" /></td>
<td><input type="text" name="immat" id="immatVehicule" placeholder="AA-999-AA" /></td>
<td><input type="text" name="capital" id="capitalVehicule" /></td>
<td><input type="text" name="capital" id="capitalVehicule" placeholder="Ex: 25000" /></td>
<td><button class="btn" type="button" id="btnAddVehicule"><i class="material-icons">add</i></button></td>
</tr>
</table>

View File

@ -319,7 +319,7 @@
<div class="mrg" id="colNombreVehicules" style="display: none;place-self: center;width: 80%;">
<div class="input-field">
<input id="nombreVehicules" name="nombreVehicules" type="text" value="1"
placeholder="1">
placeholder="Ex: 1">
<span class="helper-text">Nombre de véhicules</span>
</div>
</div>
@ -399,7 +399,7 @@
<td><input type="text" name="genre" id="genreVehicule" placeholder="VP" /></td>
<td><input type="text" name="type" id="typeVehicule" placeholder="Non défini" /></td>
<td><input type="text" name="immat" id="immatVehicule" placeholder="AA-999-AA" /></td>
<td><input type="text" name="capital" id="capitalVeh" placeholder="10 000" /></td>
<td><input type="text" name="capital" id="capitalVeh" placeholder="Ex: 10000" /></td>
<td><button class="btn" type="button" id="btnAddVehicule"><i
class="material-icons">add</i></button></td>
</tr>
@ -475,12 +475,12 @@
</td>
<td>
<input id="cotisationAnnuelleHT" name="cotisationAnnuelleHT" type="text"
placeholder="Ex : 1000" value="" required>
placeholder="Ex: 1000" value="" required>
<span id="cotisationAnnuelleHT-error" class="helper-text red-text"></span>
</td>
<td>
<input id="cotisationAnnuelle" name="cotisationAnnuelle" type="text"
placeholder="Ex : 1000€" value="" required>
placeholder="Ex: 1134" value="" required>
<span id="cotisationAnnuelle-error" class="helper-text red-text"></span>
</td>
</tr>
@ -648,4 +648,4 @@
<a class="modal-close waves-effect waves-green btn-flat">Fermer</a>
</div>
</div>
</div>
</div>

View File

@ -1231,7 +1231,7 @@
<div>
<label for="tarifCom" class="left">Tarif Commercial (€)</label>
<div class="input-field" style="width: 20rem;">
<input id="tarifCom" type="number" step="0.01">
<input id="tarifCom" type="number" step="0.01" placeholder="Ex: 1500">
<span id="tarifCom-error" class="helper-text red-text" style="display: none;">
Merci d'ajouter un commentaire explicatif pour justifier cette différence ou modifier le tarif commercial
</span>

View File

@ -65,7 +65,7 @@
<div id="col-capitalVehicule">
<label for="capitalVehicule" class="left">Capital à garantir par véhicule</label>
<input id="capitalVehicule" type="number" placeholder="Ex: 100 (en €)">
<input id="capitalVehicule" type="number" placeholder="Ex: 100">
<span id="capitalVehicule-error" class="helper-text red-text"></span>
</div>
@ -154,7 +154,7 @@
<td id="td-typeVehTarif">
<input name="typeVehTarif" id="typeVehTarif" placeholder="Ex: Voiture" />
</td>
<td><input type="number" name="capitalTarif" id="capitalTarif" min="0" placeholder="Non défini" />
<td><input type="number" name="capitalTarif" id="capitalTarif" min="0" placeholder="Ex: 5000" />
</td>
<td> <select id="garTarif" name="garTarif">
<option value="" disabled selected>Garanties souscrites:
@ -173,13 +173,13 @@
</td>
<td>
<input type="number" name="nbVehiculesTarif" id="nbVehiculesTarif"
placeholder="Non défini" min="0" value="0" />
placeholder="Ex: 2" min="0" value="0" />
</td>
<td>
<input type="number" name="primeVehTarif" id="primeVehTarif" min="0" placeholder="Non défini" />
<input type="number" name="primeVehTarif" id="primeVehTarif" min="0" placeholder="Ex: 300" />
</td>
<td>
<input type="number" name="primeHTTarif" id="primeHTTarif" min="0" placeholder="Non défini" />
<input type="number" name="primeHTTarif" id="primeHTTarif" min="0" placeholder="Ex: 600" />
</td>
<td>
@ -212,7 +212,7 @@
<div class="mrg grille-flex">
<div>
<label for="sinistre" class="left"></label>
<input id="sinistre" type="number" placeholder="Ex: 100 (en €)">
<input id="sinistre" type="number" placeholder="Ex: 100">
<span id="sinistre-error" class="helper-text red-text"></span>
<div class="chip modulo " id="chip-modulo-sinistre" style="display : none">
Mod. sinistre : x2
@ -304,7 +304,7 @@
<label class="left">Capital à assurer</label>
</div>
<input id="capitalExposition" name="capitalExposition" type="number" value=""
placeholder="Ex : 100 (€)">
placeholder="Ex: 100">
<span class="helper-text"></span>
<div class="subdiv left-align" style="width: 100%;">
<label>Type de Marchandises</label>
@ -445,7 +445,7 @@
<div>
<label for="tarifCom" class="left">Tarif Commercial</label>
<div class="input-field" style="width : 20rem">
<input id="tarifCom" type="number">
<input id="tarifCom" type="number" placeholder="Ex: 1500">
<span id="tarifCom-error" class="helper-text red-text" style="display: none;"> Merci d'ajouter
un commentaire
explicatif pour justifier cette différence ou modifier le tarif
@ -696,4 +696,4 @@
</table>
</div>
</div>
</div>
</div>