Bug #18799
closedWrong CSS-Declaration makes big Forms unscrollable
0%
Description
If you work in BE for instant on the template or on a tt_news-article, you canĀ“t scroll down the 3rd column cause overflow is set to hidden and not to auto.
This is the declaration:
body#typo3-alt-doc-php,
body#typo3-db-list-php,
body#typo3-mod-web-perm-index-php,
body#typo3-mod-web-info-index-php,
body#typo3-mod-web-func-index-php,
body#typo3-mod-user-ws-index-php,
body#typo3-mod-user-ws-workspaceforms-php,
body#typo3-mod-php,
body#typo3-mod-tools-em-index-php,
body#typo3-pagetree,
body#typo3-db-new-php,
body#typo3-move-el-php,
body#typo3-show-rechis-php,
body#ext-cms-layout-db-layout-php,
body#ext-tstemplate-ts-index-php,
body#ext-version-cm1-index-php,
body#ext-setup-mod-index-php,
body#ext-tsconfig-help-mod1-index-php,
body#ext-lowlevel-dbint-index-php,
body#ext-lowlevel-config-index-php,
body#ext-cms-layout-db-new-content-el-php {
padding: 0;
margin: 0;
overflow: hidden;
height: 100%;
}
and should strongly recommended changed to
[...]
body#ext-cms-layout-db-new-content-el-php {
padding: 0;
margin: 0;
overflow: auto;
height: 100%;
}
(issue imported from #M8433)
Files
Updated by Steffen Kamper over 16 years ago
sry, i have the scrollbar in each modules in 4.2
Updated by Mathias Schreiber over 15 years ago
Still exists in 4.2.6. See typo3/stylesheet.css line 212.
Updated by Sonja Schubert over 15 years ago
I have the same problem with IE7 and all new clean created modules from kickstarter (latest version). If the content of the module is too long the content will be croped and no scrollbar appears in the right.
I have just tested the patch in IE7, FF3, FF2 and IE6 and it works very fine. Only in IE6 there appears two scollbars in the right, but the content is completely visible. Perhaps there is another IE6 specific CSS definition because of the two scrollbars.
I would be very glad if the patch would be come into 4.3, because it its important for all new kickstarter created backend modules.
Updated by Chris topher about 14 years ago
Resolved, fixed.
I checked this with 4.3.3 and 4.4 and cannot reproduce the problem.
At least for 4.4 and newer the problem was fixed with #20477 (Rev. 7502), where "overflow: hidden;" was commented out.