From 75bd03877d69ddd2c68da6aee6b7eb07e3d883df Mon Sep 17 00:00:00 2001 From: Robert Goldmann <deadlocker@gmx.de> Date: Sun, 23 Apr 2023 17:38:19 +0200 Subject: [PATCH] Fixed #741 - csv import: show horizontal scrollbar on table start when associating columns --- .../src/main/resources/static/css/transactionImport.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BudgetMasterServer/src/main/resources/static/css/transactionImport.css b/BudgetMasterServer/src/main/resources/static/css/transactionImport.css index b25359846..5a298f838 100644 --- a/BudgetMasterServer/src/main/resources/static/css/transactionImport.css +++ b/BudgetMasterServer/src/main/resources/static/css/transactionImport.css @@ -2,6 +2,11 @@ overflow: auto; width: 90%; margin: auto; + transform: rotateX(180deg); /* hack to bring the horizontal scrollbar to the top*/ +} + +#transaction-import-overview > table { + transform: rotateX(180deg); /* hack to bring the horizontal scrollbar to the top*/ } .transaction-import-text-with-icon { -- GitLab