mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-25 19:05:56 +03:00
Fix color issue in dark and black themes (#961)
This commit is contained in:
parent
d74dc2053b
commit
497b07b156
3 changed files with 4 additions and 4 deletions
|
@ -5,7 +5,6 @@
|
|||
android:id="@+id/item_generic_root"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?riotx_background"
|
||||
android:minHeight="50dp">
|
||||
|
||||
<ImageView
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
android:id="@+id/itemVerificationClickableZone"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="?riotx_bottom_sheet_background"
|
||||
android:clickable="true"
|
||||
android:focusable="true"
|
||||
android:foreground="?attr/selectableItemBackground"
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
<attr name="riotx_bottom_sheet_background" format="color" />
|
||||
<color name="riotx_bottom_sheet_background_light">#FFFFFFFF</color>
|
||||
<color name="riotx_bottom_sheet_background_dark">#FF282C35</color>
|
||||
<color name="riotx_bottom_sheet_background_black">#FF000000</color>
|
||||
<color name="riotx_bottom_sheet_background_black">#FF282C35</color>
|
||||
|
||||
<attr name="riotx_base_text_icon_primary" format="color" />
|
||||
<color name="riotx_base_text_icon_primary_light">#FFFFFFFF</color>
|
||||
|
@ -225,8 +225,8 @@
|
|||
<color name="riotx_disabled_view_color_dark">#61708B</color>
|
||||
|
||||
<attr name="riotx_list_bottom_sheet_divider_color" format="color" />
|
||||
<color name="riotx_list_bottom_sheet_divider_color_light">#EEEFEF</color>
|
||||
<color name="riotx_list_bottom_sheet_divider_color_dark">#FF61708B</color>
|
||||
<color name="riotx_list_bottom_sheet_divider_color_light">#E3E8F0</color>
|
||||
<color name="riotx_list_bottom_sheet_divider_color_dark">#7F61708B</color>
|
||||
<color name="riotx_list_bottom_sheet_divider_color_black">#FF22262E</color>
|
||||
|
||||
<!-- (color from RiotWeb) -->
|
||||
|
|
Loading…
Reference in a new issue