diff options
author | Fup Duck <fupduck@sacknagel.com> | 2018-01-18 01:57:03 +0100 |
---|---|---|
committer | Fup Duck <fupduck@sacknagel.com> | 2018-01-18 01:57:03 +0100 |
commit | 1ccb2f9e1bcfaf8279ef9576b3bca233e37af61b (patch) | |
tree | 1cd2adc2caadf1a24da4c021e92d5d755044a0f1 /app/src/main/res/values-v21 | |
parent | 20582f79321627257d1b66b22af791e9e22817fd (diff) |
WizardConfiguration theme
* download VPN certificate after loging in (#8813)
* get the new design up to date (#8819)
* fix crash when pressing login (#8817)
* add a loading screen according to design (#8816)
Diffstat (limited to 'app/src/main/res/values-v21')
-rw-r--r-- | app/src/main/res/values-v21/styles.xml | 5 | ||||
-rw-r--r-- | app/src/main/res/values-v21/themes.xml | 24 |
2 files changed, 29 insertions, 0 deletions
diff --git a/app/src/main/res/values-v21/styles.xml b/app/src/main/res/values-v21/styles.xml index fa27ebe8..b42c7554 100644 --- a/app/src/main/res/values-v21/styles.xml +++ b/app/src/main/res/values-v21/styles.xml @@ -26,4 +26,9 @@ <item name="android:colorAccent">@color/accent</item> </style> + <style name="BitmaskButton" parent="android:Widget.Button"> + <item name="android:textAllCaps">true</item> + <item name="android:backgroundTint">@color/colorPrimaryDark</item> + </style> + </resources> diff --git a/app/src/main/res/values-v21/themes.xml b/app/src/main/res/values-v21/themes.xml new file mode 100644 index 00000000..ac62b94c --- /dev/null +++ b/app/src/main/res/values-v21/themes.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<resources> + <style name="BitmaskTheme" parent="Theme.AppCompat.Light.NoActionBar"> + <item name="colorPrimary">@color/colorPrimary</item> + <item name="colorPrimaryDark">@color/colorPrimaryDark</item> + + <item name="textColorError">@color/colorError</item> + + <!-- progressBar color --> + <item name="colorAccent">@color/colorPrimary</item> + + <!-- button and controls --> + <item name="android:buttonStyle">@style/BitmaskButton</item> + <item name="android:colorButtonNormal">@color/colorPrimaryDark</item> + <item name="android:colorControlHighlight">@color/colorPrimaryDark</item> + </style> + + <style name="SplashTheme" parent="Theme.AppCompat.NoActionBar"> + <item name="android:colorPrimary">@color/colorPrimary</item> + <item name="android:colorPrimaryDark">@color/colorPrimary</item> + <item name="android:windowBackground">@drawable/splash_page</item> + </style> + +</resources>
\ No newline at end of file |