This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 496
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix cards background colors. (#5705)
- Loading branch information
1 parent
6fa50df
commit 42fc52e
Showing
3 changed files
with
24 additions
and
8 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
Corona-Warn-App/src/main/res/drawable/dispatcher_card_background.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,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ripple xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:color="?android:attr/colorControlHighlight"> | ||
<item android:id="@android:id/mask"> | ||
<shape android:shape="rectangle"> | ||
<solid android:color="@color/colorSurface2Pressed" /> | ||
<corners android:radius="@dimen/radius_card" /> | ||
</shape> | ||
</item> | ||
<item> | ||
<shape android:shape="rectangle"> | ||
<corners android:radius="@dimen/radius_card" /> | ||
<solid android:color="@color/colorSurface2" /> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<ripple xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:color="?android:attr/colorControlHighlight"> | ||
<ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="?android:attr/colorControlHighlight"> | ||
<item android:id="@android:id/mask"> | ||
<shape android:shape="rectangle"> | ||
<solid android:color="@color/colorSurface2Pressed" /> | ||
<corners android:radius="@dimen/radius_card" /> | ||
<solid android:color="@color/colorSurface2Pressed"/> | ||
<corners android:radius="@dimen/radius_card"/> | ||
</shape> | ||
</item> | ||
<item> | ||
<shape android:shape="rectangle"> | ||
<corners android:radius="@dimen/radius_card" /> | ||
<solid android:color="@color/colorSurface2" /> | ||
<corners android:radius="@dimen/radius_card"/> | ||
<solid android:color="@color/colorCertificateCards"/> | ||
<stroke android:width="1dp" android:color="@color/colorPersonOverviewQrCardBorder"/> | ||
</shape> | ||
</item> | ||
</ripple> | ||
</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