mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
Armoire drop rate sheet ui fixes
This commit is contained in:
parent
bdc1afce52
commit
12d0a00efc
4 changed files with 22 additions and 8 deletions
|
|
@ -9,9 +9,9 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/enchanted_armoire_drop_rates"
|
||||
style="@style/Title1"
|
||||
style="@style/ArmoireTitleTextView"
|
||||
android:gravity="center_horizontal"
|
||||
android:textAlignment="center"
|
||||
android:textColor="@color/text_primary"
|
||||
android:layout_marginBottom="18dp"
|
||||
/>
|
||||
<TextView
|
||||
|
|
@ -23,9 +23,8 @@
|
|||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="@color/text_secondary"
|
||||
android:text="@string/armoire_rate_equipment_description"
|
||||
style="@style/Caption2"
|
||||
style="@style/ArmoireDescriptionTextView"
|
||||
android:layout_marginBottom="12dp"
|
||||
/>
|
||||
|
||||
|
|
@ -38,9 +37,8 @@
|
|||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="@color/text_secondary"
|
||||
android:text="@string/armoire_rate_food_description"
|
||||
style="@style/Caption2"
|
||||
style="@style/ArmoireDescriptionTextView"
|
||||
android:layout_marginBottom="12dp"
|
||||
/>
|
||||
|
||||
|
|
@ -53,8 +51,7 @@
|
|||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="@color/text_secondary"
|
||||
android:text="@string/armoire_rate_experience_description"
|
||||
style="@style/Caption2"
|
||||
style="@style/ArmoireDescriptionTextView"
|
||||
/>
|
||||
</LinearLayout>
|
||||
|
|
@ -64,6 +64,8 @@
|
|||
<color name="text_brand_white">@color/white</color>
|
||||
<color name="lightly_tinted_background">@color/brand_50</color>
|
||||
<color name="dialog_background">@color/gray_10</color>
|
||||
<color name="armoire_text">@color/gray_400</color>
|
||||
|
||||
|
||||
<color name="widget_background">#2B203A</color>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@
|
|||
<color name="task_secondary_text">#B2B2B2</color>
|
||||
<color name="gem_icon_color">#24cc8f</color>
|
||||
<color name="subscription_description_text">#b1000000</color>
|
||||
<color name="armoire_text">@color/gray_200</color>
|
||||
<color name="white_95_alpha">#f2ffffff</color>
|
||||
<color name="white_80_alpha">#ccffffff</color>
|
||||
<color name="white_75_alpha">#bfffffff</color>
|
||||
|
|
|
|||
|
|
@ -740,6 +740,20 @@
|
|||
<item name="android:gravity">center</item>
|
||||
</style>
|
||||
|
||||
<style name="ArmoireTitleTextView">
|
||||
<item name="android:fontFamily">@string/font_family_medium</item>
|
||||
<item name="android:textSize">20sp</item>
|
||||
<item name="android:letterSpacing">0.07</item>
|
||||
<item name="android:textColor">@color/armoire_text</item>
|
||||
</style>
|
||||
|
||||
<style name="ArmoireDescriptionTextView">
|
||||
<item name="android:fontFamily">@string/font_family_regular</item>
|
||||
<item name="android:textSize">12sp</item>
|
||||
<item name="android:letterSpacing">0.04</item>
|
||||
<item name="android:textColor">@color/armoire_text</item>
|
||||
</style>
|
||||
|
||||
<style name="QuestRatingBar" parent="@android:style/Widget.RatingBar">
|
||||
<item name="android:progressDrawable">@drawable/quest_difficulty_rating</item>
|
||||
<item name="android:minHeight">12dip</item>
|
||||
|
|
|
|||
Loading…
Reference in a new issue