Conference scheduling UI fixes
This commit is contained in:
parent
8b224f174a
commit
6e70ea852e
6 changed files with 9 additions and 8 deletions
|
@ -9,7 +9,7 @@
|
||||||
android:endColor="?attr/voipFormBackgroundColor"
|
android:endColor="?attr/voipFormBackgroundColor"
|
||||||
android:startColor="?attr/voipFormBackgroundColor"
|
android:startColor="?attr/voipFormBackgroundColor"
|
||||||
android:type="linear" />
|
android:type="linear" />
|
||||||
<stroke android:width="0.33dp" android:color="?attr/voipFormFieldBackgroundColor" />
|
<stroke android:width="@dimen/conference_schedule_form_field_border_thickness" android:color="?attr/voipFormFieldBackgroundColor" />
|
||||||
<corners android:radius="0dp" />
|
<corners android:radius="0dp" />
|
||||||
<padding android:bottom="3dp" android:left="3dp" android:right="3dp" android:top="3dp" />
|
<padding android:bottom="3dp" android:left="3dp" android:right="3dp" android:top="3dp" />
|
||||||
</shape>
|
</shape>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
|
||||||
<stroke android:width="0.33dp" android:color="?attr/voipFormFieldBackgroundColor" />
|
<stroke android:width="@dimen/conference_schedule_form_field_border_thickness" android:color="?attr/voipFormFieldBackgroundColor" />
|
||||||
<corners android:radius="0dp" />
|
<corners android:radius="0dp" />
|
||||||
<padding android:bottom="3dp" android:left="3dp" android:right="3dp" android:top="3dp" />
|
<padding android:bottom="3dp" android:left="3dp" android:right="3dp" android:top="3dp" />
|
||||||
</shape>
|
</shape>
|
|
@ -275,7 +275,7 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="20dp"
|
||||||
android:background="?attr/voipFormBackgroundColor">
|
android:background="?attr/voipFormDisabledFieldBackgroundColor">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
@ -317,7 +317,7 @@
|
||||||
|
|
||||||
<include
|
<include
|
||||||
layout="@layout/wait_layout"
|
layout="@layout/wait_layout"
|
||||||
bind:visibility="@{viewModel.conferenceCreationInProgress}" />
|
bind:visibility="@{viewModel.conferenceCreationInProgress, default=gone}" />
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
|
|
|
@ -130,7 +130,7 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="20dp"
|
||||||
android:background="?attr/voipFormBackgroundColor">
|
android:background="?attr/voipFormDisabledFieldBackgroundColor">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
style="@style/calls_list_header_font"
|
style="@style/calls_list_header_font"
|
||||||
|
@ -149,7 +149,7 @@
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="?attr/voipFormBackgroundColor">
|
android:background="?attr/voipFormDisabledFieldBackgroundColor">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
style="@style/calls_list_header_font"
|
style="@style/calls_list_header_font"
|
||||||
|
|
|
@ -57,8 +57,8 @@
|
||||||
<item name="voipDrawableDisabledColor">@color/voip_dark_color4</item>
|
<item name="voipDrawableDisabledColor">@color/voip_dark_color4</item>
|
||||||
<item name="voipTextColor">@color/white_color</item>
|
<item name="voipTextColor">@color/white_color</item>
|
||||||
<item name="voipTextColor2">@color/voip_text_dark_color</item>
|
<item name="voipTextColor2">@color/voip_text_dark_color</item>
|
||||||
<item name="voipFormBackgroundColor">@color/voip_dark_color4</item>
|
<item name="voipFormBackgroundColor">@color/voip_dark_color</item>
|
||||||
<item name="voipFormFieldBackgroundColor">@color/voip_dark_color4</item>
|
<item name="voipFormFieldBackgroundColor">@color/voip_dark_color5</item>
|
||||||
<item name="voipFormDisabledFieldBackgroundColor">@color/voip_dark_color4</item>
|
<item name="voipFormDisabledFieldBackgroundColor">@color/voip_dark_color4</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
|
@ -63,4 +63,5 @@
|
||||||
<dimen name="voip_numpad_button_max_size">60dp</dimen>
|
<dimen name="voip_numpad_button_max_size">60dp</dimen>
|
||||||
<dimen name="voip_conference_audio_only_participant_cell_height">60dp</dimen>
|
<dimen name="voip_conference_audio_only_participant_cell_height">60dp</dimen>
|
||||||
<dimen name="voip_conference_audio_only_participant_avatar_size">40dp</dimen>
|
<dimen name="voip_conference_audio_only_participant_avatar_size">40dp</dimen>
|
||||||
|
<dimen name="conference_schedule_form_field_border_thickness">1dp</dimen>
|
||||||
</resources>
|
</resources>
|
Loading…
Reference in a new issue