Skip to content

Instantly share code, notes, and snippets.

@andreas-becker
Created June 22, 2017 09:29
Show Gist options
  • Save andreas-becker/555253af8ab9108d1219cd81aafa2b06 to your computer and use it in GitHub Desktop.
Save andreas-becker/555253af8ab9108d1219cd81aafa2b06 to your computer and use it in GitHub Desktop.
Add own css in TYPO3 backend - Eigenes CSS ins TYPO3-Backend einfügen
/***************
* Add own stylesheet(s) to TYPO3 backend, tested with TYPO3 8.7
* Fügt eigene CSS-Dateien zum TYPO3-Backend hinzu; getestet mit TYPO3 8.7
*/
$GLOBALS['TBE_STYLES']['skins']['we_template'] = array();
$GLOBALS['TBE_STYLES']['skins']['we_template']['name'] = 'MyExtension AddOn';
$GLOBALS['TBE_STYLES']['skins']['we_template']['stylesheetDirectories'] = array(
'EXT:MyExtension/Resources/Public/Stylesheet/Backend'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment