diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-12-15 01:06:33 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-12-15 01:06:33 +0000 |
commit | 57c5355a4b951731bf93b0f335042a291ee673b6 (patch) | |
tree | 45adfcdd5628ea86c2c722321ffda121dd73898a | |
parent | 3f0d64147a3e94268d52974c9913920eb100d8cd (diff) | |
download | brdo-57c5355a4b951731bf93b0f335042a291ee673b6.tar.gz brdo-57c5355a4b951731bf93b0f335042a291ee673b6.tar.bz2 |
#103280: Fix styles for maintenance pages.
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index fda5f49ab..0b475d4f6 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -407,6 +407,8 @@ function theme_page($content) { function theme_maintenance_page($content, $messages = TRUE, $partial = FALSE) { drupal_set_header('Content-Type: text/html; charset=utf-8'); drupal_set_html_head('<style type="text/css" media="all">@import "'. base_path() .'misc/maintenance.css";</style>'); + drupal_set_html_head('<style type="text/css" media="all">@import "'. base_path() . drupal_get_path('module', 'system') .'/defaults.css";</style>'); + drupal_set_html_head('<style type="text/css" media="all">@import "'. base_path() . drupal_get_path('module', 'system') .'/system.css";</style>'); drupal_set_html_head('<link rel="shortcut icon" href="'. base_path() .'misc/favicon.ico" type="image/x-icon" />'); $output = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; |