Use same editor styles in bookmarks

Signed-off-by: Jean-BaptisteC <jeanbaptiste.charron@outlook.fr>
This commit is contained in:
Jean-Baptiste 2024-07-02 20:24:53 +02:00 committed by Alexander Borsuk
parent 52b616e18c
commit 05b745094b
5 changed files with 6 additions and 15 deletions

View file

@ -20,7 +20,7 @@
app:hintEnabled="false">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/et__input"
style="@style/MwmWidget.PlacePage.EditText"
style="@style/MwmWidget.Editor.CustomTextInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text|textCapSentences"

View file

@ -27,7 +27,7 @@
app:endIconTint="?android:textColorSecondary">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/et__bookmark_name"
style="@style/MwmWidget.PlacePage.EditText"
style="@style/MwmWidget.Editor.CustomTextInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/name"
@ -93,7 +93,7 @@
app:layout_constraintTop_toBottomOf="@+id/rl__bookmark_set">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/et__description"
style="@style/MwmWidget.PlacePage.EditText"
style="@style/MwmWidget.Editor.CustomTextInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/margin_half_double_plus"

View file

@ -38,7 +38,7 @@
app:endIconTint="?android:textColorSecondary">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_list_name_view"
style="@style/MwmWidget.PlacePage.EditText"
style="@style/MwmWidget.Editor.CustomTextInput"
android:hint="@string/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
@ -49,7 +49,7 @@
android:textColorHint="?android:textColorSecondary">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_description"
style="@style/MwmWidget.PlacePage.EditText"
style="@style/MwmWidget.Editor.CustomTextInput"
android:hint="@string/bookmark_list_description_hint"
android:minHeight="@dimen/height_item_multiline"
android:paddingStart="@dimen/margin_base"

View file

@ -32,7 +32,7 @@
app:layout_constraintTop_toBottomOf="@+id/toolbar">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/et__description"
style="@style/MwmWidget.PlacePage.EditText"
style="@style/MwmWidget.Editor.CustomTextInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/edit_description_hint"

View file

@ -117,15 +117,6 @@
<item name="cornerSize">50%</item>
</style>
<style name="MwmWidget.PlacePage.EditText" parent="Widget.AppCompat.EditText">
<item name="android:imeOptions">actionDone</item>
<item name="android:textAppearance">@style/MwmTextAppearance.PlacePage</item>
<item name="android:textColorHint">?secondary</item>
<item name="android:textCursorDrawable">@null</item>
<item name="android:fontFamily">@string/robotoRegular</item>
</style>
<style name="MwmWidget.ToolbarStyle" parent="ThemeOverlay.MaterialComponents.Dark.ActionBar">
<item name="android:background">?colorPrimary</item>
<item name="android:displayOptions">homeAsUp|showTitle</item>