mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
propose un champe vide par défaut
This commit is contained in:
parent
50e56a0396
commit
4a6b039fa9
@ -19,7 +19,7 @@
|
||||
|
||||
<section>
|
||||
<p>
|
||||
Je m'appelle <input type="text" name="name" id="name" value="Henri" class="nfl-textfield">
|
||||
Je m'appelle <input type="text" name="name" id="name" value="" class="nfl-textfield">
|
||||
et le titre de ce sondage
|
||||
<select id="type_sondage">
|
||||
<option>classique</option>
|
||||
|
@ -12,7 +12,7 @@ const debugStorage = () => {
|
||||
|
||||
const useTextInsteadOfInputFor = (textField) => {
|
||||
let $name = $(`#${textField.name}`);
|
||||
$name.outerHTML = `<span id="${textField.name}" class="toggle-field">${$name.getAttribute('value')}</span>`;
|
||||
$name.outerHTML = `<span id="${textField.name}" class="champ-vide-long toggle-field">${$name.getAttribute('value')}</span>`;
|
||||
return textField;
|
||||
}
|
||||
|
||||
|
@ -43,6 +43,12 @@ button:hover,
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.champ-vide-long {
|
||||
min-width: 100px;
|
||||
display: inline-block;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.btn.btn-primary {
|
||||
color: #fff;
|
||||
background-color: #4a90e2;
|
||||
@ -192,4 +198,4 @@ a {
|
||||
}
|
||||
a:hover {
|
||||
color: #4a90e2;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user