[LON-CAPA-cvs] cvs: loncom /interface loncommon.pm lonhtmlcommon.pm

droeschl droeschl@source.lon-capa.org
Sun, 30 May 2010 12:47:05 -0000


droeschl		Sun May 30 12:47:05 2010 EDT

  Modified files:              
    /loncom/interface	loncommon.pm lonhtmlcommon.pm 
  Log:
  Bugzilla #6266
  tested in:
      - IE8/Win, Saf4.0.5/Mac, FF3.6.3/Mac
      - IE6/Win: requires explicit set properties (inheriting does not work!)
  
  
Index: loncom/interface/loncommon.pm
diff -u loncom/interface/loncommon.pm:1.968 loncom/interface/loncommon.pm:1.969
--- loncom/interface/loncommon.pm:1.968	Fri May 14 18:29:52 2010
+++ loncom/interface/loncommon.pm	Sun May 30 12:47:05 2010
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # a pile of common routines
 #
-# $Id: loncommon.pm,v 1.968 2010/05/14 18:29:52 bisitz Exp $
+# $Id: loncommon.pm,v 1.969 2010/05/30 12:47:05 droeschl Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -6237,6 +6237,14 @@
   font-size:90%;
 }
 
+ol#LC_MenuBreadcrumbs h1 {
+  display: inline;
+  font-size: 90%;
+  line-height: 2.5em;
+  margin: 0;
+  padding: 0;
+}
+
 ol#LC_PathBreadcrumbs li a {
   text-decoration:none;
   font-size:100%;
Index: loncom/interface/lonhtmlcommon.pm
diff -u loncom/interface/lonhtmlcommon.pm:1.271 loncom/interface/lonhtmlcommon.pm:1.272
--- loncom/interface/lonhtmlcommon.pm:1.271	Tue Apr 13 10:21:29 2010
+++ loncom/interface/lonhtmlcommon.pm	Sun May 30 12:47:05 2010
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # a pile of common html routines
 #
-# $Id: lonhtmlcommon.pm,v 1.271 2010/04/13 10:21:29 www Exp $
+# $Id: lonhtmlcommon.pm,v 1.272 2010/05/30 12:47:05 droeschl Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -1481,7 +1481,7 @@
         my $lasttext = $last->{'no_mt'} ? $last->{'text'} 
                      : mt( $last->{'text'} );
 
-        $links .= htmltag( 'li', htmltag('b', $lasttext), {title => $lasttext});
+        $links .= htmltag( 'li', htmltag('h1', $lasttext), {title => $lasttext});
 
         my $icons = '';
         $faq  = $last->{'faq'}  if (exists($last->{'faq'}));