From 2407b02383579a0a5a1e47ab0a0577a1d3dd8dbd Mon Sep 17 00:00:00 2001 From: Darius Kazemi Date: Sun, 8 May 2022 10:40:09 -0700 Subject: [PATCH] Fix Macaron theme The modal for reporting a post calculates its value based on $ui-secondary-color. In most themes that is the correct calculation to make, but in Macaron our colors are assigned a little differently and this makes the modal unusable. Setting it to white fixes the issue. --- app/javascript/styles/macaron/diff.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/javascript/styles/macaron/diff.scss b/app/javascript/styles/macaron/diff.scss index 6600c7717..6a68da685 100644 --- a/app/javascript/styles/macaron/diff.scss +++ b/app/javascript/styles/macaron/diff.scss @@ -1095,3 +1095,7 @@ a.status-card.compact:hover { .audio-player .video-player__time-total { color: $ui-primary-color; } + +.report-dialog-modal { + background: $white; +}