Actions
Bug #76821
closedEXT:form - icons are missing
Start date:
2016-06-28
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
8
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
In v8 the icons on each form element are missing.
Updated by Riccardo De Contardi over 8 years ago
from the fle form.css:
#fake-form .formwizard-element button.t3-icon-edit-delete { background-image: url('../../../../../core/Resources/Public/Icons/T3Icons/actions/actions-delete.svg'); }
the relative path of the icon is wrong, and it ends up as http://yourhost/typo3/core/Resources/Public/Icons/T3Icons/actions/actions-delete.svg instead of
http://yourhost/typo3/sysext/core/Resources/Public/Icons/T3Icons/actions/actions-delete.svg
solution: there is an excessive ../ simply remove it.
#fake-form .formwizard-element button.t3-icon-edit-delete { background-image: url('../../../../core/Resources/Public/Icons/T3Icons/actions/actions-delete.svg'); }
Updated by Wouter Wolters over 8 years ago
- Status changed from New to Closed
Duplicate now, patch is pending https://review.typo3.org/#/c/49148/
Actions