Bug #24727
closedAdminPanel becomes too wide when "TypoScript->display content" is checked
0%
Description
When selecting the display content option, the admin panel becomes so wide, that the minimize button in the title of the admPanel is far off to the right of the screen and you need a lot of horizontal scrolling to reach it.
This is caused by a setting in admin_panel.css:
#TSFE_ADMIN_PANEL_FORM #typo3-adminPanel-tsLog .typo3-adminPanel-logRow-odd, #TSFE_ADMIN_PANEL_FORM #typo3-adminPanel-tsLog .typo3-adminPanel-logRow-even, #TSFE_ADMIN_PANEL_FORM #typo3-adminPanel-tsLog .typo3-adminpanel-logRow-highlight {
...
white-space: nowrap;
}
It can be fixed by removing the
white-space: nowrap
configuration in the class definition
(issue imported from #M17216)
Files
Updated by Jeff Segars almost 14 years ago
Thanks for the bug report Jochen! I'll do a little browser testing here and get this committed later today.
Updated by Jeff Segars almost 14 years ago
Attached patch contains Jochen's suggestion and also address a width issue when the Info panel is open and is unnecessarily wide.
Updated by Jeff Segars almost 14 years ago
Committed to trunk in revision 10292.