Commit 4b3b9635 by Bridger Maxwell

Fixed capitalization in gradebook css.

parent 8a44c5e3
...@@ -11,11 +11,11 @@ ...@@ -11,11 +11,11 @@
<%static:css group='course'/> <%static:css group='course'/>
<style type="text/css"> <style type="text/css">
.grade_a {color:green;} .grade_A {color:green;}
.grade_b {color:Chocolate;} .grade_B {color:Chocolate;}
.grade_c {color:DarkSlateGray;} .grade_C {color:DarkSlateGray;}
.grade_f {color:DimGray;} .grade_F {color:DimGray;}
.grade_none {color:LightGray;} .grade_None {color:LightGray;}
</style> </style>
</%block> </%block>
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
data_class = "grade_" + letter_grade data_class = "grade_" + letter_grade
%> %>
<td class="${data_class}">${ "{0:.0%}".format( percentage ) }</td> <td class="${data_class}" data-percent="${percentage}">${ "{0:.0%}".format( percentage ) }</td>
</%def> </%def>
%for student in students: %for student in students:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment