Making drop target smaller in landscape.

Change-Id: I19b641761569d62d06eff7fb775ceb5cbcb5a845
diff --git a/res/layout/qsb_bar.xml b/res/layout/qsb_bar.xml
index 68ee8b6..cb97b01 100644
--- a/res/layout/qsb_bar.xml
+++ b/res/layout/qsb_bar.xml
@@ -63,8 +63,6 @@
     <LinearLayout
         style="@style/SearchDropTargetBar"
         android:id="@+id/drag_target_bar"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent"
         android:alpha="0">
 
         <com.android.launcher2.DeleteDropTarget
diff --git a/res/values-land/styles.xml b/res/values-land/styles.xml
index 4daaecc..659947b 100644
--- a/res/values-land/styles.xml
+++ b/res/values-land/styles.xml
@@ -21,6 +21,8 @@
 <!-- Search Bar -->
     <style name="SearchDropTargetBar">
         <item name="android:orientation">vertical</item>
+        <item name="android:layout_width">match_parent</item>
+        <item name="android:layout_height">wrap_content</item>
     </style>
     <style name="SearchButton">
         <item name="android:layout_gravity">center_horizontal</item>
diff --git a/res/values/styles.xml b/res/values/styles.xml
index b662ccc..45e85e1 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -80,6 +80,8 @@
 
     <style name="SearchDropTargetBar">
         <item name="android:orientation">horizontal</item>
+        <item name="android:layout_width">match_parent</item>
+        <item name="android:layout_height">match_parent</item>
     </style>
     <style name="SearchButton">
         <item name="android:layout_gravity">center_vertical</item>