html - Mouse pointer over non editable elements in TinyMCE -


i trying integrate non editable zones in tinymce 4. , works fine. want cursor become "not-allowed" on non editable elements. set in css , works fine chrome , firefox not ie9 cursor don't change!

is there workaround problem?

thanks

you can find simple exemple here http://fiddle.tinymce.com/iseaab

ie supports cur , ani formats css change cursor.

{     cursor: url('/cursors/custommovecursor.png'),      /* modern browsers    */             url('/cursors/custommovecursor.cur'),      /* internet explorer  */             move;                                      /* older browsers     */ } 

please here. or link here

have tried edit css tinymce (tinymce/skins/lightgray/skin.min.css)

add need. example:

    .mce-grid td.mce-grid-cell div[disabled] { cursor:not-allowed } 

i still recommend using .cur file ie.


Comments