aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/drawable/rounded_rectangle_primary.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2017-02-08 21:24:46 +0100
committerChristian Schneppe <christian@pix-art.de>2017-02-08 21:24:46 +0100
commit692e0b3455635b9a97a98890b9a2484c019c7c26 (patch)
treeae7aa9e48812175573d8af70760460a9ed7331dc /src/main/res/drawable/rounded_rectangle_primary.xml
parenta8d81dc839f6410ebafca463a785d44e1d3ea8bb (diff)
show number of failed uploads in chat list in red bubbles
Diffstat (limited to 'src/main/res/drawable/rounded_rectangle_primary.xml')
-rw-r--r--src/main/res/drawable/rounded_rectangle_primary.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/res/drawable/rounded_rectangle_primary.xml b/src/main/res/drawable/rounded_rectangle_primary.xml
new file mode 100644
index 000000000..3a32aa8e5
--- /dev/null
+++ b/src/main/res/drawable/rounded_rectangle_primary.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+
+<item>
+ <shape android:shape="rectangle">
+ <padding
+ android:bottom="2dp"
+ android:left="2dp"
+ android:right="2dp"
+ android:top="2dp" />
+ <solid android:color="@color/primary" />
+ <corners android:radius="6dp" />
+ </shape>
+</item>
+
+</layer-list> \ No newline at end of file