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