From c2c63b94f6637de1bcc19fd0db3af8b7756312de Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 19 Sep 2010 18:10:42 +0000 Subject: - Patch #885228 by sun, Jacine, mverbaar: CSS Files are in major need of clean up. --- includes/theme.maintenance.inc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'includes/theme.maintenance.inc') diff --git a/includes/theme.maintenance.inc b/includes/theme.maintenance.inc index fdd474d94..74987edcf 100644 --- a/includes/theme.maintenance.inc +++ b/includes/theme.maintenance.inc @@ -77,12 +77,13 @@ function _drupal_maintenance_theme() { // These are usually added from system_init() -except maintenance.css. // When the database is inactive it's not called so we add it here. - drupal_add_css(drupal_get_path('module', 'system') . '/system.css'); - drupal_add_css(drupal_get_path('module', 'system') . '/system-behavior.css'); - drupal_add_css(drupal_get_path('module', 'system') . '/system-menus.css'); - drupal_add_css(drupal_get_path('module', 'system') . '/system-messages.css'); - drupal_add_css(drupal_get_path('module', 'system') . '/maintenance.css'); - drupal_add_css(drupal_get_path('module', 'system') . '/admin.css'); + $path = drupal_get_path('module', 'system'); + drupal_add_css($path . '/system.base.css'); + drupal_add_css($path . '/system.admin.css'); + drupal_add_css($path . '/system.menus.css'); + drupal_add_css($path . '/system.messages.css'); + drupal_add_css($path . '/system.theme.css'); + drupal_add_css($path . '/system.maintenance.css'); } /** -- cgit v1.2.3