Index: t3lib/class.t3lib_tceforms.php =================================================================== --- t3lib/class.t3lib_tceforms.php (Revision 10039) +++ t3lib/class.t3lib_tceforms.php (Arbeitskopie) @@ -1976,9 +1976,10 @@ $sOnChange = implode('', $PA['fieldChangeFunc']); $selector_itemListStyle = isset($config['itemListStyle']) ? ' style="' . htmlspecialchars($config['itemListStyle']) . '"' : ' style="' . $this->defaultMultipleSelectorStyle . '"'; $size = intval($config['size']); + $cssPrefix = ($size == 1) ? 'tceforms-select' : 'tceforms-multiselect'; $size = $config['autoSizeMax'] ? t3lib_div::intInRange(count($selItems) + 1, t3lib_div::intInRange($size, 1), $config['autoSizeMax']) : $size; - $selectBox = 'insertDefStyle('select', $cssPrefix) . ($size ? ' size="' . $size . '"' : '') . ' multiple="multiple" onchange="' . htmlspecialchars($sOnChange) . '"' . $PA['onFocus'] . Index: typo3/sysext/t3skin/stylesheets/structure/element_tceforms.css =================================================================== --- typo3/sysext/t3skin/stylesheets/structure/element_tceforms.css (Revision 10039) +++ typo3/sysext/t3skin/stylesheets/structure/element_tceforms.css (Arbeitskopie) @@ -240,10 +240,6 @@ width: 250px; } -.typo3-TCEforms select.tceforms-multiselect { - min-height: 85px; -} - .typo3-TCEforms-palette .typo3-csh-link img { padding-top: 3px; vertical-align: top;