From dfee4d73c5063e6e58cd7aa5724e7e85cc1840a8 Mon Sep 17 00:00:00 2001 From: AarDG10 Date: Sun, 15 Mar 2026 16:44:42 +0530 Subject: [PATCH] fix(UI): fix previous changes to hover effect and make title width 100% Co-authored-by: Suraj Shetty --- frappe/public/scss/desk/kanban.scss | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/frappe/public/scss/desk/kanban.scss b/frappe/public/scss/desk/kanban.scss index be04f987f0..2e1a72d593 100644 --- a/frappe/public/scss/desk/kanban.scss +++ b/frappe/public/scss/desk/kanban.scss @@ -186,7 +186,8 @@ .kanban-title-area { margin-bottom: 12px; - max-width: 90%; + width: 100%; + max-width: 100%; font-size: var(--text-md); font-weight: 500; @@ -377,8 +378,15 @@ z-index: 1001; } - .kanban-cards { - overflow: visible !important; + .kanban-card-wrapper:first-child { + .hidden-tags { + bottom: auto; + top: 65%; + } + + &:hover .hidden-tags { + transform: translateX(-50%) translateY(5px); + } } }