delete branch API call Add fork repo info for branch Check if pr is mergeable, show message if not. Use checkbox instead of button make ripple effects work for buttons with enable/disable introduce viewbinding Co-authored-by: 6543 <6543@noreply.gitea.io> Reviewed-on: https://gitea.com/gitnex/GitNex/pulls/496 Reviewed-by: 6543 <6543@noreply.gitea.io>
39 lines
856 B
XML
39 lines
856 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:color="@color/colorPrimaryDark">
|
|
|
|
<item android:id="@android:id/mask">
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
<solid android:color="@color/btnBackground" />
|
|
<corners android:radius="3dp" />
|
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
<item android:id="@android:id/background">
|
|
|
|
<shape android:shape="rectangle">
|
|
|
|
<gradient
|
|
android:angle="90"
|
|
android:endColor="@color/btnBackground"
|
|
android:startColor="@color/btnBackground"
|
|
android:type="linear" />
|
|
|
|
<corners android:radius="3dp" />
|
|
|
|
<padding
|
|
android:top="0dp"
|
|
android:bottom="0dp"
|
|
android:left="10dp"
|
|
android:right="10dp"
|
|
/>
|
|
|
|
</shape>
|
|
|
|
</item>
|
|
|
|
</ripple> |