At jfoobar labs you will find "stuff" that is either cool, useful or for learning purposes. We hope to create a pretty nice selection over time. Remember, we need it to be fun.
If you have trouble with your editor extended plugin buttons where the right side of the button isn't handled correctly by the Joomla! admin CSS.
Look at the snippets, "blank" is a class in the admin CSS file that will fix what's missing.
$button->set('name', 'buttonname');
To:
$button->set('name', 'buttonname blank');
The extra "blank" after the space will give your button a nicely rounded right side.
Copyright © 2008 jfoobar - All Rights Reserved - Joomla! is a registered trademark of Open Source Matters, Inc - Disclaimer
# 1 - Posted by: Tom on 2008-12-10 00:51:04
Perfect! Just what I have always wondered... Thanks!