Project

General

Profile

Actions

Bug #76821

closed

EXT:form - icons are missing

Added by Björn Jacob over 8 years ago. Updated over 8 years ago.

Status:
Closed
Priority:
Should have
Assignee:
Category:
Form Framework
Target version:
-
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.

Actions #1

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');
}
Actions #2

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

Also available in: Atom PDF