Jump to content

Fullscreen editor button?


EarthDog

Recommended Posts

Posted

I can throw out general comments too:

This plugin is working on IPS4.

But I can also back it up by proving it:

1) I've used it.

2) I've just tested it.

3) Here's pictures of it working.

Screenshot_18.png

Screenshot_19.png

Screenshot_20.png

Over to you to elaborate on why it isn't working correctly for you ;)

Posted

That's down to z-index....to workaround it, edit the following file:

/applications/core/interface/ckeditor/ckeditor/plugins//maximize/plugin.js

Locate the 2 lines that have "editor.config.baseFloatZIndex" in them and change the " - 5" in the lines to " + 5000"

That will give it a z-index of 15000 (baseFloatZIndex is 10000) and should sort you out.

  • 2 weeks later...
Posted
On 31/03/2016 at 3:31 PM, Nathan Explosion said:

That's down to z-index....to workaround it, edit the following file:

/applications/core/interface/ckeditor/ckeditor/plugins//maximize/plugin.js

Locate the 2 lines that have "editor.config.baseFloatZIndex" in them and change the " - 5" in the lines to " + 5000"

That will give it a z-index of 15000 (baseFloatZIndex is 10000) and should sort you out.

I noticed that after changing the z index the font and font size dropdowns do not appear while in full screen mode. How can we find the dweet spot for the correct zindex number?

Posted

The answer is 10001 is the zindex of those 2 dialogs, which is 1 above the baseFloatZIndex of the editor itself.

You can use either:

editor.config.baseFloatZIndex

or

editor.config.baseFloatZIndex + 1

instead of

editor.config.baseFloatZIndex -5

in that case (not tested)

Posted
On 4/13/2016 at 7:02 PM, Nathan Explosion said:

The answer is 10001 is the zindex of those 2 dialogs, which is 1 above the baseFloatZIndex of the editor itself.

You can use either:


editor.config.baseFloatZIndex

or


editor.config.baseFloatZIndex + 1

instead of


editor.config.baseFloatZIndex -5

in that case (not tested)

That worked for the font size , font e.t.c BUT it does not work with the buttons that require a new dialog , like CODE, INSERT LINK e.t.c

Any magic for that one?

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...