From a3622ddc1d376d5e75e8052e4048afcd47273c7e Mon Sep 17 00:00:00 2001 From: Vid Smole Date: Thu, 6 Jul 2023 12:57:06 +0200 Subject: [PATCH 1/2] Display card title in bold --- client/components/cards/minicard.jade | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/components/cards/minicard.jade b/client/components/cards/minicard.jade index 503dd576f..536e94f42 100644 --- a/client/components/cards/minicard.jade +++ b/client/components/cards/minicard.jade @@ -49,7 +49,8 @@ template(name="minicard") if currentBoard.allowsCardNumber span.card-number | ##{getCardNumber} - = getTitle + b + = getTitle if $eq 'subtext-with-full-path' currentBoard.presentParentTask .parent-subtext | {{ parentString ' > ' }} From 492306453c199ed9fe8bfbe47437808601de0f65 Mon Sep 17 00:00:00 2001 From: Vid Smole Date: Thu, 6 Jul 2023 13:22:15 +0200 Subject: [PATCH 2/2] Fix first list being narrower than others --- client/components/lists/list.css | 1 - 1 file changed, 1 deletion(-) diff --git a/client/components/lists/list.css b/client/components/lists/list.css index 5e503a4d7..c328577be 100644 --- a/client/components/lists/list.css +++ b/client/components/lists/list.css @@ -16,7 +16,6 @@ /* overflow: auto; - List width and height resizeable */ } .list:first-child { - min-width: 20px; margin-left: 5px; border-left: none; }