summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-09-04 18:06:06 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-09-21 15:28:41 +0000
commit79ac5d4b934afac83b9a9e4db111a38e6964f188 (patch)
treede2b1811b3cd13f8461a71c5a9ebcecf9bd0be94 /android
parent06056c5319aa3aa2111073519f636fe4343db7ab (diff)
downloadmullvadvpn-79ac5d4b934afac83b9a9e4db111a38e6964f188.tar.xz
mullvadvpn-79ac5d4b934afac83b9a9e4db111a38e6964f188.zip
Change account history background
Diffstat (limited to 'android')
-rw-r--r--android/src/main/res/drawable/account_history_background.xml18
-rw-r--r--android/src/main/res/layout/account_history_entry.xml1
-rw-r--r--android/src/main/res/layout/account_login.xml3
3 files changed, 2 insertions, 20 deletions
diff --git a/android/src/main/res/drawable/account_history_background.xml b/android/src/main/res/drawable/account_history_background.xml
deleted file mode 100644
index 596eb2d43d..0000000000
--- a/android/src/main/res/drawable/account_history_background.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
- <item>
- <shape xmlns:android="http://schemas.android.com/apk/res/android">
- <corners android:radius="@dimen/account_login_corner_radius" />
- <solid android:color="@color/darkBlue" />
- </shape>
- </item>
- <item android:top="0dp"
- android:right="1dp"
- android:bottom="1dp"
- android:left="1dp">
- <shape xmlns:android="http://schemas.android.com/apk/res/android">
- <corners android:radius="@dimen/account_login_corner_radius" />
- <solid android:color="@color/white" />
- </shape>
- </item>
-</layer-list>
diff --git a/android/src/main/res/layout/account_history_entry.xml b/android/src/main/res/layout/account_history_entry.xml
index eb5044bcf7..7a3bafa3b4 100644
--- a/android/src/main/res/layout/account_history_entry.xml
+++ b/android/src/main/res/layout/account_history_entry.xml
@@ -5,6 +5,7 @@
<TextView android:id="@+id/account_history_entry_text_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
+ android:background="@color/white60"
android:paddingHorizontal="12dp"
android:gravity="center_vertical"
android:textColor="@color/blue"
diff --git a/android/src/main/res/layout/account_login.xml b/android/src/main/res/layout/account_login.xml
index 685cfbe453..43d76c89e6 100644
--- a/android/src/main/res/layout/account_login.xml
+++ b/android/src/main/res/layout/account_login.xml
@@ -14,6 +14,5 @@
android:layout_height="wrap_content"
android:layout_below="@id/input"
android:divider="@drawable/account_history_list_divider"
- android:dividerHeight="@dimen/account_history_divider"
- android:background="@drawable/account_history_background" />
+ android:dividerHeight="@dimen/account_history_divider" />
</merge>