Fixed scheduled conferences fragment new conference button in dark mode
This commit is contained in:
parent
24d94b3b84
commit
562077606d
3 changed files with 9 additions and 2 deletions
|
@ -1,5 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_pressed="true">
|
||||
<bitmap android:src="@drawable/voip_conference_new"
|
||||
android:tint="?attr/drawableTintOverColor"/>
|
||||
</item>
|
||||
<item android:state_enabled="false">
|
||||
<bitmap android:src="@drawable/voip_conference_new"
|
||||
android:tint="?attr/drawableTintDisabledColor"/>
|
||||
</item>
|
||||
<item>
|
||||
<bitmap android:src="@drawable/voip_conference_new"
|
||||
android:tint="?attr/drawableTintColor"/>
|
||||
|
|
|
@ -55,7 +55,6 @@
|
|||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="0.2"
|
||||
android:background="?attr/button_background_drawable"
|
||||
android:padding="5dp"
|
||||
android:src="@drawable/icon_video_conf_new" />
|
||||
|
||||
|
|
|
@ -190,7 +190,7 @@
|
|||
|
||||
<include
|
||||
layout="@layout/wait_layout"
|
||||
bind:visibility="@{viewModel.waitForChatRoomCreation}"/>
|
||||
bind:visibility="@{viewModel.waitForChatRoomCreation}" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
|
|
Loading…
Reference in a new issue