Inserting the attributes "rankingCircleSelected" and "rankingCircleNotSelected".

Is identical to "rankingStarSelected" but the new element is not a star.
In addition, the color is adjusted in the colors.xml
This commit is contained in:
ErikWaegerle 2020-07-22 01:39:16 +02:00
parent b91ea693d9
commit 5668b2a33f
2 changed files with 4 additions and 0 deletions

View file

@ -8,6 +8,8 @@
<attr name="winScreenFontColor" format="color"/> <attr name="winScreenFontColor" format="color"/>
<attr name="backgroundSurroundingDialog" format="color"/> <attr name="backgroundSurroundingDialog" format="color"/>
<attr name="rankingStarSelected" format="color"/> <attr name="rankingStarSelected" format="color"/>
<attr name="rankingCircleSelected" format="color"/>
<attr name="rankingCircleNotSelected" format="color"/>
<attr name="rankingStarNotSelected" format="color"/> <attr name="rankingStarNotSelected" format="color"/>
<attr name="inactiveButtonColor" format="color"/> <attr name="inactiveButtonColor" format="color"/>
<attr name="activeButtonColor" format="color"/> <attr name="activeButtonColor" format="color"/>

View file

@ -13,6 +13,8 @@
<item name="winScreenFontColor">@color/white</item> <item name="winScreenFontColor">@color/white</item>
<item name="backgroundSurroundingDialog">@color/transparent</item> <item name="backgroundSurroundingDialog">@color/transparent</item>
<item name="rankingStarSelected">@color/lightblue</item> <item name="rankingStarSelected">@color/lightblue</item>
<item name="rankingCircleSelected">@color/lightblue</item>
<item name="rankingCircleNotSelected">@color/middlegrey</item>
<item name="rankingStarNotSelected">@color/middlegrey</item> <item name="rankingStarNotSelected">@color/middlegrey</item>
<item name="activeButtonColor">@color/lightblue</item> <item name="activeButtonColor">@color/lightblue</item>
<item name="inactiveButtonColor">@color/middlegrey</item> <item name="inactiveButtonColor">@color/middlegrey</item>