From fca44cafc4183836a444542b8ec978e1bb0ef9a8 Mon Sep 17 00:00:00 2001
From: Robert Goldmann <deadlocker@gmx.de>
Date: Tue, 19 Feb 2019 22:16:49 +0100
Subject: [PATCH] #293 - dark theme

---
 src/main/resources/languages/_de.properties   |  2 --
 src/main/resources/static/css/dark/style.css  | 25 ++++++++++++++++---
 .../resources/templates/filter/filter.ftl     |  2 +-
 3 files changed, 22 insertions(+), 7 deletions(-)

diff --git a/src/main/resources/languages/_de.properties b/src/main/resources/languages/_de.properties
index 0f3620dcd..4e0791fa6 100644
--- a/src/main/resources/languages/_de.properties
+++ b/src/main/resources/languages/_de.properties
@@ -192,8 +192,6 @@ datepicker.label.month=Monat:
 datepicker.label.year=Jahr:
 datepicker.button.confirm=�bernehmen
 
-report.generate=Bericht erzeugen
-
 # ABOUT
 about=�ber {0}
 about.roadmap.link=Roadmap �ffnen
diff --git a/src/main/resources/static/css/dark/style.css b/src/main/resources/static/css/dark/style.css
index 551ce4c39..0bf618662 100644
--- a/src/main/resources/static/css/dark/style.css
+++ b/src/main/resources/static/css/dark/style.css
@@ -44,7 +44,7 @@ main {
 }
 
 .budgetmaster-green-text {
-   color: #5cb85c;
+    color: #5cb85c;
 }
 
 .budgetmaster-dark-green {
@@ -60,7 +60,7 @@ main {
 }
 
 .budgetmaster-red-text {
-   color: #D82C29;
+    color: #D82C29;
 }
 
 .budgetmaster-orange {
@@ -115,7 +115,7 @@ main {
     width: 350px;
 }
 
-.sidenav, .sidenav-sub{
+.sidenav, .sidenav-sub {
     background-color: #444444;
 }
 
@@ -129,7 +129,7 @@ main {
     color: #FFFFFF !important;
 }
 
-.sidenav li > a > i, .sidenav-sub li > a > i{
+.sidenav li > a > i, .sidenav-sub li > a > i {
     color: #FFFFFF !important;
 }
 
@@ -529,6 +529,23 @@ input[type="radio"]:not(:checked) + span::before, [type="radio"]:not(:checked) +
     width: 50%;
 }
 
+.collapsible {
+    border-top: 1px solid #666666;
+    border-right: 1px solid #666666;
+    border-left: 1px solid #666666;
+}
+
+.collapsible-header {
+    background-color: #999999;
+    color: #212121;
+    border-bottom: 1px solid #666666;
+}
+
+.collapsible-body {
+    background-color: #565656;
+    border-bottom: 1px solid #666666;
+}
+
 .no-border-table tr {
     border: none;
 }
diff --git a/src/main/resources/templates/filter/filter.ftl b/src/main/resources/templates/filter/filter.ftl
index 614576fe5..c73cf9297 100644
--- a/src/main/resources/templates/filter/filter.ftl
+++ b/src/main/resources/templates/filter/filter.ftl
@@ -20,7 +20,7 @@
 
                         <div class="row">
                             <div class="s12">
-                                <ul class="collapsible" id="filterSettings">
+                                <ul class="collapsible z-depth-2" id="filterSettings">
                                     <li id="section-type">
                                         <div class="collapsible-header">
                                             <i class="fas fa-piggy-bank"></i>
-- 
GitLab