Actions
Bug #87097
closedStyling of TCA description text with custom css selector
Status:
Closed
Priority:
Should have
Assignee:
Category:
Backend User Interface
Target version:
Start date:
2018-12-07
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
easy
Is Regression:
Sprint Focus:
Description
The TCA description has no css selector and uses the default text color. Editors have no visual difference between the label and the description text.
Actual:
$resultArray['html'] = htmlspecialchars($fieldInformationText);
Should be:
$resultArray['html'] = '<span class="formengine-field-item-description text-muted">'.htmlspecialchars($fieldInformationText). '</span>';
Actions