--- loncom/interface/loncommon.pm 2006/06/23 03:14:00 1.394 +++ loncom/interface/loncommon.pm 2006/06/23 05:25:27 1.395 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common routines # -# $Id: loncommon.pm,v 1.394 2006/06/23 03:14:00 albertel Exp $ +# $Id: loncommon.pm,v 1.395 2006/06/23 05:25:27 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -3107,6 +3107,7 @@ sub standard_css { my $link = &designparm($function.'.link', $domain); my $sans = 'Arial,Helvetica,sans-serif'; + my $mono = 'monospace'; my $data_table_head = $tabbg; my $data_table_light = '#EEEEEE'; my $data_table_dark = '#DDD'; @@ -3130,7 +3131,7 @@ table.thinborder { border-collapse: coll table.thinborder tr th, table.thinborder tr td { border-style: solid; border-width: 1px} form, .inline { display: inline; } .center { text-align: center; } -.LC_filename {font-family: monospace;} +.LC_filename {font-family: $mono;} .LC_error { color: red; font-size: larger; @@ -3373,6 +3374,28 @@ span.LC_current_location { background: $pgbg; } +span.LC_parm_menu_item { + font-size: larger; + font-family: $sans; +} +span.LC_parm_scope_all { + color: red; +} +span.LC_parm_scope_folder { + color: green; +} +span.LC_parm_scope_resource { + color: orange; +} +span.LC_parm_part { + color: blue; +} +span.LC_parm_folder, span.LC_parm_symb { + font-size: x-small; + font-family: $mono; + color: #AAAAAA; +} + END }