Commit 3a970d14 by marco

restyled controls area for motion through multiple scored peer reviews

parent ab810006
...@@ -896,13 +896,25 @@ section.open-ended-child { ...@@ -896,13 +896,25 @@ section.open-ended-child {
width: 100%; width: 100%;
border-radius: 5px; border-radius: 5px;
.oe-tools-label { .oe-tools-label, .oe-tools-scores-label {
display: inline-block; display: inline-block;
padding: $baseline/2; padding: $baseline/2;
vertical-align: middle; vertical-align: middle;
font-size: 0.8em; font-size: 0.8em;
} }
.rubric-button {
padding: 8px $baseline/4;
}
.rubric-previous-button {
margin-right: $baseline/4;
}
.rubric-next-button {
margin-left: $baseline/4;
}
.next-step-button { .next-step-button {
margin: $baseline/2; margin: $baseline/2;
} }
......
...@@ -12,15 +12,18 @@ ...@@ -12,15 +12,18 @@
<span class="section-header section-header-rubric">Submitted Rubric</span> <span class="section-header section-header-rubric">Submitted Rubric</span>
</div> </div>
<div class="oe-tools rubric-header"> <div class="oe-tools rubric-header">
<span class="oe-tools-label"></span> <span class="oe-tools-label">Rubric: </span>
<button class="rubric-collapse" href="#">Show Score Only</button> <button class="rubric-collapse" href="#">Show Score Only</button>
% if len(results)>1: <span class="oe-tools-scores">
<a href="#" class="rubric-previous-button">Previous</a> <span class="oe-tools-scores-label">Scores:</span>
% endif % if len(results)>1:
${result['task_name']} from grader ${i+1} <button href="#" alt="Previous" class="rubric-button rubric-previous-button"><i class="icon-chevron-left"></i></button>
% if len(results)>1: % endif
<a href="#" class="rubric-next-button">Next</a> ${result['task_name']} from grader ${i+1}
% endif % if len(results)>1:
<button href="#" alt="Next" class="rubric-button rubric-next-button">i class="icon-chevron-right"></i></button>
% endif
</span>
</div> </div>
${result['result'] | n} ${result['result'] | n}
<div class="written-feedback"> <div class="written-feedback">
......
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