瀏覽代碼

Merge pull request #5487 from mfilser/master

little opacity to minicards to see the background image a little bit
Lauri Ojansivu 10 月之前
父節點
當前提交
0bd49326d8
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      client/lib/utils.js

+ 1 - 0
client/lib/utils.js

@@ -6,6 +6,7 @@ Utils = {
     if (currentBoard.backgroundImageURL !== undefined) {
     if (currentBoard.backgroundImageURL !== undefined) {
       $(".board-wrapper").css({"background":"url(" + currentBoard.backgroundImageURL + ")","background-size":"cover"});
       $(".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"});
       $(".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"]) {
     } else if (currentBoard["background-color"]) {
       currentBoard.setColor(currentBoard["background-color"]);
       currentBoard.setColor(currentBoard["background-color"]);
     }
     }