summaryrefslogtreecommitdiff
path: root/app/src/main/res/drawable/cust_button_primary_released.xml
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2019-07-11 11:14:20 +0200
committercyBerta <cyberta@riseup.net>2019-07-11 11:14:20 +0200
commitcc024ad84e29b9dac837ef9ee2fc45125f47c463 (patch)
tree21c90b154c967ab5a868b00056094c07a6751eb9 /app/src/main/res/drawable/cust_button_primary_released.xml
parentdbef6cf67f3b4b31a806564a04a18a77ab636eb1 (diff)
add little elevation to custom buttons, change general button shape to custom button shape
Diffstat (limited to 'app/src/main/res/drawable/cust_button_primary_released.xml')
-rw-r--r--app/src/main/res/drawable/cust_button_primary_released.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/cust_button_primary_released.xml b/app/src/main/res/drawable/cust_button_primary_released.xml
new file mode 100644
index 00000000..b9c2020f
--- /dev/null
+++ b/app/src/main/res/drawable/cust_button_primary_released.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
+ <item>
+ <shape android:shape="rectangle" >
+ <corners android:radius="50dp" />
+ <solid android:color="@color/colorPrimary_transparent"/>
+ </shape>
+ </item>
+ <item
+ android:bottom="@dimen/button_bevel"
+ >
+ <shape android:shape="rectangle" >
+ <corners android:radius="50dp" />
+ <padding android:right="2dp"/>
+ <padding android:left="8dp" android:right="8dp"/>
+ <solid android:color="@color/colorPrimary"/>
+ </shape>
+ </item>
+</layer-list> \ No newline at end of file