Débordement dans inputfile

This commit is contained in:
Fred Tempez 2020-08-12 09:21:40 +02:00
parent cddf3ab4a5
commit 0b400cdb35
4 changed files with 14 additions and 5 deletions

View File

@ -244,7 +244,7 @@ class template {
'value' => $attributes['value']
]);
// Champ d'upload
$html .= '<div>';
$html .= '<div class="inputWrapper">';
$html .= sprintf(
'<a
href="' .

View File

@ -1019,6 +1019,16 @@ label {
text-decoration: none;
}
/* Empêche le débordement et les sauts de ligne */
.inputWrapper {
display: inline;
}
.inputWrapper > .inputFile {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* Pagination */
.pagination {
padding: 10px 0;

View File

@ -11,7 +11,6 @@
AND $this->getUser('password') === $this->getInput('ZWII_USER_PASSWORD')
): ?>
<div class="col2">
<?php echo $this->getUser('group'); ?>
<?php echo template::button('blogEdit', [
'href' => helper::baseUrl() . $this->getUrl(0) . '/edit/' . $this->getUrl(1) . '/' . $_SESSION['csrf'],
'value' => 'Editer'

View File

@ -36,7 +36,7 @@
</div>
</div>
<div class="row">
<div class="col4">
<div class="col6">
<?php echo template::file('blogEditPicture', [
'help' => 'Taille optimale de l\'image de couverture : ' . ((int) substr($this->getData(['theme', 'site', 'width']), 0, -2) - (20 * 2)) . ' x 350 pixels.',
'label' => 'Image de couverture',
@ -44,13 +44,13 @@
'value' => $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'picture'])
]); ?>
</div>
<div class="col4">
<div class="col3">
<?php echo template::select('blogEditPictureSize', $module::$pictureSizes, [
'label' => 'Largeur de l\'image',
'selected' => $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'pictureSize'])
]); ?>
</div>
<div class="col4">
<div class="col3">
<?php echo template::select('blogEditPicturePosition', $module::$picturePositions, [
'label' => 'Position',
'selected' => $this->getData(['module', $this->getUrl(0), $this->getUrl(2), 'picturePosition']),