Feature: #100232 - Load additional stylesheets in TYPO3 backend
See forge#100232
Description
It is now possible to load additional CSS files for the TYPO3
backend interface via regular $TYPO3_
settings in a
settings.
file of a project (previously known as Local
)
file or in an extension's ext_
.
Previously this was done via the outdated $TBE_
global array which has been deprecated.
Impact
By defining a specific stylesheet, a single CSS file or all CSS files of a folder, extension authors can now modify the styling via:
$GLOBALS['TYPO3_CONF_VARS']['BE']['stylesheets'][my_extension]
= 'EXT:myextension/Resources/Public/Css/myfile.css';
$GLOBALS['TYPO3_CONF_VARS']['BE']['stylesheets'][my_extension]
= 'EXT:myextension/Resources/Public/Css/';
Copied!
in their extension's ext_
file.
Site administrators can handle this in their settings.
or additional.
file.