Actions
Bug #22941
closedhtmlArea RTE: toolbar combo boxes do not float left in IE6
Start date:
2010-06-20
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Toolbar combo boxes do not float left in IE6.
(issue imported from #M14797)
Files
Updated by Stanislas Rolland over 14 years ago
Thanks to Jigal van Hemert for this solution:
In IE6 the DIV surrounding the dropdown box takes the full width (of what is left) of the toolbar area. Setting it to 1% in the developer toolbar made it float right. In FF (and most likely others) that doesn't work correctly, so something like:
body.ext-ie6 .htmlarea .toolbar .x-form-item {
width: 1%;
}
should help.
Any configured labels have to be hidden however because rendering is broken by width hardcoded by ExtJS.
Updated by Stanislas Rolland over 14 years ago
Committed to SVN TYPO3core trunk (revision 7993).
Actions