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
pandora_console/include
rest-api/models/VisualConsole
styles
visual-console-client
visual_console_client/src

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

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

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

File diff suppressed because one or more lines are too long

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