Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions src/wp-includes/css/editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -425,11 +425,16 @@ div.mce-path {
border-color: #50575e;
}

.mce-btn.mce-active,
.mce-btn.mce-active button,
.mce-btn.mce-active:hover button,
.mce-btn.mce-active i,
.mce-btn.mce-active:hover i {
/*
* TinyMCE appends its skin stylesheet when the editor initializes, so it can be
* parsed after this file. The extra class gives these rules a higher specificity
* than the skin's white active state, so they no longer depend on source order.
*/
.mce-widget.mce-btn.mce-active,
.mce-widget.mce-btn.mce-active button,
.mce-widget.mce-btn.mce-active:hover button,
.mce-widget.mce-btn.mce-active i,
.mce-widget.mce-btn.mce-active:hover i {
color: inherit;
}

Expand Down
Loading