Browse Source

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

pull/1395/head
alancnet 4 years ago
committed by Nicolas Giard
parent
commit
e836a49776
1 changed files with 5 additions and 1 deletions
  1. 6
      client/components/editor/editor-ckeditor.vue

6
client/components/editor/editor-ckeditor.vue

@ -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');
}
}
}
}

Loading…
Cancel
Save