mirror of
https://github.com/FriendsOfTYPO3/feedit.git
synced 2024-11-22 06:26:09 +01:00
Merge pull request #2 from DanielSiepmann/feature/fix-display-of-icon
[BUGFIX] Display edit icons in frontend
This commit is contained in:
commit
e4e92726e1
2 changed files with 16 additions and 0 deletions
8
Configuration/TCA/Overrides/sys_template.php
Normal file
8
Configuration/TCA/Overrides/sys_template.php
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?php
|
||||||
|
defined('TYPO3_MODE') or die();
|
||||||
|
|
||||||
|
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
|
||||||
|
'feedit',
|
||||||
|
'Configuration/TypoScript',
|
||||||
|
'Frontend Editing'
|
||||||
|
);
|
8
Configuration/TypoScript/setup.typoscript
Normal file
8
Configuration/TypoScript/setup.typoscript
Normal 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;
|
||||||
|
}
|
||||||
|
)
|
Loading…
Reference in a new issue