Skip to content

Commit

Permalink
MDL-36468 fix remaining zIndexes and some { weirdness
Browse files Browse the repository at this point in the history
I had to reimport all files and search&replace the zIndexes, it is better to not use editor for this.
  • Loading branch information
skodak committed Nov 9, 2012
1 parent 067200e commit 657e6b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@

n = DOM.add(DOM.doc.body, 'div', {
id : 'mce_fullscreen_container',
style : 'position:' + posCss + ';left:0;width:' + vp.w + 'px;height:' + vp.h + 'px;z-index:200000;'});
style : 'position:' + posCss + ';left:0;width:' + vp.w + 'px;height:' + vp.h + 'px;z-index:2000;'});
DOM.add(n, 'div', {id : 'mce_fullscreen'});

tinymce.each(ed.settings, function(v, n) {
Expand Down
2 changes: 1 addition & 1 deletion lib/editor/tinymce/tiny_mce/3.5.7b/tiny_mce.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/editor/tinymce/tiny_mce/3.5.7b/tiny_mce_src.js
Original file line number Diff line number Diff line change
Expand Up @@ -11750,7 +11750,7 @@ tinymce.create('tinymce.ui.Separator:tinymce.ui.Control', {
renderNode : function() {
var t = this, s = t.settings, n, tb, co, w;

w = DOM.create('div', {role: 'listbox', id : 'menu_' + t.id, 'class' : s['class'], 'style' : 'position:absolute;left:0;top:0;z-index:200000;outline:0'});
w = DOM.create('div', {role: 'listbox', id : 'menu_' + t.id, 'class' : s['class'], 'style' : 'position:absolute;left:0;top:0;z-index:2000;outline:0'});
if (t.settings.parent) {
DOM.setAttrib(w, 'aria-parent', 'menu_' + t.settings.parent.id);
}
Expand Down

0 comments on commit 657e6b8

Please sign in to comment.