summaryrefslogtreecommitdiff
path: root/includes/theme.maintenance.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-09-19 18:10:42 +0000
committerDries Buytaert <dries@buytaert.net>2010-09-19 18:10:42 +0000
commitc2c63b94f6637de1bcc19fd0db3af8b7756312de (patch)
treecfb3f86085dc9acf5fb7d9c58a2e7b77aa71022b /includes/theme.maintenance.inc
parent35e7c83ddb11302098d49979f5fb35c19673bda1 (diff)
downloadbrdo-c2c63b94f6637de1bcc19fd0db3af8b7756312de.tar.gz
brdo-c2c63b94f6637de1bcc19fd0db3af8b7756312de.tar.bz2
- Patch #885228 by sun, Jacine, mverbaar: CSS Files are in major need of clean up.
Diffstat (limited to 'includes/theme.maintenance.inc')
-rw-r--r--includes/theme.maintenance.inc13
1 files changed, 7 insertions, 6 deletions
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');
}
/**