diff --git a/core/modules/comment/src/CommentTypeListBuilder.php b/core/modules/comment/src/CommentTypeListBuilder.php
index 7f54ce9..32a4c19 100644
--- a/core/modules/comment/src/CommentTypeListBuilder.php
+++ b/core/modules/comment/src/CommentTypeListBuilder.php
@@ -37,7 +37,10 @@ public function getDefaultOperations(EntityInterface $entity) {
    */
   public function buildHeader() {
     $header['type'] = t('Comment type');
-    $header['description'] = t('Description');
+    $header['description'] = array(
+      'data' => t('Description'),
+      'class' => RESPONSIVE_PRIORITY_MEDIUM
+    );
     return $header + parent::buildHeader();
   }
 
@@ -46,7 +49,10 @@ public function buildHeader() {
    */
   public function buildRow(EntityInterface $entity) {
     $row['type'] = String::checkPlain($entity->label());
-    $row['description'] = Xss::filterAdmin($entity->getDescription());
+    $row['description'] = array(
+      'data' => Xss::filterAdmin($entity->getDescription()),
+      'class' => RESPONSIVE_PRIORITY_MEDIUM
+    );
     return $row + parent::buildRow($entity);
   }
 
diff --git a/core/modules/field_ui/src/FieldOverview.php b/core/modules/field_ui/src/FieldOverview.php
index 6d5f15f..39a0b70 100644
--- a/core/modules/field_ui/src/FieldOverview.php
+++ b/core/modules/field_ui/src/FieldOverview.php
@@ -105,7 +105,10 @@ public function buildForm(array $form, FormStateInterface $form_state, $entity_t
           'data' => $this->t('Machine name'),
           'class' => array(RESPONSIVE_PRIORITY_MEDIUM),
         ),
-        $this->t('Field type'),
+        array(
+          'data' => $this->t('Field type'),
+          'class' => array(RESPONSIVE_PRIORITY_MEDIUM),
+        ),
         $this->t('Operations'),
       ),
       '#regions' => $this->getRegions(),
diff --git a/core/modules/node/config/install/views.view.content.yml b/core/modules/node/config/install/views.view.content.yml
index 132ffee..11d593a 100644
--- a/core/modules/node/config/install/views.view.content.yml
+++ b/core/modules/node/config/install/views.view.content.yml
@@ -84,7 +84,7 @@ display:
               align: ''
               separator: ''
               empty_column: false
-              responsive: ''
+              responsive: priority-medium
             name:
               sortable: false
               default_sort_order: asc
@@ -98,7 +98,7 @@ display:
               align: ''
               separator: ''
               empty_column: false
-              responsive: ''
+              responsive: priority-medium
             changed:
               sortable: true
               default_sort_order: desc
