From 3dcf20ab6f59e72271fd84271884893c754b6d26 Mon Sep 17 00:00:00 2001 From: Felix Eckhofer Date: Thu, 22 Jan 2026 18:27:29 +0100 Subject: [PATCH] fix: diagram svg styling add `!important` qualifier for light scheme (#7905) This is required, because the element has an inline style with `color-scheme: light dark`, which has higher specificity than our css rule. --- client/themes/default/scss/app.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/themes/default/scss/app.scss b/client/themes/default/scss/app.scss index de822dc4..88380963 100644 --- a/client/themes/default/scss/app.scss +++ b/client/themes/default/scss/app.scss @@ -766,7 +766,7 @@ overflow: auto; svg { - color-scheme: light; + color-scheme: light !important; &:first-child { direction: ltr;