little opacity to minicards to see the background image a little bit

This commit is contained in:
Martin Filser 2023-06-05 12:23:23 +02:00
parent fc1e55cc19
commit 3ae0d96760

View file

@ -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"]);
}