Fixing include base_chamilo.css calls see #3544

skala
Julio Montoya 14 years ago
parent ec73a91075
commit c8a37b6bcf
  1. 3
      main/css/chamilo/default.css
  2. 3
      main/css/chamilo_electric_blue/default.css
  3. 2
      main/css/chamilo_green/default.css
  4. 3
      main/css/chamilo_orange/default.css
  5. 3
      main/css/chamilo_red/default.css
  6. 8
      main/inc/header.inc.php
  7. 7
      main/inc/reduced_header.inc.php
  8. 1
      main/install/index.php

@ -2,6 +2,9 @@
* MAIN - CHAMILO CSS
*****************************************************/
/* Adding default style for the chamilo_X themes */
@import url('../base_chamilo.css');
/* the following for regular <a> elements */
a:link {
text-decoration: none;

@ -1,6 +1,9 @@
/*****************************************************
* MAIN - CHAMILO CSS
*****************************************************/
/* Adding default style for the chamilo_X themes */
@import url('../base_chamilo.css');
/* the following for regular <a> elements */
a:link {

@ -2,6 +2,8 @@
* MAIN - CHAMILO CSS GREEN
*****************************************************/
/* Adding default style for the chamilo_X themes */
@import url('../base_chamilo.css');
/* the following for regular <a> elements */
a:link {

@ -1,6 +1,9 @@
/*****************************************************
* MAIN - CHAMILO ORANGE CSS
*****************************************************/
/* Adding default style for the chamilo_X themes */
@import url('../base_chamilo.css');
/* the following for regular <a> elements */
a:link {

@ -2,6 +2,9 @@
* MAIN - CHAMILO RED CSS
*****************************************************/
/* Adding default style for the chamilo_X themes */
@import url('../base_chamilo.css');
/* the following for regular <a> elements */
a:link {
text-decoration: none;

@ -97,14 +97,6 @@ if ($show_learn_path) {
}
//Base CSS
echo '@import "'.api_get_path(WEB_CSS_PATH).'base.css";';
//Base chamilo CSS
if (in_array(api_get_visual_theme(), array('chamilo','chamilo_red','chamilo_blue','chamilo_orange','chamilo_green','chamilo_electric_blue'))) {
echo '@import "'.api_get_path(WEB_CSS_PATH).'base_chamilo.css";';
} else {
echo '@import "'.api_get_path(WEB_CSS_PATH).'base_classic.css";';
}
//Default CSS
echo '@import "'.api_get_path(WEB_CSS_PATH).$my_style.'/default.css";';
//Course CSS

@ -97,13 +97,6 @@ if ($my_style != '') {
//Base CSS
echo '@import "'.api_get_path(WEB_CSS_PATH).'base.css";';
//Global chamilo CSS
if (in_array(api_get_visual_theme(), array('chamilo','chamilo_red','chamilo_blue','chamilo_orange','chamilo_green','chamilo_electric_blue'))) {
echo '@import "'.api_get_path(WEB_CSS_PATH).'base_chamilo.css";';
} else {
echo '@import "'.api_get_path(WEB_CSS_PATH).'base_classic.css";';
}
//Default CSS
echo '@import "'.api_get_path(WEB_CSS_PATH).$my_style.'/default.css";';
?>

@ -308,7 +308,6 @@ if ($encryptPassForm == '1') {
<style type="text/css" media="screen, projection">
/*<![CDATA[*/
@import "../css/base.css";
@import "../css/base_chamilo.css";
@import "../css/<?php echo api_get_visual_theme(); ?>/default.css";
/*]]>*/
</style>

Loading…
Cancel
Save