Merge pull request #2 from DanielSiepmann/feature/fix-display-of-icon

[BUGFIX] Display edit icons in frontend
This commit is contained in:
Benni Mack 2020-03-16 20:24:08 +01:00 committed by GitHub
commit e4e92726e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<?php
defined('TYPO3_MODE') or die();
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
'feedit',
'Configuration/TypoScript',
'Frontend Editing'
);

View file

@ -0,0 +1,8 @@
plugin.tx_feedit._CSS_DEFAULT_STYLE (
.typo3-editPanel-btn .icon-size-small {
display: inline-block;
height: 16px;
line-height: 16px;
width: 16px;
}
)