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
|
// Début du wrapper
|
||||||
$html = '<div id="' . $attributes['id'] . 'Wrapper" class="inputWrapper ' . $attributes['classWrapper'] . '">';
|
$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
|
||||||
$notice = '';
|
$notice = '';
|
||||||
if(array_key_exists($attributes['id'], common::$inputNotices)) {
|
if(array_key_exists($attributes['id'], common::$inputNotices)) {
|
||||||
@ -309,6 +303,12 @@ class template {
|
|||||||
$attributes['class'] .= ' notice';
|
$attributes['class'] .= ' notice';
|
||||||
}
|
}
|
||||||
$html .= self::notice($attributes['id'], $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
|
// Champ caché contenant l'url de la page
|
||||||
$html .= self::hidden($attributes['id'], [
|
$html .= self::hidden($attributes['id'], [
|
||||||
'class' => 'inputFileHidden',
|
'class' => 'inputFileHidden',
|
||||||
|
@ -339,10 +339,11 @@ td>.col12 {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
color: #E74C3C;
|
color: #E74C3C;
|
||||||
}
|
}
|
||||||
/* Mauvaise position dans les champs File*/
|
|
||||||
|
/* Mauvaise position dans les champs File
|
||||||
.inputFile.notice {
|
.inputFile.notice {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}*/
|
||||||
|
|
||||||
/* Container */
|
/* Container */
|
||||||
.container {
|
.container {
|
||||||
|
Loading…
Reference in New Issue
Block a user