summaryrefslogtreecommitdiff
path: root/app/src/main/res/drawable/cust_button_primary_pressed.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_pressed.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_pressed.xml')
-rw-r--r--app/src/main/res/drawable/cust_button_primary_pressed.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/cust_button_primary_pressed.xml b/app/src/main/res/drawable/cust_button_primary_pressed.xml
new file mode 100644
index 00000000..012631e7
--- /dev/null
+++ b/app/src/main/res/drawable/cust_button_primary_pressed.xml
@@ -0,0 +1,10 @@
+<?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" />
+ <padding android:left="8dp" android:right="8dp"/>
+ <solid android:color="@color/colorPrimaryDark"/>
+ </shape>
+ </item>
+</layer-list> \ No newline at end of file