décalage du bouton dans input file avec une notice
This commit is contained in:
parent
2e572a793b
commit
98684d3613
@ -296,12 +296,6 @@ class template {
|
||||
}
|
||||
// Début du wrapper
|
||||
$html = '<div id="' . $attributes['id'] . 'Wrapper" class="inputWrapper ' . $attributes['classWrapper'] . '">';
|
||||
// Label
|
||||
if($attributes['label']) {
|
||||
$html .= self::label($attributes['id'], $attributes['label'], [
|
||||
'help' => $attributes['help']
|
||||
]);
|
||||
}
|
||||
// Notice
|
||||
$notice = '';
|
||||
if(array_key_exists($attributes['id'], common::$inputNotices)) {
|
||||
@ -309,6 +303,12 @@ class template {
|
||||
$attributes['class'] .= ' notice';
|
||||
}
|
||||
$html .= self::notice($attributes['id'], $notice);
|
||||
// Label
|
||||
if($attributes['label']) {
|
||||
$html .= self::label($attributes['id'], $attributes['label'], [
|
||||
'help' => $attributes['help']
|
||||
]);
|
||||
}
|
||||
// Champ caché contenant l'url de la page
|
||||
$html .= self::hidden($attributes['id'], [
|
||||
'class' => 'inputFileHidden',
|
||||
|
@ -339,10 +339,11 @@ td>.col12 {
|
||||
display: inline-block;
|
||||
color: #E74C3C;
|
||||
}
|
||||
/* Mauvaise position dans les champs File*/
|
||||
|
||||
/* Mauvaise position dans les champs File
|
||||
.inputFile.notice {
|
||||
display: block;
|
||||
}
|
||||
}*/
|
||||
|
||||
/* Container */
|
||||
.container {
|
||||
|
Loading…
Reference in New Issue
Block a user