Diff for /loncom/interface/loncommon.pm between versions 1.387 and 1.390

version 1.387, 2006/06/22 19:01:30 version 1.390, 2006/06/22 20:31:56
Line 3333  table#LC_portfolio_actions td.LC_value { Line 3333  table#LC_portfolio_actions td.LC_value {
   background: $tabbg;    background: $tabbg;
 }  }
   
 table.LC_brower {  table#LC_browser {
    
 }  }
 table.LC_browser tr.LC_browser_file {  table#LC_browser tr th {
   background: #CCFF88    background: #DDDDDD;
 }  }
 table.LC_browser tr.LC_browser_file_locked {  table#LC_browser tr td {
   background: #FFAA99    padding: 2px;
 }  }
 table.LC_browser tr.LC_browser_folder {  table#LC_browser tr.LC_browser_file,
   background: #CCCCFF  table#LC_browser tr.LC_browser_file_published {
     background: #CCFF88;
   }
   table#LC_browser tr.LC_browser_file_locked,
   table#LC_browser tr.LC_browser_file_unpublished {
     background: #FFAA99;
   }
   table#LC_browser tr.LC_browser_file_obsolete {
     background: #AAAAAA;
   }
   table#LC_browser tr.LC_browser_file_modified {
     background: #FFFF77;
   }
   table#LC_browser tr.LC_browser_folder {
     background: #CCCCFF;
   }
   span.LC_current_location {
     font-size: x-large;
     background: $pgbg;
 }  }
   
 END  END
Line 3710  sub simple_error_page { Line 3729  sub simple_error_page {
     my $row_count;      my $row_count;
     sub start_data_table {      sub start_data_table {
  undef($row_count);   undef($row_count);
  return '<table class="LC_data_table">';   return '<table class="LC_data_table">'."\n";
     }      }
   
     sub end_data_table {      sub end_data_table {
  undef($row_count);   undef($row_count);
  return '</table>';   return '</table>'."\n";;
     }      }
   
     sub start_data_table_row {      sub start_data_table_row {
  $row_count++;   $row_count++;
  return  '<tr '.(($row_count % 2)?'':'class="LC_even_row"').'>';   return  '<tr '.(($row_count % 2)?'':'class="LC_even_row"').'>'."\n";;
     }      }
   
     sub end_data_table_row {      sub end_data_table_row {
  return '</tr>';   return '</tr>'."\n";;
     }      }
   
     sub start_data_table_header_row {      sub start_data_table_header_row {
  return  '<tr class="LC_header_row">';   return  '<tr class="LC_header_row">'."\n";;
     }      }
   
     sub end_data_table_header_row {      sub end_data_table_header_row {
  return '</tr>';   return '</tr>'."\n";;
     }      }
 }  }
   

Removed from v.1.387  
changed lines
  Added in v.1.390


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