diff --git a/core/modules/system/css/system.admin.css b/core/modules/system/css/system.admin.css
index 203f7d2..f45921d 100644
--- a/core/modules/system/css/system.admin.css
+++ b/core/modules/system/css/system.admin.css
@@ -48,7 +48,7 @@ div.admin .expert-link {
 }
 
 /**
- * Markup generated by theme_system_compact_link().
+ * System compact link: to toggle the display of description text.
  */
 .compact-link {
   margin: 0 0 0.5em 0;
diff --git a/core/modules/system/system.admin.inc b/core/modules/system/system.admin.inc
index 3af30c8..7a8fb59 100644
--- a/core/modules/system/system.admin.inc
+++ b/core/modules/system/system.admin.inc
@@ -389,16 +389,37 @@ function theme_admin_page($variables) {
     }
   }
 
-  $system_compact_link = array('#theme' => 'system_compact_link');
-  $output = '<div class="admin clearfix">';
-  $output .= drupal_render($system_compact_link);
+  $system_compact_link = array(
+    '#type' => 'link',
+    '#href' => 'admin/compact/off',
+    '#title' => t('Show descriptions'),
+    '#attributes' => array(
+      'title' => t('Expand layout to include descriptions.'),
+    ),
+    '#options' => array('query' => drupal_get_destination()),
+  );
+  if (!system_admin_compact_mode()) {
+    $system_compact_link['#href'] = 'admin/compact/on';
+    $system_compact_link['#title'] = t('Hide descriptions');
+    $system_compact_link['#attributes']['title'] = t('Compress layout by hiding descriptions.');
+  }
+  $system_compact = array(
+    '#theme_wrappers' => array('container'),
+    'system_compact_link' => $system_compact_link,
+    '#attributes' => array(
+      'class' => array('compact-link'),
+    ),
+  );
 
+  $output = '<div class="admin clearfix">';
+  $output .= drupal_render($system_compact);
   foreach ($container as $id => $data) {
     $output .= '<div class="' . $id . ' clearfix">';
     $output .= $data;
     $output .= '</div>';
   }
   $output .= '</div>';
+
   return $output;
 }
 
@@ -449,9 +470,30 @@ function theme_system_admin_index($variables) {
     }
   }
 
-  $system_compact_link = array('#theme' => 'system_compact_link');
+  $system_compact_link = array(
+    '#type' => 'link',
+    '#href' => 'admin/compact/off',
+    '#title' => t('Show descriptions'),
+    '#attributes' => array(
+      'title' => t('Expand layout to include descriptions.'),
+    ),
+    '#options' => array('query' => drupal_get_destination()),
+  );
+  if (!system_admin_compact_mode()) {
+    $system_compact_link['#href'] = 'admin/compact/on';
+    $system_compact_link['#title'] = t('Hide descriptions');
+    $system_compact_link['#attributes']['title'] = t('Compress layout by hiding descriptions.');
+  }
+  $system_compact = array(
+    '#theme_wrappers' => array('container'),
+    'system_compact_link' => $system_compact_link,
+    '#attributes' => array(
+      'class' => array('compact-link'),
+    ),
+  );
+
   $output = '<div class="admin clearfix">';
-  $output .= drupal_render($system_compact_link);
+  $output .= drupal_render($system_compact);
   foreach ($container as $id => $data) {
     $output .= '<div class="' . $id . ' clearfix">';
     $output .= $data;
diff --git a/core/modules/system/system.module b/core/modules/system/system.module
index f4bf194..ca7bd30 100644
--- a/core/modules/system/system.module
+++ b/core/modules/system/system.module
@@ -182,9 +182,16 @@ function system_theme() {
       'variables' => array('menu_items' => NULL),
       'file' => 'system.admin.inc',
     ),
-    'system_compact_link' => array(
+    'system_powered_by' => array(
       'variables' => array(),
     ),
+    'system_date_format_localize_form' => array(
+      'render element' => 'form',
+    ),
+    'system_plugin_ui_form' => array(
+      'template' => 'system-plugin-ui-form',
+      'render element' => 'form',
+    ),
   ));
 }
 
@@ -2702,21 +2709,12 @@ function system_time_zones($blank = NULL) {
 }
 
 /**
- * Returns HTML for a link to show or hide inline help descriptions.
+ * Returns HTML for the Powered by Drupal text.
  *
  * @ingroup themeable
  */
-function theme_system_compact_link() {
-  $output = '<div class="compact-link">';
-  if (system_admin_compact_mode()) {
-    $output .= l(t('Show descriptions'), 'admin/compact/off', array('attributes' => array('title' => t('Expand layout to include descriptions.')), 'query' => drupal_get_destination()));
-  }
-  else {
-    $output .= l(t('Hide descriptions'), 'admin/compact/on', array('attributes' => array('title' => t('Compress layout by hiding descriptions.')), 'query' => drupal_get_destination()));
-  }
-  $output .= '</div>';
-
-  return $output;
+function theme_system_powered_by() {
+  return '<span>' . t('Powered by <a href="@poweredby">Drupal</a>', array('@poweredby' => 'http://drupal.org')) . '</span>';
 }
 
 /**
diff --git a/core/modules/user/lib/Drupal/user/Form/UserPermissionsForm.php b/core/modules/user/lib/Drupal/user/Form/UserPermissionsForm.php
index a0b29ee..0561b99 100644
--- a/core/modules/user/lib/Drupal/user/Form/UserPermissionsForm.php
+++ b/core/modules/user/lib/Drupal/user/Form/UserPermissionsForm.php
@@ -104,8 +104,30 @@ public function buildForm(array $form, array &$form_state) {
     }
     asort($modules);
 
+    $system_compact_link = array(
+      '#type' => 'link',
+      '#href' => 'admin/compact/off',
+      '#title' => t('Show descriptions'),
+      '#attributes' => array(
+        'title' => t('Expand layout to include descriptions.'),
+      ),
+      '#options' => array('query' => drupal_get_destination()),
+    );
+    if (!system_admin_compact_mode()) {
+      $system_compact_link['#href'] = 'admin/compact/on';
+      $system_compact_link['#title'] = t('Hide descriptions');
+      $system_compact_link['#attributes']['title'] = t('Compress layout by hiding descriptions.');
+    }
+    $system_compact = array(
+      '#theme_wrappers' => array('container'),
+      'system_compact_link' => $system_compact_link,
+      '#attributes' => array(
+        'class' => array('compact-link'),
+      ),
+    );
+
     $form['system_compact_link'] = array(
-      '#theme' => 'system_compact_link',
+      '#markup' => drupal_render($system_compact),
     );
 
     $form['permissions'] = array(
