How to make TinyMCE Responsive

后端 未结 6 1914
抹茶落季
抹茶落季 2020-12-28 17:18

I am making a Responsive site using the foundation framework and TinyMCE breaks the format when the page is scaled down(it\'s not responsive). How do I make TinyMCE responsi

6条回答
  •  鱼传尺愫
    2020-12-28 17:49

    Making the toolbar responsive for the latest version of TinyMCE:

    .tox-toolbar {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
    }
    .tox-toolbar__group {
        flex-wrap: nowrap !important;
    }
    

    This adds a horizontal scrollbar to the toolbar on mobile devices.

提交回复
热议问题