diff options
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/search_panel.xml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/res/layout/search_panel.xml b/res/layout/search_panel.xml index 5f621cd..18c48bf 100644 --- a/res/layout/search_panel.xml +++ b/res/layout/search_panel.xml @@ -25,21 +25,19 @@ android:id="@+id/search_bar_container" android:layout_width="match_parent" android:layout_height="wrap_content" - android:background="@color/search_panel_background" - android:elevation="4dp"> + android:background="?android:attr/colorPrimary"> <androidx.cardview.widget.CardView android:id="@+id/search_bar" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/search_bar_margin" - app:cardCornerRadius="2dp" - app:cardBackgroundColor="?android:attr/colorBackground" - app:cardElevation="2dp"> + app:cardCornerRadius="@dimen/search_bar_corner_radius" + app:cardElevation="0dp"> <Toolbar android:id="@+id/search_toolbar" android:layout_width="match_parent" android:layout_height="@dimen/search_bar_height" - android:background="?android:attr/selectableItemBackground" + android:background="@color/search_panel_background" android:contentInsetStart="0dp" android:contentInsetStartWithNavigation="0dp" android:theme="?android:attr/actionBarTheme"> @@ -105,4 +103,4 @@ <include layout="@layout/search_feedback"/> -</LinearLayout>
\ No newline at end of file +</LinearLayout> |