Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. tinyMCE.init({
  2. mode : "textareas",
  3. theme : "advanced",
  4. plugins : "autolink,lists,spellchecker,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,imagemanager,filemanager",
  5. theme_advanced_buttons1 : "bold,italic,justifyleft,justifycenter,justifyright,justifyfull,"
  6. +"styleselect,formatselect,fontselect,fontsizeselect,bullist,numlist,link,unlink,image,pdw_toggle,"
  7. +"pastetext,pasteword,search,replace,outdent,indent,blockquote,undo,redo,code,forecolor,backcolor,"
  8. +"tablecontrols,hr,removeformat,visualaid,sub,sup,charmap,emotions,media,advhr,print,ltr,rtl,fullscreen,"
  9. +"cite,abbr,acronym,del,ins,attribs,visualchars,nonbreaking,template,blockquote,insertfile,insertimage,underline,strikethrough",
  10. theme_advanced_buttons2 : "",
  11. theme_advanced_buttons3 : "",
  12. theme_advanced_buttons4 : "",
  13. theme_advanced_toolbar_location : "top",
  14. width: "100%",
  15. height: "400"
  16. });
  17.  
  18. .mceToolbar tr {
  19. display:block !important;
  20. width:100% !important;
  21. }
  22. .mceToolbar td {
  23. clear:none !important;
  24. display:block !important;
  25. float:left !important;
  26. }
  27.  
  28. .mceToolbar * {
  29. white-space: normal !important;
  30. }
  31. .mceToolbar tr,
  32. .mceToolbar td {
  33. float:left !important;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement