When using the TinyMCE editor (wysiwyg module) with this theme, it displays with a black background and grey text. I fixed this locally by adding the following lines to style.css:

body.mceContentBody {
   background-color: transparent;
   color: #000000;
}

I have attached a patch, which ought to fix this issue.

CommentFileSizeAuthor
#6 deco-tinymce-background-433516-6.patch716 bytesc31ck
deco.patch472 bytesukch
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Manonline’s picture

If you are using WYSIWYG Api, yo must enter in the wysiyg settings page at "example.com/admin/settings/wysiwyg/profile", then clic "edit" in FCKEditor and in "CSS" select "Editor Default CSS". It worked for me,

sorry if my english is not enough. It isnt native.

strgpune’s picture

Thanks buddy, it worked for me as well!!!

Lee-vit-Over’s picture

I may very well be (and I'm sure I am) doing something wrong - but neither one of these fixes worked for me...
What am I missing, or what am I doing wrong ??

PLEASE someone ?

Lee-vit-Over@hotmail.com

THANK YOU !!!!

dmetzcher’s picture

Glad I searched before checking through my CSS. Switching to the Editor Default CSS corrected it for me.

kiwibytes’s picture

Changing the CSS option to use Default Editor CSS also worked for me.

c31ck’s picture

Version: 6.x-1.1 » 6.x-1.x-dev
Component: User interface » Code
Priority: Normal » Minor
Status: Patch (to be ported) » Needs review
Issue tags: -wysiwyg, -background, -tinymce
FileSize
716 bytes

Instead of targeting tinyMCE, let's implement a more general solution. The problem here is that in style.css a black background color is applied to every body tag. The attached patch fixes this.

klaasvw’s picture

Status: Needs review » Fixed

Thanks, this is working great for me. Committed to the 6.x-1.x-dev branch.

c31ck’s picture

Version: 6.x-1.x-dev » 7.x-1.x-dev
Status: Fixed » Closed (fixed)

Committed to the 7.x-1.x-dev as well

Arunah’s picture

Issue summary: View changes

Changing the CSS option to use Default Editor CSS worked for me. Thanks