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.

Comments

deshilachado’s picture

Title: "Indenting and Lists" wraps in toolbar » further CSS enhancement

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.

flickerfly’s picture

:-) Being that my birthday was yesterday, I think I'll consider this a present! :-)

flickerfly’s picture

Status: Needs review » Reviewed & tested by the community

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.