From 3bd7742d20f295cbfb7204792ae00a1a24662aeb Mon Sep 17 00:00:00 2001 From: ansuz Date: Thu, 11 Jun 2020 12:44:12 -0400 Subject: [PATCH] hide the kanban trash bar when it isn't in use --- www/kanban/app-kanban.less | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/www/kanban/app-kanban.less b/www/kanban/app-kanban.less index a5eca13f4..880b1dd0b 100644 --- a/www/kanban/app-kanban.less +++ b/www/kanban/app-kanban.less @@ -421,14 +421,21 @@ } } #kanban-trash { - height: 60px; - font-size: 40px; + height: 0px; + font-size: 0px; + transition: height 400ms, font-size 400ms; + display: flex; align-items: center; justify-content: center; position: relative; width: 100%; //pointer-events: none; + + &.kanban-trash-active, &.kanban-trash-suggest { + height: 60px; + font-size: 40px; + } i { position: fixed; }