`wp_editor()` CSS messing up the jQuery Dialog

Yeah this is a fun one had to make some mods to make this one work….
add this to your theme stylesheet (style.css):

    .ui-front {
        z-index: 1001 !important;
    }
    .ui-widget-overlay {
        background: none repeat scroll 0 0 #000000 !important;
        opacity: .6 !important;
        filter: Alpha(Opacity = 60) !important;
    }

This should override the editor.css. Let me know if this does not work…
Tom