décalage du bouton dans input file avec une notice

This commit is contained in:
Fred Tempez 2022-02-09 16:10:13 +01:00
parent 2e572a793b
commit 98684d3613
2 changed files with 9 additions and 8 deletions

View File

@ -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',

View File

@ -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 {