Fix tinyMCE background grey

This commit is contained in:
Daniel Barbero Martin 2020-01-13 10:14:51 +01:00
parent 09f1e2b733
commit 4f6ed7c39f
5 changed files with 16 additions and 2 deletions

View File

@ -160,7 +160,8 @@ class View extends \HTML
"bold,italic, |,justifyleft, justifycenter, justifyright, |, undo, redo, |, image, link, |, fontselect, forecolor, fontsizeselect, |,code", "bold,italic, |,justifyleft, justifycenter, justifyright, |, undo, redo, |, image, link, |, fontselect, forecolor, fontsizeselect, |,code",
theme_advanced_buttons2: "", theme_advanced_buttons2: "",
theme_advanced_buttons3: "", theme_advanced_buttons3: "",
theme_advanced_statusbar_location: "none" theme_advanced_statusbar_location: "none",
body_class: "tinyMCEBody"
}); });
} }
}, },

View File

@ -2493,6 +2493,11 @@ span#plugin_description {
text-align: left; text-align: left;
padding-top: 20px; padding-top: 20px;
} }
#tinymce.mceContentBody.tinyMCEBody {
background-color: #ededed;
}
.visual_font_size_4pt, .visual_font_size_4pt,
.visual_font_size_4pt > em, .visual_font_size_4pt > em,
.visual_font_size_4pt > strong, .visual_font_size_4pt > strong,

View File

@ -554,6 +554,10 @@ li#li-image-item label img {
flex: inherit; flex: inherit;
} }
.discovery.modal li#div-textarea-label table tbody td.mceIframeContainer {
background-color: #ededed;
}
/* Styles for the solid icons */ /* Styles for the solid icons */
.fa { .fa {

File diff suppressed because one or more lines are too long

View File

@ -430,3 +430,7 @@ li#li-image-item label img {
.discovery.modal li#div-textarea-label > label { .discovery.modal li#div-textarea-label > label {
flex: inherit; flex: inherit;
} }
.discovery.modal li#div-textarea-label table tbody td.mceIframeContainer {
background-color: #ededed;
}