mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
40 lines
No EOL
1.2 KiB
XML
40 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
<item>
|
|
<shape android:shape="rectangle" >
|
|
<solid android:color="@color/darkorange" />
|
|
|
|
<padding
|
|
android:bottom="1dp"
|
|
android:left="1dp"
|
|
android:right="1dp"
|
|
android:top="1dp" />
|
|
|
|
<corners
|
|
android:bottomLeftRadius="4dp"
|
|
android:bottomRightRadius="4dp"
|
|
android:topLeftRadius="4dp"
|
|
android:topRightRadius="4dp" />
|
|
</shape>
|
|
</item>
|
|
<item>
|
|
<shape android:shape="rectangle" >
|
|
<stroke
|
|
android:width="1dp"
|
|
android:color="@color/lightorange" />
|
|
|
|
<gradient
|
|
android:angle="90"
|
|
android:endColor="@color/lightorange"
|
|
android:startColor="@color/darkorange" />
|
|
|
|
<corners
|
|
android:bottomLeftRadius="3dp"
|
|
android:bottomRightRadius="3dp"
|
|
android:topLeftRadius="3dp"
|
|
android:topRightRadius="3dp" />
|
|
</shape>
|
|
</item>
|
|
|
|
</layer-list> |