From 99ce89b144c85ed0e2c12b5defc567bdc76bfe0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Gu=CC=88nther?= Date: Mon, 2 Dec 2024 21:35:05 +0100 Subject: [PATCH] TASK: Hide type around buttons of CKEditor The new type around buttons are not used by the neos ui at the moment and maybe we just dont need them. As the rendered SVGs without styled break the UI, we hide the buttons at the moment. --- .../src/EditorToolbar/TableStyles.vanilla-css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/neos-ui-ckeditor5-bindings/src/EditorToolbar/TableStyles.vanilla-css b/packages/neos-ui-ckeditor5-bindings/src/EditorToolbar/TableStyles.vanilla-css index 293dd772fb..351fe94272 100644 --- a/packages/neos-ui-ckeditor5-bindings/src/EditorToolbar/TableStyles.vanilla-css +++ b/packages/neos-ui-ckeditor5-bindings/src/EditorToolbar/TableStyles.vanilla-css @@ -163,3 +163,10 @@ font-weight:700; background:#fafafa } + +/* The type around buttons has been added in CKEditor and has been not implemented yet in +the neos-ui. We maybe also don't need it at the moment. +*/ +.ck .ck-widget .ck-widget__type-around__button { + display: none; +}