Breaking: #98312 - TypoScript setting page.CSS_inlineStyle removed
See forge#98312
Description
The TypoScript setting
page.
which was used to
inject an inline CSS string into the TYPO3 Frontend has been removed.
Impact
Using this setting has no effect anymore since TYPO3 v12.
Affected installations
TYPO3 installations having this option set in their TypoScript setup.
Migration
Use
page.
instead, which has been around for many
TYPO3 versions already.
The superior setting
page.
allows to use
std
and
c
.
Example for migration:
page.CSS_inlineStyle = a { color: red; }
page.cssInline.100 = TEXT
page.cssInline.100.value = a { color: red; }
Copied!