further CSS enhancement
flickerfly - December 14, 2008 - 04:37
| Project: | YUI Rich Text Editor |
| Version: | 6.x-2.33 |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | reviewed & tested by the community |
Jump to:
Description
This little bit of css seems to do a fine job taking care of it.
.yui-skin-sam .yui-toolbar-container .yui-toolbar-group h3 {white-space: nowrap;}
I believe it should be applied to yui_editor.css in the module's root.

#1
I added that line of CSS to the yui_editor.css and the wrapping disappeared, thanks flickerfly!
Also there were the background images / bullets shown in the toolbar when using blueprint ( http://drupal.org/project/blueprint ) based themes, so I altered the lines
.yui-toolbar-groupitem {background-image: none;
}
to
.yui-toolbar-groupitem {background-image: none;
list-style-type: none;
list-style-image: none;
}
Now there are no more bullets in the toolbar even if using blueprint based themes.
#2
:-) Being that my birthday was yesterday, I think I'll consider this a present! :-)
#3
Wish I'd noticed this was "Needs Review" awhile ago. I think this is good to go isn't it? I'm looking forward to not having to edit this on each site I use YUI editor on.