Project

General

Profile

Actions

Bug #18799

closed

Wrong CSS-Declaration makes big Forms unscrollable

Added by Stephan Hertz about 16 years ago. Updated over 13 years ago.

Status:
Closed
Priority:
Should have
Assignee:
Category:
-
Target version:
-
Start date:
2008-05-16
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

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

backend-typo3-4-2.png (49.6 KB) backend-typo3-4-2.png Administrator Admin, 2008-05-16 10:15
T3X_bug_8433_bemod-0_0_0-z-200903111314.t3x (18.5 KB) T3X_bug_8433_bemod-0_0_0-z-200903111314.t3x Administrator Admin, 2009-03-11 13:14
bug_8433.diff (627 Bytes) bug_8433.diff Administrator Admin, 2009-03-11 13:15

Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #19215: No scrollbar in constant editor for templates on local xamppClosedChris topher2008-08-12

Actions
Actions #1

Updated by Steffen Kamper about 16 years ago

sry, i have the scrollbar in each modules in 4.2

Actions #2

Updated by Mathias Schreiber over 15 years ago

Still exists in 4.2.6. See typo3/stylesheet.css line 212.

Actions #3

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.

Actions #4

Updated by Chris topher over 13 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.

Actions

Also available in: Atom PDF