diff --git a/core/modules/node/config/views.view.content.yml b/core/modules/node/config/views.view.content.yml
index c985545..7e12244 100644
--- a/core/modules/node/config/views.view.content.yml
+++ b/core/modules/node/config/views.view.content.yml
@@ -354,50 +354,44 @@ display:
           plugin_id: node_status
           provider: node
           group: 1
-        status:
-          id: status
+        title:
+          id: title
           table: node_field_data
-          field: status
+          field: title
           relationship: none
           group_type: group
           admin_label: ''
-          operator: '='
-          value: true
+          operator: contains
+          value: ''
           group: 1
           exposed: true
           expose:
-            operator_id: ''
-            label: Status
+            operator_id: title_op
+            label: Title
             description: ''
             use_operator: false
-            operator: status_op
-            identifier: status
+            operator: title_op
+            identifier: title
             required: false
             remember: false
             multiple: false
             remember_roles:
               authenticated: authenticated
-          is_grouped: true
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
           group_info:
-            label: 'Published status'
+            label: ''
             description: ''
-            identifier: status
+            identifier: ''
             optional: true
             widget: select
             multiple: false
             remember: false
             default_group: All
             default_group_multiple: {  }
-            group_items:
-              1:
-                title: Published
-                operator: '='
-                value: '1'
-              2:
-                title: Unpublished
-                operator: '='
-                value: '0'
-          plugin_id: boolean
+            group_items: {  }
+          plugin_id: string
           provider: views
         type:
           id: type
@@ -439,44 +433,50 @@ display:
             group_items: {  }
           plugin_id: bundle
           provider: views
-        title:
-          id: title
+        status:
+          id: status
           table: node_field_data
-          field: title
+          field: status
           relationship: none
           group_type: group
           admin_label: ''
-          operator: contains
-          value: ''
+          operator: '='
+          value: true
           group: 1
           exposed: true
           expose:
-            operator_id: title_op
-            label: Title
+            operator_id: ''
+            label: Status
             description: ''
             use_operator: false
-            operator: title_op
-            identifier: title
+            operator: status_op
+            identifier: status
             required: false
             remember: false
             multiple: false
             remember_roles:
               authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
+          is_grouped: true
           group_info:
-            label: ''
+            label: 'Published status'
             description: ''
-            identifier: ''
+            identifier: status
             optional: true
             widget: select
             multiple: false
             remember: false
             default_group: All
             default_group_multiple: {  }
-            group_items: {  }
-          plugin_id: string
+            group_items:
+              1:
+                title: Published
+                operator: '='
+                value: '1'
+              2:
+                title: Unpublished
+                operator: '='
+                value: '0'
+          plugin_id: boolean
           provider: views
         langcode:
           id: langcode
diff --git a/core/modules/views/css/views.exposed_form.css b/core/modules/views/css/views.exposed_form.css
index 273e598..e0abbca 100644
--- a/core/modules/views/css/views.exposed_form.css
+++ b/core/modules/views/css/views.exposed_form.css
@@ -2,19 +2,25 @@
  * @file
  * Styling for Views exposed forms.
  */
-.views-exposed-form .form-item {
-  /* Display exposed form elements horizontally. */
-  float: left; /* LTR */
-  margin-right: .25em; /* LTR */
-}
-[dir="rtl"] .views-exposed-form .form-item {
-  float: right;
-  margin-left: .25em;
-}
+@media all and (min-width: 37.692307692em) { /* 490px */
+  .views-exposed-form .form-item {
+    /* Display exposed form elements horizontally. */
+    float: left; /* LTR */
+    margin-right: .25em; /* LTR */
+  }
+  [dir="rtl"] .views-exposed-form .form-item {
+    float: right;
+    margin-left: .25em;
+  }
 
-.views-exposed-form .form-actions {
-  clear: left; /* LTR */
-}
-[dir="rtl"] .views-exposed-form .form-actions {
-  clear: right;
+  .views-exposed-form .form-actions {
+    float: left; /* LTR */
+    margin-top: 2.45em;
+    margin-left: .25em; /* LTR */
+  }
+  [dir="rtl"] .views-exposed-form .form-actions {
+    float: right;
+    margin-left: 0;
+    margin-right: .25em;
+  }
 }
diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/ExposedFormPluginBase.php b/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/ExposedFormPluginBase.php
index 28c55cf..24a7e65 100644
--- a/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/ExposedFormPluginBase.php
+++ b/core/modules/views/lib/Drupal/views/Plugin/views/exposed_form/ExposedFormPluginBase.php
@@ -194,6 +194,7 @@ public function postExecute() { }
   public function exposedFormAlter(&$form, &$form_state) {
     if (!empty($this->options['submit_button'])) {
       $form['actions']['submit']['#value'] = $this->options['submit_button'];
+      $form['actions']['submit']['#button_type'] = 'small';
     }
 
     // Check if there is exposed sorts for this view
@@ -243,6 +244,7 @@ public function exposedFormAlter(&$form, &$form_state) {
         '#value' => $this->options['reset_button_label'],
         '#type' => 'submit',
         '#weight' => 10,
+        '#button_type' => 'small',
       );
 
       // Get an array of exposed filters, keyed by identifier option.
