We recently updated our TYPO3 version from 6.2 to 7.6 and now the t3editor fields are way too small to work with:
They used to be re-sizable but now they are fixed height, that is way too small.
Is there a builtin way to make them re-sizable again?
EDIT: I ended up adding rows and wrap value to typo3/sysext/t3editor/Configuration/TCA/Overrides/sys_template.php
// Activate t3editor for sys_template constants
if (is_array($GLOBALS['TCA']['sys_template']['columns']['constants']['config'])) {
$GLOBALS['TCA']['sys_template']['columns']['constants']['config']['renderType'] = 't3editor';
$GLOBALS['TCA']['sys_template']['columns']['constants']['config']['format'] = 'typoscript';
$GLOBALS['TCA']['sys_template']['columns']['constants']['config']['rows'] = 20;
$GLOBALS['TCA']['sys_template']['columns']['constants']['config']['wrap'] = 'ON';
}
// Activate t3editor for sys_template config
if (is_array($GLOBALS['TCA']['sys_template']['columns']['config']['config'])) {
$GLOBALS['TCA']['sys_template']['columns']['config']['config']['renderType'] = 't3editor';
$GLOBALS['TCA']['sys_template']['columns']['config']['config']['format'] = 'typoscript';
$GLOBALS['TCA']['sys_template']['columns']['config']['config']['rows'] = 20;
$GLOBALS['TCA']['sys_template']['columns']['config']['config']['wrap'] = 'ON';
}

One alternative may be to override
$GLOBALS['TCA']for the column configurations. You would give new values tocols,rows, orwrapin thesys_templatetable configuration for the firstconfig(which is thesetuptextarea), theconstants, and thedescription:The TCA Reference page for a TEXT-type column gives more information, and the page for storing TCA changes can tell you where to put your changes.