diff --git a/core/includes/theme.maintenance.inc b/core/includes/theme.maintenance.inc index 8a19a49..96687fb 100644 --- a/core/includes/theme.maintenance.inc +++ b/core/includes/theme.maintenance.inc @@ -155,7 +155,7 @@ function theme_authorize_report($variables) { $messages = $variables['messages']; $output = ''; if (!empty($messages)) { - $output .= '
'; + $output .= '
'; foreach ($messages as $heading => $logs) { $items = array(); foreach ($logs as $number => $log_message) { @@ -195,10 +195,10 @@ function theme_authorize_message($variables) { $message = $variables['message']; $success = $variables['success']; if ($success) { - $item = array('data' => $message, 'class' => array('success')); + $item = array('data' => $message, 'class' => array('authorize-results__success')); } else { - $item = array('data' => '' . $message . '', 'class' => array('failure')); + $item = array('data' => $message, 'class' => array('authorize-results__failure')); } return $item; } diff --git a/core/modules/system/css/system.maintenance.css b/core/modules/system/css/system.maintenance.css index 9fd9f38..b6456c6 100644 --- a/core/modules/system/css/system.maintenance.css +++ b/core/modules/system/css/system.maintenance.css @@ -43,3 +43,10 @@ #edit-connection-settings-change-connection-type { margin: 2.6em 0.5em 0 1em; } + +/** + * Theme maintenance styles + */ +.authorize-results__failure { + font-weight: bold; +}