Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Niedermann <info@niedermann.it>2020-04-28 19:47:12 +0300
committerStefan Niedermann <info@niedermann.it>2020-04-28 19:47:12 +0300
commitafc19e8928c4ac60df15bdf2f6215f071d2b57ae (patch)
tree688e8ea6f43524b970a47446ece59df96682f9af /app/src/main/res/drawable
parent46d4c2cfd5487600eb6b84aa042d72f5c233f7af (diff)
Fix #433 Separate overlapping avatars with 2dp
Diffstat (limited to 'app/src/main/res/drawable')
-rw-r--r--app/src/main/res/drawable/avatar_border.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/avatar_border.xml b/app/src/main/res/drawable/avatar_border.xml
new file mode 100644
index 000000000..ba23af2bd
--- /dev/null
+++ b/app/src/main/res/drawable/avatar_border.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android"
+ android:shape="rectangle">
+ <corners android:radius="@dimen/avatar_size_small_overlapping" />
+ <stroke
+ android:width="@dimen/avatar_size_small_overlapping_border"
+ android:color="?attr/colorSurface" />
+</shape> \ No newline at end of file