diff --git a/core/modules/node/config/install/views.view.content.yml b/core/modules/node/config/install/views.view.content.yml
index bb1e2c0..940fd12 100644
--- a/core/modules/node/config/install/views.view.content.yml
+++ b/core/modules/node/config/install/views.view.content.yml
@@ -309,6 +309,46 @@ display:
           plugin_id: node_status
           group: 1
           entity_type: node
+        title:
+          id: title
+          table: node_field_data
+          field: title
+          relationship: none
+          group_type: group
+          admin_label: ''
+          operator: contains
+          value: ''
+          group: 1
+          exposed: true
+          expose:
+            operator_id: title_op
+            label: Title
+            description: ''
+            use_operator: false
+            operator: title_op
+            identifier: title
+            required: false
+            remember: false
+            multiple: false
+            remember_roles:
+              authenticated: authenticated
+              anonymous: '0'
+              administrator: '0'
+          is_grouped: false
+          group_info:
+            label: ''
+            description: ''
+            identifier: ''
+            optional: true
+            widget: select
+            multiple: false
+            remember: false
+            default_group: All
+            default_group_multiple: {  }
+            group_items: {  }
+          plugin_id: string
+          entity_type: node
+          entity_field: title
         status:
           id: status
           table: node_field_data
@@ -396,46 +436,6 @@ display:
           plugin_id: bundle
           entity_type: node
           entity_field: type
-        title:
-          id: title
-          table: node_field_data
-          field: title
-          relationship: none
-          group_type: group
-          admin_label: ''
-          operator: contains
-          value: ''
-          group: 1
-          exposed: true
-          expose:
-            operator_id: title_op
-            label: Title
-            description: ''
-            use_operator: false
-            operator: title_op
-            identifier: title
-            required: false
-            remember: false
-            multiple: false
-            remember_roles:
-              authenticated: authenticated
-              anonymous: '0'
-              administrator: '0'
-          is_grouped: false
-          group_info:
-            label: ''
-            description: ''
-            identifier: ''
-            optional: true
-            widget: select
-            multiple: false
-            remember: false
-            default_group: All
-            default_group_multiple: {  }
-            group_items: {  }
-          plugin_id: string
-          entity_type: node
-          entity_field: title
         langcode:
           id: langcode
           table: node_field_data
diff --git a/core/modules/system/css/system.module.css b/core/modules/system/css/system.module.css
index 9eb87dc..49f6755 100644
--- a/core/modules/system/css/system.module.css
+++ b/core/modules/system/css/system.module.css
@@ -280,16 +280,22 @@ tr .ajax-progress-throbber .throbber {
 .container-inline .details-wrapper {
   display: block;
 }
+
 /* Display form elements horizontally. */
-.form--inline .form-item {
+.form--inline .form-item,
+.form--inline .form-actions {
   float: left; /* LTR */
   margin-right: 0.5em; /* LTR */
 }
-[dir="rtl"] .form--inline .form-item {
+[dir="rtl"] .form--inline .form-item,
+[dir="rtl"] .form--inline .form-actions {
   float: right;
   margin-right: 0;
   margin-left: 0.5em;
 }
+.form--inline .form-actions {
+  margin-top: 2.4em;
+}
 .form--inline .form-item-separator {
   margin-top: 2.3em;
   margin-right: 1em; /* LTR */
@@ -299,13 +305,6 @@ tr .ajax-progress-throbber .throbber {
   margin-right: 0.5em;
   margin-left: 1em;
 }
-.form--inline .form-actions {
-  clear: left; /* LTR */
-}
-[dir="rtl"] .form--inline .form-actions {
-  clear: right;
-}
-
 
 /**
  * Prevent text wrapping.
diff --git a/core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php b/core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php
index 3652e8b..1c0f096 100644
--- a/core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php
+++ b/core/modules/views/src/Plugin/views/exposed_form/ExposedFormPluginBase.php
@@ -205,6 +205,7 @@ public function postExecute() { }
   public function exposedFormAlter(&$form, FormStateInterface $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
@@ -256,6 +257,7 @@ public function exposedFormAlter(&$form, FormStateInterface $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.
