Diff for /loncom/interface/loncommon.pm between versions 1.714 and 1.719

version 1.714, 2008/12/11 14:52:34 version 1.719, 2008/12/16 10:41:02
Line 4667  td.LC_menubuttons_text { Line 4667  td.LC_menubuttons_text {
   font-size: small;    font-size: small;
 }  }
   
   .LC_mail_functions {
       font-weight: bold;
   }
   
 table.LC_aboutme_port {  table.LC_aboutme_port {
   border: 0px;    border: 0px;
   border-collapse: collapse;    border-collapse: collapse;
Line 5444  table#LC_mainmenu td.LC_mainmenu_col_fie Line 5448  table#LC_mainmenu td.LC_mainmenu_col_fie
   font-weight: bold;    font-weight: bold;
 }  }
   
   div.LC_createcourse {
       margin: 10px 10px 10px 10px;
   }
   
 /* ---- Remove when done ----  /* ---- Remove when done ----
 # The following styles is part of the redesign of LON-CAPA and are  # The following styles is part of the redesign of LON-CAPA and are
 # subject to change during this project.  # subject to change during this project.
Line 5694  div.columnSection > .ContentBoxSpecial Line 5702  div.columnSection > .ContentBoxSpecial
  width: 400px;   width: 400px;
   
 }  }
   .ContentBoxSpecialTemplate
   {
           border: solid 1px $lg_border_color;
   }
   .ContentBoxTemplate {
           padding:10px;
   }
   
   div.columnSection > .ContentBoxTemplate,
   div.columnSection > .ContentBoxSpecialTemplate
           {
           width: 600px;
   
   }
   
   
 .LC_loginpage_container {  .LC_loginpage_container {
  text-align:left;   text-align:left;
Line 5713  div.columnSection > .ContentBoxSpecial Line 5736  div.columnSection > .ContentBoxSpecial
  background-color:$loginbg;   background-color:$loginbg;
 }  }
   
 .LC_loginpage_loginContainer h1{  .LC_loginpage_loginContainer h2{
  margin-top:0;   margin-top:0;
  display:block;   display:block;
  background:$bgcol;   background:$bgcol;
Line 6023  sub start_page { Line 6046  sub start_page {
  $result = &html_encode($result);   $result = &html_encode($result);
     }      }
   
  if (exists $args->{'bread_crumbs'}) {      if (exists($args->{'bread_crumbs'})) {
  &Apache::lonhtmlcommon::clear_breadcrumbs();          &Apache::lonhtmlcommon::clear_breadcrumbs();
  my $temp = $args->{'bread_crumbs'};          if (ref($args->{'bread_crumbs'}) eq 'ARRAY') {         
  foreach my $crumb (@$temp){              foreach my $crumb (@{$args->{'bread_crumbs'}}){
  &Apache::lonhtmlcommon::add_breadcrumb($crumb);                  &Apache::lonhtmlcommon::add_breadcrumb($crumb);
  }              }
  $result .= &Apache::lonhtmlcommon::breadcrumbs();          }
           $result .= &Apache::lonhtmlcommon::breadcrumbs();
     }      }
   
     return $result;      return $result;

Removed from v.1.714  
changed lines
  Added in v.1.719


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>