From 2a0f6aead17d05fd35e8a944e5434781e9c08d50 Mon Sep 17 00:00:00 2001 From: miruka Date: Tue, 1 Sep 2020 13:38:30 -0400 Subject: [PATCH] Fix Midnight.qpl stylesheet error from 48663ae Missing `}` in `chat.message.styleSheet` caused some CSS properties to not work (sender name bottom margin, quotes color, no underline for mentions, etc). --- src/themes/Midnight.qpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/themes/Midnight.qpl b/src/themes/Midnight.qpl index 448db393..ce6a17c8 100644 --- a/src/themes/Midnight.qpl +++ b/src/themes/Midnight.qpl @@ -461,7 +461,7 @@ chat: " padding-bottom: " + theme.spacing / 4 + "px } " + "li { margin-top: " + theme.spacing / 2 + "px; " + - " margin-bottom: " + theme.spacing / 2 + "px; " + + " margin-bottom: " + theme.spacing / 2 + "px; }" + ".sender { margin-bottom: " + spacing / 2 + " }" + ".quote { color: " + quote + " }" +