Changing background toolbar colour and text colour in tinymce editor

后端 未结 1 1397
挽巷
挽巷 2021-01-15 22:30

I have used this code in my init call for tinymce to point at my main css file:



        
相关标签:
1条回答
  • 2021-01-15 22:40
    /* toolbar */
    .mce-toolbar-grp {
        background-color: #000 !important; /* uses !important or override .mce-panel background-color/image */
        background-image: none !important;
    }
    
    /* text color */
    #tinymce {
       color: #dd9900;
    }
    
    /* button text color */
    .mce-ico {
       color: #dd9900;
    }
    
    /* button background color */
    .mce-btn button {
        background-color: #000000;
    }
    
    0 讨论(0)
提交回复
热议问题