It was reported by @marcopanichi in closed issue here: #1043230-12: D7 administration Toolbar overlays CKEditor in maximized mode

Same problem occurs with Admin-Menu Plugin

The solution is to add a line to /includes/ckeditor.utils.js in order to consider the #admin-menu div:

if( drupalTopToolbar.length==0 ) drupalTopToolbar = $('#admin-menu', Drupal.overlayChild ? window.parent.document : document);
I added the line below this one:

var drupalTopToolbar = $('#toolbar', Drupal.overlayChild ? window.parent.document : document);
It's not an elegant solution, but it works for me...hope it helps!

Greetings

Comments

dczepierga’s picture

Status: Needs review » Fixed

I fix it and commit to GIT (diff).

I do this some other, more elegant way :)
But really thx for report this and solution to fix it.

Greetings

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

mkesicki’s picture

Title: [D7] Overlays of administration toolbar in CKEditor maximized mode » [D7] Overlays of administration toolbar appears in CKEditor maximized mode
endiku’s picture

Issue summary: View changes

Same issue with Mobile Friendly Navigation Toolbar

Solution in same spot

var drupalTopToolbar = $('#toolbar, #admin-menu, #navbar-administration', Drupal.overlayChild ? window.parent.document : document);