From f91f4340b866126f3e8fa2636cd08a5b2dcf07fe Mon Sep 17 00:00:00 2001
From: Eike Kettner <eike.kettner@posteo.de>
Date: Sun, 11 Apr 2021 20:38:00 +0200
Subject: [PATCH] Fix scanmailbox form layout

---
 .../src/main/elm/Comp/ScanMailboxForm.elm     | 34 +++++++++----------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/modules/webapp/src/main/elm/Comp/ScanMailboxForm.elm b/modules/webapp/src/main/elm/Comp/ScanMailboxForm.elm
index 690701c4..1e5449f0 100644
--- a/modules/webapp/src/main/elm/Comp/ScanMailboxForm.elm
+++ b/modules/webapp/src/main/elm/Comp/ScanMailboxForm.elm
@@ -883,22 +883,6 @@ viewGeneral2 texts settings model =
             [ text texts.mailbox
             , B.inputRequired
             ]
-        , div [ class "mb-4" ]
-            [ label [ class S.inputLabel ]
-                [ text texts.summary
-                ]
-            , input
-                [ type_ "text"
-                , onInput SetSummary
-                , class S.textInput
-                , Maybe.withDefault "" model.summary
-                    |> value
-                ]
-                []
-            , span [ class "opacity-50 text-sm" ]
-                [ text texts.summaryInfo
-                ]
-            ]
         , Html.map ConnMsg
             (Comp.Dropdown.view2
                 connectionCfg
@@ -909,6 +893,22 @@ viewGeneral2 texts settings model =
             [ text texts.connectionInfo
             ]
         ]
+    , div [ class "mb-4" ]
+        [ label [ class S.inputLabel ]
+            [ text texts.summary
+            ]
+        , input
+            [ type_ "text"
+            , onInput SetSummary
+            , class S.textInput
+            , Maybe.withDefault "" model.summary
+                |> value
+            ]
+            []
+        , span [ class "opacity-50 text-sm" ]
+            [ text texts.summaryInfo
+            ]
+        ]
     ]
 
 
@@ -924,7 +924,7 @@ viewProcessing2 texts model =
                 model.folders
                 model.foldersModel
             )
-        , span [ class "opacity-50 text-sm mt-1" ]
+        , span [ class "opacity-50 text-sm" ]
             [ text texts.foldersInfo
             ]
         ]