Bug #84264
closedBackend not scrollable
0%
Description
Since 8.7.11 the backend is no longer scrollable.
Left pane not scrollable in Page, List etc. view.
I tried Chromium, Chrome and Firefox.
!Screenshot_from_2018-03-14 15-22-31.png!
Files
Updated by swanage no-lastname-given over 6 years ago
- Related to Bug #84263: Backend Content not scrollable if only DebuggerUtility::var_dump added
Updated by swanage no-lastname-given over 6 years ago
Updated by Claude Unterleitner over 6 years ago
Do you have installed the extension ckeditor_fix as I did?
After deinstalling it, the backend was again scrollable.
Updated by Stephan Großberndt over 6 years ago
- Description updated (diff)
- Status changed from New to Needs Feedback
Updated by swanage no-lastname-given over 6 years ago
Correction: Most right pane is not scrollable (It is not even Monday)
Updated by Sven Juergens over 6 years ago
hi, have you installed the extension "ckeditor bugfix for #80116"
Deinstall and all is scrolling is working again, the fix is now part auf TYPO3 core
Updated by swanage no-lastname-given over 6 years ago
Indeed, the problem was in this fix. thank you all!
I love to work with T3bootstrap from Sven Wappler.
He fixed the old problem in an earlier version.
In ../typo3conf/ext/ws_t3bootstrap/Resources/Public/CSS/Backend/mods.css I deleted:
/* https://forge.typo3.org/issues/80116
* Bugfix for Chrome Scroll Bug
*/
html {
overflow: auto;
}
body {
height: auto;
min-height: 100%;
overflow: visible;
}
Now all is working again.
Updated by Riccardo De Contardi over 6 years ago
- Status changed from Needs Feedback to Closed
Thank you for your quick feedback and for your findings, that will help other people who use the same extension :)
I hope it is right for you if I close this issue now as it is not core-related. If you think that this is the wrong decision please reopen it or ping me.
Updated by Stephan Großberndt over 6 years ago
- Related to Bug #84476: Backend Scrolling own Extension added
Updated by Christian Eßl over 6 years ago
Still happening in 8.7.12 and there is no "ckeditor_fix" extension installed.
The iframe that includes an extension module is built this way:
<iframe name="list_frame" id="typo3-contentIframe" scrolling="no" class="scaffold-content-module-iframe t3js-scaffold-content-module-iframe"></iframe>
Notice the "scrolling=no". This fixes the problem:
https://review.typo3.org/#/c/56439/1/typo3/sysext/backend/Resources/Private/Templates/Backend/Main.html
Updated by Riccardo De Contardi over 6 years ago
- Related to Task #84522: Fix for Backend not scrollable added