From a36027c734cf1ee3cb04b58fe5865d5b038ca99f Mon Sep 17 00:00:00 2001 From: Samuel Suther Date: Fri, 26 Dec 2025 13:27:09 +0100 Subject: [PATCH] Input field for new cards moved to the top of the column close #6457 Signed-off-by: Samuel Suther --- css/deck.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/css/deck.css b/css/deck.css index d1d92ea97..73158785a 100644 --- a/css/deck.css +++ b/css/deck.css @@ -22,3 +22,11 @@ input[type=text]:focus+input[type=submit].icon-confirm, input[type=text]:hover+input[type=submit].icon-confirm { border-color: var(--color-main-text) !important; } +.app-deck { + .stack__card-add form { + order: 1; + } + .smooth-dnd-container.vertical { + order: 2; + } +}