From 7fea4a019ad9bc5286d256ac4d4f7c72d20753ba Mon Sep 17 00:00:00 2001
From: Josef Glatz <josef.glatz@typo3.org>
Date: Sun, 15 Nov 2015 12:01:52 +0100
Subject: [PATCH] [BUGFIX] Installtool: add bottom margin for content-area

Add global bottom margin for the main content area.

Releases: master
Resolves: #71384
Change-Id: I5caf82dfe3fcf228fea7c97df23102bbe7652c8c
Reviewed-on: https://review.typo3.org/44723
Reviewed-by: Harry Glatz <glatz@analog.de>
Tested-by: Harry Glatz <glatz@analog.de>
Reviewed-by: Oliver Eglseder <oliver.eglseder@in2code.de>
Tested-by: Oliver Eglseder <oliver.eglseder@in2code.de>
Reviewed-by: Daniel Lorenz <forge@extco.de>
Tested-by: Daniel Lorenz <forge@extco.de>
Reviewed-by: Georg Ringer <georg.ringer@gmail.com>
Tested-by: Georg Ringer <georg.ringer@gmail.com>
---
 Build/Resources/Public/Less/InstallTool.less     | 16 ++++++++++++++--
 .../install/Resources/Public/Css/InstallTool.css |  9 +++++++++
 2 files changed, 23 insertions(+), 2 deletions(-)

diff --git a/Build/Resources/Public/Less/InstallTool.less b/Build/Resources/Public/Less/InstallTool.less
index a41a224c68b3..80b7814b56ec 100644
--- a/Build/Resources/Public/Less/InstallTool.less
+++ b/Build/Resources/Public/Less/InstallTool.less
@@ -18,8 +18,16 @@
 
 @grid-float-breakpoint: @screen-md-min;
 
-.content-area > h3 {
-	margin-top: 0;
+.content-area {
+	padding-bottom: 35px;
+
+	> h3 {
+		margin-top: 0;
+	}
+
+	> *:last-child {
+		margin-bottom: 0;
+	}
 }
 
 .logo-pageheader {
@@ -141,6 +149,10 @@ hr {
 	border-top-color: @panel-default-heading-bg;
 }
 
+.copyright .panel-default:last-child {
+	margin-bottom: 0;
+}
+
 #fixed-footer-handler {
 	height: 32px;
 }
diff --git a/typo3/sysext/install/Resources/Public/Css/InstallTool.css b/typo3/sysext/install/Resources/Public/Css/InstallTool.css
index 751afe663ebc..a60f0b1d8621 100644
--- a/typo3/sysext/install/Resources/Public/Css/InstallTool.css
+++ b/typo3/sysext/install/Resources/Public/Css/InstallTool.css
@@ -8238,9 +8238,15 @@ button.close {
     display: none !important;
   }
 }
+.content-area {
+  padding-bottom: 35px;
+}
 .content-area > h3 {
   margin-top: 0;
 }
+.content-area > *:last-child {
+  margin-bottom: 0;
+}
 .logo-pageheader img {
   padding-bottom: 3px;
 }
@@ -8325,6 +8331,9 @@ a[data-toggle="collapse"] {
 hr {
   border-top-color: #dddddd;
 }
+.copyright .panel-default:last-child {
+  margin-bottom: 0;
+}
 #fixed-footer-handler {
   height: 32px;
 }
-- 
GitLab