diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-07 07:41:46 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-07 07:41:46 +0000 |
commit | 1407c81632b6279c550a07f8f1b08120f19f344d (patch) | |
tree | 1a531ac353b090ec2487acd2e7e5692773fbbfe8 /modules/system/system.module | |
parent | 2aed502f93be8ce40a90f31759a8619389d96959 (diff) | |
download | brdo-1407c81632b6279c550a07f8f1b08120f19f344d.tar.gz brdo-1407c81632b6279c550a07f8f1b08120f19f344d.tar.bz2 |
#592018 by mverbaar, Jacine, et al: Re-organize styles across stylesheets from system.module and separate presentational and behavior-supporting styles.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 067f171c8..e8a6c4fa4 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1741,8 +1741,8 @@ function system_init() { if (arg(0) == 'admin' || (variable_get('node_admin_theme', '0') && arg(0) == 'node' && (arg(1) == 'add' || arg(2) == 'edit' || arg(2) == 'delete'))) { drupal_add_css(drupal_get_path('module', 'system') . '/admin.css', array('weight' => CSS_SYSTEM)); } - drupal_add_css(drupal_get_path('module', 'system') . '/defaults.css', array('weight' => CSS_SYSTEM)); drupal_add_css(drupal_get_path('module', 'system') . '/system.css', array('weight' => CSS_SYSTEM)); + drupal_add_css(drupal_get_path('module', 'system') . '/system-behavior.css', array('weight' => CSS_SYSTEM)); drupal_add_css(drupal_get_path('module', 'system') . '/system-menus.css', array('weight' => CSS_SYSTEM)); |