Commit 9ad20bbf by Alan Boudreault

Added an incomplete mark indicator

parent 1ae6aab7
...@@ -49,6 +49,15 @@ ...@@ -49,6 +49,15 @@
margin-top: 20px; margin-top: 20px;
} }
.mentoring .progress .indicator .checkmark { .mentoring .progress .indicator {
display: inline-block;
margin-top: 5px;
}
.mentoring .progress .indicator .checkmark-correct {
color: #006600; color: #006600;
} }
.mentoring .progress .indicator .checkmark-incorrect {
color: #ff0000;
}
<script type="text/template" id="xblock-progress-template"> <script type="text/template" id="xblock-progress-template">
<% if (completed === "True") {{ %> <% if (completed === "True") {{ %>
<i class="icon-ok icon-2x checkmark"></i> <i class="icon-ok icon-2x checkmark-correct"></i>
<% }} else {{ %>
<i class="icon-exclamation icon-2x checkmark-incorrect"></i>
<% }} %> <% }} %>
</script> </script>
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