From 66a42e1bbab0050b708e24c4e2521aae8d601410 Mon Sep 17 00:00:00 2001 From: rainbow-bamboo <61608357+rainbow-bamboo@users.noreply.github.com> Date: Thu, 6 Mar 2025 02:46:51 -0500 Subject: [PATCH] Adds edit-history-modal style to account for the macaron theme (#1306) In the macaron theme, the modal that shows you a post's edit history shows up as dark text on a dark background. I added the missing declaration so that now it updates dynamically. Before: ![before-theme-change](https://user-images.githubusercontent.com/61608357/231021054-41a13470-cde2-4f72-95f5-669ac4841233.png) After: ![after-theme-change](https://user-images.githubusercontent.com/61608357/231021236-5207d623-4f07-43e2-9528-981909669e0b.png) Details: v4.0.2+hometown-1.1.1 --- app/javascript/styles/macaron/diff.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/javascript/styles/macaron/diff.scss b/app/javascript/styles/macaron/diff.scss index be4f78a51..bf1e5b618 100644 --- a/app/javascript/styles/macaron/diff.scss +++ b/app/javascript/styles/macaron/diff.scss @@ -545,7 +545,8 @@ body.admin { .report-modal, .embed-modal, .error-modal, -.onboarding-modal { +.onboarding-modal, +.compare-history-modal { background: $ui-base-color; }