Created
August 17, 2012 14:42
-
-
Save alsodenn/3379326 to your computer and use it in GitHub Desktop.
TYPO3 FE Edit: Hide black border
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://blog.exites.de/2011/04/typo3-adminpanel-gibt-unschone-schwarze-tabellen-aus/ | |
Öffne die Datei /typo3/sysext/feedit/class.txfeediteditpanel.php und suche folgenden Abschnitt: | |
original: | |
$blackLine = $conf['line'] ? '<img src="clear.gif" width="1" height="' . intval($conf['line']) . '" alt="" title="" /><br /><table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="black" style="border: 0px;" summary=""><tr style="border: 0px;"><td style="border: 0px;"><img src="clear.gif" width="1" height="1" alt="" title="" /></td></tr></table><br />' : ''; | |
new: | |
$blackLine = $conf['line'] ? '<table border="0" cellpadding="0" cellspacing="0" width="100%" style="background-color: #abbbb4; border: 0px; height: 1px;" summary=""><tr style="border: 0px;"><td style="border: 0px;"></td></tr></table><br />' : ''; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just set tt_content.stdWrap.editPanel.line = 0 and forget about that core hack!