From 2cd114e14cfc798cada0f5a5367bba0c7ac8568e Mon Sep 17 00:00:00 2001
From: Robert Goldmann <deadlocker@gmx.de>
Date: Sat, 2 Mar 2019 16:20:44 +0100
Subject: [PATCH] Fixed #406 - dark theme: import database select text color is
 still black

---
 src/main/resources/templates/settings/import.ftl | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/src/main/resources/templates/settings/import.ftl b/src/main/resources/templates/settings/import.ftl
index 991b282ec..44e1c8a1a 100644
--- a/src/main/resources/templates/settings/import.ftl
+++ b/src/main/resources/templates/settings/import.ftl
@@ -29,13 +29,15 @@
                                     <td class="account-source">${accountMatch.getAccountSource().getName()}</td>
                                     <td class="import-text">${locale.getString("info.database.import.destination")}</td>
                                     <td>
-                                        <select class="account-destination">
-                                            <#list availableAccounts as account>
-                                                <#if (account.getType().name() == "CUSTOM")>
-                                                    <option value="${account.getID()?c}">${account.getName()}</option>
-                                                </#if>
-                                            </#list>
-                                        </select>
+                                        <div class="input-field no-margin">
+                                            <select class="account-destination">
+                                                <#list availableAccounts as account>
+                                                    <#if (account.getType().name() == "CUSTOM")>
+                                                        <option value="${account.getID()?c}">${account.getName()}</option>
+                                                    </#if>
+                                                </#list>
+                                            </select>
+                                        </div>
                                     </td>
                                     <td class="import-text">${locale.getString("info.database.import.or")}</td>
                                     <td>
-- 
GitLab