简体   繁体   中英

How to change background of toolbar button when it is “on”, like the redo / undo (tinymce)

I have seen a similar question here .

Based on the answer there I now have this CSS:

/* toolbar */
.mce-toolbar-grp {
    background-color: grey !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;*/
    color: #000 !important;
}

/* button background color */
.mce-btn button {
    background-color: #fff;
}       

/* button background color (hover) */
.mce-btn button:hover {
    background-color: lawngreen;
}   

It all works, but when a button is toggled to on there is no indication of this:

The undo / redo buttons change the background so it is clear. How can i do this for the other buttons?

Example:

https://www.publictalksoftware.co.uk/forums/forum/meeting-schedule-assistant/assignments-editor/

Thanks.

Sorted it. I basically needed the toolbar and button with the same colours so that the rectangle displayed:

/* toolbar */
.mce-toolbar-grp {
    background-color: #fff !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: #000 !important;
}

/* button background color */
.mce-btn button {
    background-color: #fff;
}           

/* button background color (hover) */
.mce-btn button:hover {
    background-color: darkgray;
}   

工具栏 - 打开按钮

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM