Looking to enhance my tinyMCE active editor popup with custom CSS. Check out the screenshot provided for reference https://i.sstatic.net/vdVDF.png.
Below you can find the code snippet used as a reference:
tinymce.activeEditor.windowManager.open({
title: 'Browse Image Gallery',
file: "data/get_images_tiny.php",
width: 500,
height: 305,
resizable: "no",
inline: "yes",
close_previous: "no",
buttons: [{
text: 'Upload Image from your PC',
onclick: function () {
//do something
}
}, {
text: 'Close',
onclick: 'close'
}]
});