From 737ee923111509077c4ab2c901334b8f97aaa4b5 Mon Sep 17 00:00:00 2001 From: Jan Wennrich <jan.wennrich@pcsg.de> Date: Fri, 2 Oct 2020 16:10:18 +0200 Subject: [PATCH] fix: display CKE notifications on the center of the page Previously notifications were displayed too for down on the page. This caused layout issues where the editor disappeared. related: quiqqer/ckeditor4#30 --- bin/Editor.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/bin/Editor.css b/bin/Editor.css index d39a6a8..09c6f03 100644 --- a/bin/Editor.css +++ b/bin/Editor.css @@ -51,4 +51,11 @@ } div.cke_panel.cke_combopanel.cke_ltr { width: 300px !important; } -span.cke_rcombo span.cke_styles a span span.cke_text { width: 150px; } \ No newline at end of file +span.cke_rcombo span.cke_styles a span span.cke_text { width: 150px; } + +.cke_notifications_area { + position: absolute; + top: 50% !important; + left: 50% !important; + z-index: 999999 !important; +} -- GitLab