From c084d25aa7605bc2415f3054a93d5c7f465f32e9 Mon Sep 17 00:00:00 2001
From: ARNO* <arno@rezo.net>
Date: Sun, 19 Sep 2004 17:42:14 +0000
Subject: [PATCH] Reintroduction de la largeur max pour les alignements
 droite-gauche

---
 ecrire/inc_documents.php3 | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/ecrire/inc_documents.php3 b/ecrire/inc_documents.php3
index 1850c63384..a076495b9f 100644
--- a/ecrire/inc_documents.php3
+++ b/ecrire/inc_documents.php3
@@ -297,10 +297,14 @@ function integre_image($id_document, $align, $type_aff) {
 			}
 			else $type = 'fichier';
 			
+			$largeur_aff = $largeur_vignette;
+			if ($largeur_aff < 120) $largeur_aff = 120;
+			
+			
 			if ($align == 'center') 
 				$retour = "<div class='spip_documents' style='margin: auto; text-align: center;'>\n";
 			else 
-				$retour = "<div class='spip_documents' style='float: $align; text-align: center;'>\n";
+				$retour = "<div class='spip_documents' style='float: $align; text-align: center; width: ".$largeur_aff."px;'>\n";
 
 			//$retour .= "<tr><td align='center' style='text-align: center;'>";
 			$retour .= $vignette;
-- 
GitLab