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

version 1.716, 2008/12/15 08:11:32 version 1.719, 2008/12/16 10:41:02
Line 5702  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 5721  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 6031  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.716  
changed lines
  Added in v.1.719


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