mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-17 11:19:01 +00:00
type tweaks
This commit is contained in:
parent
99dd93344d
commit
3b54be0d91
6 changed files with 21 additions and 11 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||
<solid android:color="#55311D"/>
|
||||
<solid android:color="@color/darkbrown"/>
|
||||
<corners android:radius="8dp"/>
|
||||
<stroke android:width="3dp" android:color="#EA8C31"/>
|
||||
</shape>
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingHorizontal="12dp"
|
||||
android:paddingVertical="9dp"
|
||||
android:paddingVertical="6dp"
|
||||
android:gravity="center_vertical">
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
|
|
@ -29,8 +29,8 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
style="@style/Body1"
|
||||
tools:text="Section Header"
|
||||
style="@style/SectionTitleText"
|
||||
tools:text="BACKGROUNDS"
|
||||
android:gravity="center"
|
||||
android:textColor="@color/white" />
|
||||
<ImageView
|
||||
|
|
@ -53,10 +53,10 @@
|
|||
android:background="@drawable/shop_header_time_background"
|
||||
android:layout_marginHorizontal="3dp"
|
||||
android:layout_marginBottom="3dp"
|
||||
android:paddingVertical="6dp"
|
||||
android:paddingVertical="4dp"
|
||||
android:gravity="center"
|
||||
android:layout_gravity="center_vertical"
|
||||
style="@style/Body1"
|
||||
style="@style/SectionTitleText"
|
||||
tools:text="Switches in X"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible" />
|
||||
|
|
@ -70,16 +70,17 @@
|
|||
android:layout_marginHorizontal="3dp"
|
||||
android:paddingStart="12dp"
|
||||
android:paddingEnd="3dp"
|
||||
android:paddingVertical="6dp">
|
||||
android:paddingVertical="3dp">
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical">
|
||||
<TextView
|
||||
android:id="@+id/class_name_label"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
style="@style/Body1"
|
||||
style="@style/SectionTitleText"
|
||||
/>
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
|
|
|
|||
|
|
@ -136,4 +136,5 @@
|
|||
<color name="gray700_gray10">@color/gray_700</color>
|
||||
<color name="maroon100_red100">@color/maroon_100</color>
|
||||
<color name="brand_button">@color/brand_400</color>
|
||||
<color name="darkbrown">#55311D</color>
|
||||
</resources>
|
||||
|
|
|
|||
|
|
@ -56,6 +56,14 @@
|
|||
<item name="android:textColor">?textColorSecondary</item>
|
||||
</style>
|
||||
|
||||
<style name="SectionTitleText">
|
||||
<item name="android:fontFamily">@string/font_family_regular</item>
|
||||
<item name="android:textStyle">bold</item>
|
||||
<item name="android:textSize">14sp</item>
|
||||
<item name="android:letterSpacing">0.04</item>
|
||||
<item name="android:lineSpacingExtra">4sp</item>
|
||||
</style>
|
||||
|
||||
<!-- Body -->
|
||||
<style name="Body1">
|
||||
<item name="android:fontFamily">@string/font_family_medium</item>
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ class SectionViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
|
|||
"healer" -> {
|
||||
classSelectionButton?.background = AppCompatResources.getDrawable(context, R.drawable.shop_header_healer_background)
|
||||
classSelectionLabel?.text = context.getString(R.string.healer)
|
||||
textColor = R.color.yellow_1
|
||||
textColor = R.color.darkbrown
|
||||
}
|
||||
"rogue" -> {
|
||||
classSelectionButton?.background = AppCompatResources.getDrawable(context, R.drawable.shop_header_rogue_background)
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
NAME=4.3.7
|
||||
CODE=7861
|
||||
CODE=7881
|
||||
Loading…
Reference in a new issue