Commit 69ae1cc2 by Diana Huang Committed by Vik Paruchuri

Clean up the styling and make the evaluation parts collapsible.

parent 54c541de
...@@ -27,8 +27,12 @@ ...@@ -27,8 +27,12 @@
<input name="reload" class="reload" type="button" value="Recheck for Feedback" onclick="document.location.reload(true);" /> <input name="reload" class="reload" type="button" value="Recheck for Feedback" onclick="document.location.reload(true);" />
% endif % endif
<div class="external-grader-message"> <div class="external-grader-message">
${msg|n} ${msg|n}
% if status in ['correct','incorrect']: % if status in ['correct','incorrect']:
<div class="collapsible evaluation-response">
<header>
<a href="#">Respond to Feedback</a>
</header>
<section id="evaluation_${id}" class="evaluation"> <section id="evaluation_${id}" class="evaluation">
How accurate do you think this grading is? How accurate do you think this grading is?
<div class="evaluation-scoring"> <div class="evaluation-scoring">
...@@ -46,6 +50,7 @@ ...@@ -46,6 +50,7 @@
<input name="submit-message" class="submit-message" type="button" value="Submit your message"/> <input name="submit-message" class="submit-message" type="button" value="Submit your message"/>
</div> </div>
</section> </section>
</div>
% endif % endif
</div> </div>
</section> </section>
...@@ -311,6 +311,15 @@ section.problem { ...@@ -311,6 +311,15 @@ section.problem {
margin-right: 20px; margin-right: 20px;
} }
.evaluation-response {
header {
text-align: right;
a {
font-size: .85em;
}
}
}
.evaluation-scoring { .evaluation-scoring {
.scoring-list { .scoring-list {
list-style-type: none; list-style-type: none;
...@@ -670,6 +679,10 @@ section.problem { ...@@ -670,6 +679,10 @@ section.problem {
color: #2C2C2C; color: #2C2C2C;
font-family: monospace; font-family: monospace;
font-size: 1em; font-size: 1em;
padding-top: 10px;
header {
font-size: 1.4em;
}
.shortform { .shortform {
font-weight: bold; font-weight: bold;
......
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