mirror of
https://github.com/wekan/wekan.git
synced 2025-12-18 00:10:13 +01:00
don't set background image in .board-canvas too
This commit is contained in:
parent
1dea1bd09d
commit
3641a8f389
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ Utils = {
|
||||||
setBackgroundImage(url) {
|
setBackgroundImage(url) {
|
||||||
const currentBoard = Utils.getCurrentBoard();
|
const currentBoard = Utils.getCurrentBoard();
|
||||||
if (currentBoard.backgroundImageURL !== undefined) {
|
if (currentBoard.backgroundImageURL !== undefined) {
|
||||||
$(".board-wrapper,.board-wrapper .board-canvas").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"});
|
||||||
} else if (currentBoard.color !== undefined) {
|
} else if (currentBoard.color !== undefined) {
|
||||||
currentBoard.setColor(currentBoard.color);
|
currentBoard.setColor(currentBoard.color);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue