From 374309a40c0376050441bd4e2a384176cad4edb7 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 17 Jun 2025 19:16:32 +0300 Subject: [PATCH] fix(templates): description displayed on separate lines --- apps/client/src/stylesheets/style.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/apps/client/src/stylesheets/style.css b/apps/client/src/stylesheets/style.css index 38514e8ad..9b83c37fe 100644 --- a/apps/client/src/stylesheets/style.css +++ b/apps/client/src/stylesheets/style.css @@ -1280,16 +1280,19 @@ body:not(.mobile) #launcher-pane.horizontal .dropdown-submenu > .dropdown-menu { padding: 0.5em 1em !important; } -.ck.ck-slash-command-button__text-part { +.ck.ck-slash-command-button__text-part, +.ck.ck-template-form__text-part { margin-left: 0.5em; line-height: 1.2em !important; } -.ck.ck-slash-command-button__text-part > span { +.ck.ck-slash-command-button__text-part > span, +.ck.ck-template-form__text-part > span { line-height: inherit !important; } -.ck.ck-slash-command-button__text-part .ck.ck-slash-command-button__description { +.ck.ck-slash-command-button__text-part .ck.ck-slash-command-button__description, +.ck.ck-template-form__text-part .ck-template-form__description { display: block; opacity: 0.8; }