summaryrefslogtreecommitdiff
path: root/themes/seven/template.php
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-08-22 03:41:14 +0100
committerwebchick <webchick@24967.no-reply.drupal.org>2011-08-22 03:41:14 +0100
commit63439a8f1aaa52e777a75676b9fa21a51e9f1949 (patch)
tree62859164f7a1bbff6172fa26e402d92540b90cbe /themes/seven/template.php
parent979f0d8cb90d924c63e11b1768417251965e006f (diff)
downloadbrdo-63439a8f1aaa52e777a75676b9fa21a51e9f1949.tar.gz
brdo-63439a8f1aaa52e777a75676b9fa21a51e9f1949.tar.bz2
Issue #766458 by aspilicious, xjm, Jeff Burnz, tsi: Fixed Seven theme lacks rtl styling.
Diffstat (limited to 'themes/seven/template.php')
-rw-r--r--themes/seven/template.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/themes/seven/template.php b/themes/seven/template.php
index 4582749b1..437e9a79f 100644
--- a/themes/seven/template.php
+++ b/themes/seven/template.php
@@ -17,9 +17,11 @@ function seven_preprocess_maintenance_page(&$vars) {
*/
function seven_preprocess_html(&$vars) {
// Add conditional CSS for IE8 and below.
- drupal_add_css(path_to_theme() . '/ie.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 8', '!IE' => FALSE), 'preprocess' => FALSE));
+ drupal_add_css(path_to_theme() . '/ie.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 8', '!IE' => FALSE), 'weight' => 999, 'preprocess' => FALSE));
+ // Add conditional CSS for IE7 and below.
+ drupal_add_css(path_to_theme() . '/ie7.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 7', '!IE' => FALSE), 'weight' => 999, 'preprocess' => FALSE));
// Add conditional CSS for IE6.
- drupal_add_css(path_to_theme() . '/ie6.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lt IE 7', '!IE' => FALSE), 'preprocess' => FALSE));
+ drupal_add_css(path_to_theme() . '/ie6.css', array('group' => CSS_THEME, 'browsers' => array('IE' => 'lte IE 6', '!IE' => FALSE), 'weight' => 999, 'preprocess' => FALSE));
}
/**