userContent.css - GMail Compose 与“about:blank”颜色相同

userContent.css - GMail Compose 与“about:blank”颜色相同

我的 Firefox userContent.css 中有一些代码可以设置页面的背景颜色about:blank。但是,该about:blank颜色似乎也适用于在 Google Mail 中创建消息的文本区域背景。

我如何设置 Google Mail 文本背景userContent.css以使其不使用相同的颜色about:blank

这是我的彩色 CSS about:blank

@-moz-document url-prefix(about:blank)
{
    *
    {
        background-color:      #330000 !important;
    }
}

以下是我尝试修复但未成功的方法(使用以下信息这里):

@-moz-document domain("mail.google.com")
{
    .editable
    {
        background-color: white !important;
    }
}

更新:下面是使用 CSS 后发生的情况的图片about:blank

图像

相关内容