From 0e469569e06224fdd3d3dd32cbbeed9682987a1b Mon Sep 17 00:00:00 2001 From: Steffen Gebert Date: Fri, 17 Dec 2010 09:19:48 +0000 Subject: [PATCH] =?utf8?q?Fixed=20bug=20#14564:=20Width=20of=20one=20text?= =?utf8?q?=20paragraph=20in=20the=20Install=20Tool=20is=20too=20big=20(Tha?= =?utf8?q?nks=20to=20Marc=20W=C3=B6hlken)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@9816 709f56b5-9817-0410-a4d7-c38de5d9e867 --- ChangeLog | 1 + .../Resources/Private/Templates/GenerateConfigForm.html | 2 +- typo3/sysext/install/Resources/Public/Stylesheets/install.css | 4 ++++ 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6949f201a950..88ecb744b4cd 100755 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2010-12-17 Steffen Gebert * Fixed bug #16725: Wrong translation markers in Content Element Image (Thanks to Thomas Kieslich) + * Fixed bug #14564: Width of one text paragraph in the Install Tool is too big (Thanks to Marc Wöhlken) 2010-12-17 Francois Suter diff --git a/typo3/sysext/install/Resources/Private/Templates/GenerateConfigForm.html b/typo3/sysext/install/Resources/Private/Templates/GenerateConfigForm.html index 2abaf4d226a2..0a28b23a7733 100644 --- a/typo3/sysext/install/Resources/Private/Templates/GenerateConfigForm.html +++ b/typo3/sysext/install/Resources/Private/Templates/GenerateConfigForm.html @@ -12,7 +12,7 @@
    -
  1. +
  2. ###DESCRIPTION###
  3. diff --git a/typo3/sysext/install/Resources/Public/Stylesheets/install.css b/typo3/sysext/install/Resources/Public/Stylesheets/install.css index e153c8075521..5e79be282f14 100644 --- a/typo3/sysext/install/Resources/Public/Stylesheets/install.css +++ b/typo3/sysext/install/Resources/Public/Stylesheets/install.css @@ -188,6 +188,10 @@ h1, } /* 5: All configuration */ +.t3-install-description { + word-wrap: break-word; + width: 48em; +} /* 6: typo3temp/ */ #t3-install-tempmanagernumbers dt { -- 2.20.1