Actions
Bug #88390
closedIcon in Pagetree too big
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2019-05-18
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
I add a custom page-type in my extension. I defined an own SVG-icon.
The icon is too big in the page-tree. The presentation in the add-List is okay.(see screenshot)
I registrate the icon in the ext_localconf.php
/** @var \TYPO3\CMS\Core\Imaging\IconRegistry $iconRegistry */
$iconRegistry = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Imaging\IconRegistry::class);
$iconRegistry->registerIcon(
'checker-checker',
\TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider::class,
['source' => 'EXT:checker/Resources/Public/Icons/CheckerPlugin.svg']
);
I added the code of the SVG.
Files
Actions