--- loncom/interface/loncommon.pm 2006/06/22 19:01:30 1.387 +++ loncom/interface/loncommon.pm 2006/06/22 20:31:56 1.390 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common routines # -# $Id: loncommon.pm,v 1.387 2006/06/22 19:01:30 albertel Exp $ +# $Id: loncommon.pm,v 1.390 2006/06/22 20:31:56 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -3333,16 +3333,35 @@ table#LC_portfolio_actions td.LC_value { background: $tabbg; } -table.LC_brower { +table#LC_browser { + +} +table#LC_browser tr th { + background: #DDDDDD; +} +table#LC_browser tr td { + padding: 2px; +} +table#LC_browser tr.LC_browser_file, +table#LC_browser tr.LC_browser_file_published { + background: #CCFF88; } -table.LC_browser tr.LC_browser_file { - 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_locked { - background: #FFAA99 +table#LC_browser tr.LC_browser_file_obsolete { + background: #AAAAAA; } -table.LC_browser tr.LC_browser_folder { - background: #CCCCFF +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 @@ -3710,29 +3729,29 @@ sub simple_error_page { my $row_count; sub start_data_table { undef($row_count); - return ''; + return '
'."\n"; } sub end_data_table { undef($row_count); - return '
'; + return ''."\n";; } sub start_data_table_row { $row_count++; - return ''; + return ''."\n";; } sub end_data_table_row { - return ''; + return ''."\n";; } sub start_data_table_header_row { - return ''; + return ''."\n";; } sub end_data_table_header_row { - return ''; + return ''."\n";; } }