fabarea / media

Media management system for TYPO3 CMS
Other
30 stars 25 forks source link

upload file fcon is broken/can't be found #215

Closed hannesbochmann closed 2 years ago

hannesbochmann commented 2 years ago

The upload file icon is broken/can't be found. The markup in Resources/Private/Standalone/FileUploadTemplate.html for the icon is the following:

<span class="t3js-icon icon icon-size-small icon-state-default icon-actions-edit-upload" data-identifier="actions-document-new">
    <span class="icon-markup">
        <img src="/typo3/sysext/core/Resources/Public/Icons/T3Icons/actions/actions-edit-upload.svg" height="16" width="16">
    </span>
</span>

A correct version would be:

<span class="t3js-icon icon icon-size-small icon-state-default icon-actions-edit-upload" data-identifier="actions-edit-upload">
    <span class="icon-markup">
        <svg class="icon-color" role="img">
            <use xlink:href="/typo3/sysext/core/Resources/Public/Icons/T3Icons/sprites/actions.svg#actions-upload"></use>
        </svg>
    </span>
</span>