From 28893cf6371447b048d0a18d03bdb15a43d2b587 Mon Sep 17 00:00:00 2001 From: Martin Filser Date: Mon, 5 Jun 2023 12:58:52 +0200 Subject: [PATCH 1/2] Bugfix, in View "Lists" the first column only showed the first 10 minicards, now all minicards again --- client/components/lists/list.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/components/lists/list.css b/client/components/lists/list.css index 066fda4ca..5b33612da 100644 --- a/client/components/lists/list.css +++ b/client/components/lists/list.css @@ -15,8 +15,10 @@ /*resize: both; - List width and height resizeable */ /* overflow: auto; - List width and height resizeable */ } -.list:first-child { +[id^="swimlane-"] .list:first-child { min-width: 20px; +} +.list:first-child { margin-left: 5px; border-left: none; } From c157ecec3869a1dea55a939e81c265d24459203a Mon Sep 17 00:00:00 2001 From: Martin Filser Date: Wed, 27 Sep 2023 20:48:10 +0200 Subject: [PATCH 2/2] board view, first column to add a new list was too large --- client/components/lists/list.css | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/client/components/lists/list.css b/client/components/lists/list.css index 5b33612da..18bd85cc2 100644 --- a/client/components/lists/list.css +++ b/client/components/lists/list.css @@ -7,19 +7,11 @@ border-left: 1px solid #ccc; padding: 0; float: left; - /* min-width: 100px; TODO(mark-i-m): hardcoded? */ - /*max-width: 270px;*/ - /* Reverted incomplete change list width: */ - /* https://github.com/wekan/wekan/issues/4558 */ - /* Orinal width: 270px. Changes not saved yet: */ - /*resize: both; - List width and height resizeable */ - /* overflow: auto; - List width and height resizeable */ } [id^="swimlane-"] .list:first-child { min-width: 20px; } .list:first-child { - margin-left: 5px; border-left: none; } .card-details + .list { @@ -50,7 +42,7 @@ } .list-header-add { flex: 0 0 auto; - padding: 20px 12px 4px; + padding: 12px; position: relative; min-height: 20px; }