fedilab-Android-App/app/src/main/res/drawable-v19/block_quote_background.xml

15 lines
471 B
XML

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<solid android:color="@color/blue" />
<size android:width="5dp" />
</shape>
</item>
<!-- draw another block to cut-off the left and right bars -->
<item android:left="5.0dp">
<shape>
<solid android:color="@color/light_blue" />
</shape>
</item>
</layer-list>