Skip to content

Commit

Permalink
fix sperator color in friendlist
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Oct 16, 2022
1 parent 352a3e0 commit 54c2876
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
android:layout_height="1dp"
android:layout_gravity="center_vertical"
android:layout_weight="100"
android:background="@color/md_grey_300" />
android:background="@color/md_grey_300_seperator" />

<TextView
android:layout_width="20dp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
android:layout_height="2dp"
android:layout_gravity="center_vertical"
android:layout_weight="100"
android:background="@color/md_grey_300" />
android:background="@color/md_grey_300_seperator" />

<TextView
android:layout_width="20dp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,25 +92,28 @@

<LinearLayout
android:layout_width="match_parent"
android:layout_height="2dp">
android:layout_height="2dp"
android:background="@null">

<TextView
android:layout_width="20dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/transparent"
android:text="@null" />

<ImageView
android:layout_width="0dp"
android:layout_height="1dp"
android:layout_gravity="center_vertical"
android:layout_weight="100"
android:background="@color/md_grey_300" />
android:background="@color/md_grey_300_seperator" />

<TextView
android:layout_width="20dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/transparent"
android:text="@null" />

</LinearLayout>
Expand Down
2 changes: 2 additions & 0 deletions android-refimpl-app/app/src/main/res/values-night/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
<color name="message_list_scroll_to_bottom_fab_bg_normal">#9E9E9E</color>
<color name="message_list_scroll_to_bottom_fab_bg_new_message">#FF4081</color>

<color name="md_grey_300_seperator">#3E3E3E</color>

<!-- google's material design colours from
http://www.google.com/design/spec/style/color.html#color-ui-color-palette -->

Expand Down
2 changes: 2 additions & 0 deletions android-refimpl-app/app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
<color name="message_list_scroll_to_bottom_fab_bg_normal">#9E9E9E</color>
<color name="message_list_scroll_to_bottom_fab_bg_new_message">#FF4081</color>

<color name="md_grey_300_seperator">#E0E0E0</color>

<!-- google's material design colours from
http://www.google.com/design/spec/style/color.html#color-ui-color-palette -->

Expand Down

0 comments on commit 54c2876

Please sign in to comment.