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/darkgreen" />
|
|
|
|
<padding
|
|
android:bottom="1dp"
|
|
android:left="1dp"
|
|
android:right="1dp"
|
|
android:top="1dp" />
|
|
|
|
<corners
|
|
android:bottomLeftRadius="13dp"
|
|
android:bottomRightRadius="13dp"
|
|
android:topLeftRadius="13dp"
|
|
android:topRightRadius="13dp" />
|
|
</shape>
|
|
</item>
|
|
<item>
|
|
<shape android:shape="rectangle" >
|
|
<stroke
|
|
android:width="1dp"
|
|
android:color="@color/lightgreen" />
|
|
|
|
<gradient
|
|
android:angle="270"
|
|
android:endColor="@color/darkgreen"
|
|
android:startColor="@color/lightgreen" />
|
|
|
|
<corners
|
|
android:bottomLeftRadius="12dp"
|
|
android:bottomRightRadius="12dp"
|
|
android:topLeftRadius="12dp"
|
|
android:topRightRadius="12dp" />
|
|
</shape>
|
|
</item>
|
|
|
|
</layer-list> |