Browse Source

[svn r17273] minor - style changes - added style css in historical gradebook - (partial FS#3249)

Isaac Flores 16 years ago
parent
commit
899a3cfa80

+ 8 - 0
main/css/public_admin/default.css

@@ -1702,3 +1702,11 @@ padding-top: 0px;	padding-right: 0px;	padding-bottom: 0px;	padding-left: 0px;}
 .resource-deleted {
 	color:#990000;
 }
+.Gradebook-table-header {
+    border: 1px solid rgb(153, 153, 153); 
+    background: rgb(240, 240, 240) none repeat scroll 0% 0%;
+}
+.Gradebook-table-body {
+    border: 1px solid rgb(153, 153, 153); 
+    background: rgb(255, 255, 255) none repeat scroll 0% 0%;    
+}

+ 1 - 1
main/gradebook/gradebook_showlog_eval.php

@@ -43,7 +43,7 @@ $sql="SELECT le.name,le.description,le.date_log,le.weight,le.visible,le.type,us.
 $result=api_sql_query($sql);
 	echo '<table width="100%" border="0" >';
 		echo '<tr>';
-		echo '<td align="center" style="Gradebook-table-header"><strong>'.get_lang('GradebookNameLog').'</strong></td>';
+		echo '<td align="center" class="Gradebook-table-header"><strong>'.get_lang('GradebookNameLog').'</strong></td>';
 		echo '<td align="center" class="Gradebook-table-header"><strong>'.get_lang('GradebookDescriptionLog').'</strong></td>';
 		echo '<td align="center" class="Gradebook-table-header"><strong>'.get_lang('Date').'</strong></td>';
 		echo '<td align="center" class="Gradebook-table-header"><strong>'.get_lang('Weight').'</strong></td>';

+ 7 - 7
main/gradebook/gradebook_showlog_link.php

@@ -45,13 +45,13 @@ $sql="SELECT lk.name,lk.description,lk.date_log,lk.weight,lk.visible,lk.type,us.
 $result=api_sql_query($sql);
 echo '<table width="100%" border="0" >';
 	echo '<tr>';
-		echo '<td align="center" style="Gradebook-table-header"><strong>'.get_lang('GradebookNameLog').'</strong></td>';
-		echo '<td align="center" style="Gradebook-table-header"><strong>'.get_lang('GradebookDescriptionLog').'</strong></td>';
-		echo '<td align="center" style="Gradebook-table-header"><strong>'.get_lang('Date').'</strong></td>';
-		echo '<td align="center" style="Gradebook-table-header"><strong>'.get_lang('Weight').'</strong></td>';
-		echo '<td align="center" style="Gradebook-table-header"><strong>'.get_lang('GradebookVisibilityLog').'</strong></td>';
-		echo '<td align="center" style="Gradebook-table-header"><strong>'.get_lang('ResourceType').'</strong></td>';
-		echo '<td align="center" style="Gradebook-table-header"><strong>'.get_lang('GradebookWhoChangedItLog').'</strong></td>';
+		echo '<td align="center" class="Gradebook-table-header"><strong>'.get_lang('GradebookNameLog').'</strong></td>';
+		echo '<td align="center" class="Gradebook-table-header"><strong>'.get_lang('GradebookDescriptionLog').'</strong></td>';
+		echo '<td align="center" class="Gradebook-table-header"><strong>'.get_lang('Date').'</strong></td>';
+		echo '<td align="center" class="Gradebook-table-header"><strong>'.get_lang('Weight').'</strong></td>';
+		echo '<td align="center" class="Gradebook-table-header"><strong>'.get_lang('GradebookVisibilityLog').'</strong></td>';
+		echo '<td align="center" class="Gradebook-table-header"><strong>'.get_lang('ResourceType').'</strong></td>';
+		echo '<td align="center" class="Gradebook-table-header"><strong>'.get_lang('GradebookWhoChangedItLog').'</strong></td>';
 echo '</tr>';
 while($row=Database::fetch_array($result)){