From 4f69cd980593f80395689f2d4b0134ddabf24639 Mon Sep 17 00:00:00 2001
From: Frans Saris <franssaris@gmail.com>
Date: Mon, 17 Feb 2014 12:18:43 +0100
Subject: [PATCH] [BUGFIX] Adding new image to content element breaks layout

Since #55545 the frameset layout behaves strange in
Chrome and Chromium when you add a new image to
a content element. This is caused by some css set
on the hidden input[file] element.

This patch changes the css to prevent this behaviour.

Resolves: #56018
Releases: 6.2
Change-Id: I8a9b6b7d402ec712cb9b1761b059d2eeebd0ad3e
Reviewed-on: https://review.typo3.org/27655
Reviewed-by: Markus Klein
Tested-by: Markus Klein
Reviewed-by: Stefan Neufeind
Tested-by: Stefan Neufeind
---
 .../t3skin/Resources/Public/Css/visual/module_file_list.css     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/typo3/sysext/t3skin/Resources/Public/Css/visual/module_file_list.css b/typo3/sysext/t3skin/Resources/Public/Css/visual/module_file_list.css
index 58cece578bd8..b780d42a762b 100644
--- a/typo3/sysext/t3skin/Resources/Public/Css/visual/module_file_list.css
+++ b/typo3/sysext/t3skin/Resources/Public/Css/visual/module_file_list.css
@@ -47,7 +47,7 @@ table#typo3-filelist tr td div.typo3-editCtrl {
 	background: #EBEBEB;
 }
 .t3-upload-file-picker {
-	position: absolute;
+	position: fixed;
 	bottom: 0;
 	right: 0;
 	height: 1px;
-- 
GitLab