diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2020-08-27 22:21:21 +0000 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2020-09-01 09:53:48 +0000 |
| commit | 4e3f0c8584de8cfcc97c18b21d25f4bee3d4f25e (patch) | |
| tree | 223958a8f9b766ea8b7b47358c30561ccd9dfdf7 /android/src/main | |
| parent | 6630480014888d0dc06dcb382741e7e56e4d325f (diff) | |
| download | mullvadvpn-4e3f0c8584de8cfcc97c18b21d25f4bee3d4f25e.tar.xz mullvadvpn-4e3f0c8584de8cfcc97c18b21d25f4bee3d4f25e.zip | |
Change account input border drawables
Diffstat (limited to 'android/src/main')
| -rw-r--r-- | android/src/main/res/drawable/account_input_border_error.xml | 4 | ||||
| -rw-r--r-- | android/src/main/res/drawable/account_input_border_focused.xml | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/android/src/main/res/drawable/account_input_border_error.xml b/android/src/main/res/drawable/account_input_border_error.xml index d2112104ef..7b0b225c85 100644 --- a/android/src/main/res/drawable/account_input_border_error.xml +++ b/android/src/main/res/drawable/account_input_border_error.xml @@ -1,7 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> - <corners android:radius="@dimen/account_input_corner_radius" /> - <stroke android:width="2dp" - android:color="@color/red" /> + <solid android:color="@color/red" /> </shape> diff --git a/android/src/main/res/drawable/account_input_border_focused.xml b/android/src/main/res/drawable/account_input_border_focused.xml index 551399bb0a..fa32039e1d 100644 --- a/android/src/main/res/drawable/account_input_border_focused.xml +++ b/android/src/main/res/drawable/account_input_border_focused.xml @@ -1,7 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> - <corners android:radius="@dimen/account_input_corner_radius" /> - <stroke android:width="2dp" - android:color="@color/darkBlue" /> + <solid android:color="@color/darkBlue" /> </shape> |
