This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
forked from mastodon/mastodon-android
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
closes #890
- Loading branch information
Showing
5 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
mastodon/src/main/res/drawable/bg_button_m3_tonal_outlined.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ripple xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:color="@color/m3_primary_overlay"> | ||
<item android:gravity="center_vertical" android:height="40dp"> | ||
<selector> | ||
<item android:state_enabled="true"> | ||
<shape> | ||
<solid android:color="?colorM3SecondaryContainer"/> | ||
<stroke android:color="?colorM3OnSecondaryContainer" android:width="1dp"/> | ||
<corners android:radius="20dp"/> | ||
</shape> | ||
</item> | ||
<item> | ||
<shape> | ||
<solid android:color="?colorM3DisabledBackground"/> | ||
<corners android:radius="20dp"/> | ||
</shape> | ||
</item> | ||
</selector> | ||
</item> | ||
<item android:id="@android:id/mask" android:gravity="center_vertical" android:height="40dp"> | ||
<shape> | ||
<solid android:color="#000"/> | ||
<corners android:radius="20dp"/> | ||
</shape> | ||
</item> | ||
</ripple> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters