From 87ba7aa3cc93473f6a2030106161a9df6b93344f Mon Sep 17 00:00:00 2001 From: "Stanko K.R." Date: Sat, 26 Sep 2026 11:16:03 +0200 Subject: [PATCH] Keep the message body list styles out of the mention menu The composer editor carries the lexxy-content class, so the !important list rules for message bodies hit the menu's ul and li too, leaving the items cramped and pushed in from the left. --- app/assets/stylesheets/actiontext.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/actiontext.css b/app/assets/stylesheets/actiontext.css index 06c4b59..6fcd535 100644 --- a/app/assets/stylesheets/actiontext.css +++ b/app/assets/stylesheets/actiontext.css @@ -196,13 +196,14 @@ action-text-attachment[content-type~="application/vnd.actiontext.opengraph-embed color: var(--color-link); } - ul, + /* The composer's mention menu is a list inside the editor too, and keeps Lexxy's own spacing */ + ul:not(.lexxy-prompt-menu), ol { margin: 0 !important; padding: 0 !important; } - li { + li:not(.lexxy-prompt-menu__item) { margin: 0 0 0 var(--inline-space-double) !important; padding: 0 !important; }