Commit e836a497 authored by alancnet's avatar alancnet Committed by Nicolas Giard

fix: light background in nested ckeditor unless dark mode (#1372)

parent 1b749e7b
......@@ -179,7 +179,11 @@ $editor-height-mobile: calc(100vh - 56px - 16px);
&.ck .ck-editor__nested-editable:focus,
.ck-widget.table td.ck-editor__nested-editable.ck-editor__nested-editable_focused,
.ck-widget.table th.ck-editor__nested-editable.ck-editor__nested-editable_focused {
background-color: mc('grey', '900');
background-color: mc('grey', '100');
@at-root .theme--dark & {
background-color: mc('grey', '900');
}
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment