Bug #66550
closedNo Content in the right Panel (only Chrome)
0%
Description
I just started a fresh TYPO3 Project with Version 7.1 and i directly found this issue in the Backend.
My Setup:
PHP Version: 5.5.18
MySQL: 10.0.17-MariaDB
Browser: Chrome Version 42.0.2311.90 (64-bit)
Webserver: Apache/2.2.29 (Unix)
When i open the Backend and click on Page, List or Template and select my Page, i get no Content on the right Panel.
I think it has something to do with the Browser Width.
When i open it on the MacBook Pro 13" Monitor with a resolution of 1280x682 the right Content Panel is Empty.
When i open it on the Thunderbold Display with a resolution of 2560x1273 the right Content Panel is shown as expected.
When i drag the left MenĂ¼ and make it smaller or larger, the content on the right Panel is shown.
Just at the Initial Page Load with a to low resolution (width) it seems to appear.
Seems like the Backend wasn't testet on Devices with a small resolution like a MacBook Pro 13".
I testet this "Bug" on Firefox and Chrome. In Firefox it seems to Work.
Chrome only seems to have the Problem.
There are no JavaScript Errors in the Developer Console.
Files
Updated by Mathias Schreiber over 9 years ago
- Status changed from New to Rejected
Hi Mikel,
sorry to say, but this is not TYPO3 related.
Retina Chromes are known to have redraw issues.
We are working hard to remove the last parts of ExtJS which add to (but don't soley cause) the problem.
Updated by Benjamin Franzke over 9 years ago
Hi,
we experience the same Problem on non-retina Chrome (42.0.2311.135) on Fedora/Gnome3
A working fix is to force the iframe wrapper to 3d rendering.
This css applied to the backend fixes the problem for us:
.x-panel iframe {
-webkit-transform: translate3d(0,0,0);
}
Any chances you could include this fix in TYPO3 CMS 6.2 LTS?