mirror of
https://github.com/TimeCrafters/TimeCraftersConfigurationTool.git
synced 2025-12-16 05:22:35 +00:00
19 lines
775 B
XML
19 lines
775 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item
|
|
android:top="@dimen/button_margin_top"
|
|
android:bottom="@dimen/button_margin_bottom"
|
|
android:left="@dimen/button_margin_left"
|
|
android:right="@dimen/button_margin_right">
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="@color/buttonDangerHover" />
|
|
<corners android:radius="0dp" />
|
|
<padding
|
|
android:top="@dimen/button_padding_top"
|
|
android:bottom="@dimen/button_padding_bottom"
|
|
android:left="@dimen/button_padding_left"
|
|
android:right="@dimen/button_padding_right" />
|
|
</shape>
|
|
</item>
|
|
</layer-list>
|