From 3ae0d967601856be7f3bb18bd074151f805959eb Mon Sep 17 00:00:00 2001 From: Martin Filser Date: Mon, 5 Jun 2023 12:23:23 +0200 Subject: [PATCH] little opacity to minicards to see the background image a little bit --- client/lib/utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client/lib/utils.js b/client/lib/utils.js index d204b3a0b..15896e5c3 100644 --- a/client/lib/utils.js +++ b/client/lib/utils.js @@ -6,6 +6,7 @@ Utils = { if (currentBoard.backgroundImageURL !== undefined) { $(".board-wrapper").css({"background":"url(" + currentBoard.backgroundImageURL + ")","background-size":"cover"}); $(".swimlane,.swimlane .list,.swimlane .list .list-body,.swimlane .list:first-child .list-body").css({"background-color":"transparent"}); + $(".minicard").css({"opacity": "0.9"}); } else if (currentBoard["background-color"]) { currentBoard.setColor(currentBoard["background-color"]); }