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

bisitz bisitz@source.lon-capa.org
Fri, 12 Feb 2010 17:53:43 -0000


bisitz		Fri Feb 12 17:53:43 2010 EDT

  Modified files:              
    /loncom/interface	loncommon.pm 
  Log:
  Changed background color of "empty" data_table rows from white to lighter role's background color, e.g. better separates different realms on roles screen.
  
  
Index: loncom/interface/loncommon.pm
diff -u loncom/interface/loncommon.pm:1.939 loncom/interface/loncommon.pm:1.940
--- loncom/interface/loncommon.pm:1.939	Fri Feb 12 17:35:49 2010
+++ loncom/interface/loncommon.pm	Fri Feb 12 17:53:43 2010
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # a pile of common routines
 #
-# $Id: loncommon.pm,v 1.939 2010/02/12 17:35:49 bisitz Exp $
+# $Id: loncommon.pm,v 1.940 2010/02/12 17:53:43 bisitz Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -5113,13 +5113,20 @@
 
 table.LC_data_table tr.LC_empty_row td,
 table.LC_nested tr.LC_empty_row td {
-  background-color: #FFFFFF;
   font-weight: bold;
   font-style: italic;
   text-align: center;
   padding: 8px;
 }
 
+table.LC_data_table tr.LC_empty_row td {
+  background-color: $sidebg;
+}
+
+table.LC_nested tr.LC_empty_row td {
+  background-color: #FFFFFF;
+}
+
 table.LC_caption {
 }