I am using the drupal 7 default theme and have all CKEditor features turned on. At its normal width the toolbar sections display strange. If I artificially make the body box smaller it looks normal, but at the width the page defaults to the buttons groups appear to line break in an odd way. Any ideas? See attached.

video
http://screencast.com/t/tyy7jYjSJstg

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

bpeter’s picture

Status: Active » Needs review
FileSize
841 bytes

This patch solves the issue.

agerson’s picture

Status: Needs review » Reviewed & tested by the community

That fixed it. Thanks.

dwalker51’s picture

Thanks that did it ...just took me a while to figure out that I had to create the css file and add the last line of the patch in

/sites/all/modules/wysiwyg/editors/css/ckeditor.kama.css

Thomas Bosviel’s picture

Fixed. Thanks.

Starminder’s picture

thanks.

sun’s picture

Version: 7.x-2.0 » 7.x-2.x-dev
Status: Reviewed & tested by the community » Needs work

I don't understand why this patch adds a new CSS file.

Starminder’s picture

I am kind of wondering the same thing.

TwoD’s picture

Because there is none for CKEditor yet, and this fix is only applied if Kama is used?

Starminder’s picture

How do you fix the problem if you weren't using kama?

TwoD’s picture

If you want to do it without modifying CKEditor, I'd go for #829266: Fixing toolbar for the CKeditor / Using the settings hook until #277954: Allow to sort editor buttons works well enough.

Starminder’s picture

#60 looks like it might be the winner for now - thank you! I guess once #277954 is taken care of this will be moot?

joelcollinsdc’s picture

This doesn't seem to be the right solution. Isn't the issue that when ckeditor is rendered via wysiwyg, for whatever reason the toolbar is generated using a single large span with several inner spans. (In other words, td->div->span->span,span,span...) If you look at ckeditor standalone, it is td->div->span,span,span,span. Whatever is causing this extra span to be added is what needs to be figured out...

flightrisk’s picture

I have the same issue. Does this also fix the right side outline border missing? My issue seems to be on themes with 3 columns. When the editor is shrunk to that size, the menu is a mess and the right side is too wide for the frame and disappears. I can manually grab the resize tool and "bring it back in" and it looks fine then.

2faroffroad’s picture

Fixed mine running a Artisteer theme..
Thanks.

TwoD’s picture

Status: Needs work » Closed (duplicate)

#277954: Allow to sort editor buttons fixes this issue by not forcing all buttons into a single toolbar group. Please help me test the sort_buttons branch in git or the latest patch in that issue so we can get it rolled into the main branches.