]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixes #3471 moved helpers to end of css/elgg
authorCash Costello <cash.costello@gmail.com>
Thu, 23 Jun 2011 10:59:27 +0000 (06:59 -0400)
committerCash Costello <cash.costello@gmail.com>
Thu, 23 Jun 2011 10:59:27 +0000 (06:59 -0400)
views/default/css/elgg.php

index 675af860d7328001984ec064b34b1169d78d92eb..4960e6ade6d80729e92b22672a955781c6830ede 100644 (file)
@@ -26,13 +26,12 @@ if ($old_css_view != elgg_get_config('viewpath')) {
 Base CSS
  * CSS reset
  * core
- * helpers
+ * helpers (moved to end to have a higher priority)
  * grid
 
 *******************************************************************************/
 echo elgg_view('css/elements/reset', $vars);
 echo elgg_view('css/elements/core', $vars);
-echo elgg_view('css/elements/helpers', $vars);
 echo elgg_view('css/elements/grid', $vars);
 
 
@@ -61,5 +60,9 @@ echo elgg_view('css/elements/layout', $vars);
 echo elgg_view('css/elements/misc', $vars);
 
 
+// included last to have higher priority
+echo elgg_view('css/elements/helpers', $vars);
+
+
 // in case plugins are still extending the old 'css' view, display it
 echo elgg_view('css', $vars);