From 2f70894493fc78bfde4801a8bf1189c3516235da Mon Sep 17 00:00:00 2001
From: Damyan Ivanov <dam+mobileledger@ktnx.net>
Date: Sat, 12 Jan 2019 14:18:34 +0000
Subject: [PATCH] tinted color for the day/month delimiters

---
 app/src/main/res/drawable/dashed_border_1dp.xml  | 4 ++--
 app/src/main/res/drawable/dashed_border_8dp.xml  | 2 +-
 app/src/main/res/layout/transaction_list_row.xml | 2 ++
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/app/src/main/res/drawable/dashed_border_1dp.xml b/app/src/main/res/drawable/dashed_border_1dp.xml
index 25016e18..b4ff7f4a 100644
--- a/app/src/main/res/drawable/dashed_border_1dp.xml
+++ b/app/src/main/res/drawable/dashed_border_1dp.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?><!--
-  ~ Copyright © 2018 Damyan Ivanov.
+  ~ Copyright © 2019 Damyan Ivanov.
   ~ This file is part of Mobile-Ledger.
   ~ Mobile-Ledger is free software: you can distribute it and/or modify it
   ~ under the term of the GNU General Public License as published by
@@ -21,7 +21,7 @@
     android:tint="@color/header_border">
     <stroke
         android:width="1dp"
-        android:color="@color/colorPrimaryDark"
+        android:color="@color/header_border"
         android:dashWidth="2dp"
         android:dashGap="6dp" />
 
diff --git a/app/src/main/res/drawable/dashed_border_8dp.xml b/app/src/main/res/drawable/dashed_border_8dp.xml
index c77f8d8e..f8868de3 100644
--- a/app/src/main/res/drawable/dashed_border_8dp.xml
+++ b/app/src/main/res/drawable/dashed_border_8dp.xml
@@ -21,7 +21,7 @@
     android:tint="@color/header_border">
     <stroke
         android:width="8dp"
-        android:color="@color/colorPrimaryDark"
+        android:color="@color/header_border"
         android:dashWidth="16dp"
         android:dashGap="8dp" />
 
diff --git a/app/src/main/res/layout/transaction_list_row.xml b/app/src/main/res/layout/transaction_list_row.xml
index 256ebb24..f82cf48c 100644
--- a/app/src/main/res/layout/transaction_list_row.xml
+++ b/app/src/main/res/layout/transaction_list_row.xml
@@ -157,6 +157,7 @@
             android:layout_width="wrap_content"
             android:layout_height="match_parent"
             android:text="---------"
+            android:textColor="@color/header_border"
             android:textStyle="bold"
             app:layout_constraintStart_toStartOf="parent"
             tools:ignore="HardcodedText" />
@@ -166,6 +167,7 @@
             android:layout_width="wrap_content"
             android:layout_height="match_parent"
             android:text="--.--.----"
+            android:textColor="@color/header_border"
             android:textStyle="bold"
             app:layout_constraintEnd_toEndOf="parent"
             tools:ignore="HardcodedText" />
-- 
2.39.5