From 9b729e20ce42bc2852d91f7c4d07d2f8a4b586d7 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 3 Oct 2024 12:35:46 +0200 Subject: [PATCH] NEW Look and feel v21 Toolbar for WYSIWIG editor is short on smartphone --- htdocs/theme/eldy/global.inc.php | 10 ++++++++++ htdocs/theme/md/style.css.php | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php index 216ff9b608681..b35c151931880 100644 --- a/htdocs/theme/eldy/global.inc.php +++ b/htdocs/theme/eldy/global.inc.php @@ -6266,6 +6266,16 @@ visibility: hidden; } +/* CSS To hide the picto menu on smartphone, except when maximize */ +@media only screen and (max-width: 768px) +{ + .cke_inner:not(.cke_maximized) .cke_toolbar_separator, + .cke_inner:not(.cke_maximized) .cke_combo, + .cke_inner:not(.cke_maximized) .cke_button:not(.cke_button__maximize) { + display: none; + } +} + /* ============================================================================== */ /* ACE editor */ diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php index fc5c7ab6f0949..a722b6366995e 100644 --- a/htdocs/theme/md/style.css.php +++ b/htdocs/theme/md/style.css.php @@ -6240,6 +6240,16 @@ visibility: hidden; } +/* CSS To hide the picto menu on smartphone, except when maximize */ +@media only screen and (max-width: 768px) +{ + .cke_inner:not(.cke_maximized) .cke_toolbar_separator, + .cke_inner:not(.cke_maximized) .cke_combo, + .cke_inner:not(.cke_maximized) .cke_button:not(.cke_button__maximize) { + display: none; + } +} + /* ============================================================================== */ /* ACE editor */