fix(templates): description displayed on separate lines

This commit is contained in:
Elian Doran 2025-06-17 19:16:32 +03:00
parent dcccb5ad30
commit 374309a40c
No known key found for this signature in database

View File

@ -1280,16 +1280,19 @@ body:not(.mobile) #launcher-pane.horizontal .dropdown-submenu > .dropdown-menu {
padding: 0.5em 1em !important; 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; margin-left: 0.5em;
line-height: 1.2em !important; 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; 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; display: block;
opacity: 0.8; opacity: 0.8;
} }