Commit b817f4ca by Vik Paruchuri

Merge remote-tracking branch 'origin/feature/vik/oe-ui' into feature/vik/oe-ui

parents f8dab92b 72bb93d4
...@@ -266,8 +266,6 @@ div.combined-rubric-container { ...@@ -266,8 +266,6 @@ div.combined-rubric-container {
h4 { h4 {
padding-top: $baseline/2; padding-top: $baseline/2;
border-color: lightgray;
border-top: 1px solid;
} }
span.rubric-category { span.rubric-category {
...@@ -892,7 +890,6 @@ section.open-ended-child { ...@@ -892,7 +890,6 @@ section.open-ended-child {
.oe-tools { .oe-tools {
display: inline-block; display: inline-block;
padding-left: $baseline;
width: 100%; width: 100%;
border-radius: 5px; border-radius: 5px;
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
</div> </div>
</div> </div>
<div class="oe-tools response-tools"> <div class="oe-tools response-tools">
<span class="oe-tools-label">Response: </span> <span class="oe-tools-label"></span>
<input type="button" value="Reset" class="reset-button" name="reset" style="display: none;"> <input type="button" value="Reset" class="reset-button" name="reset" style="display: none;">
</div> </div>
<input type="button" value="Next Step" class="next-step-button" name="reset" style="display: none;"> <input type="button" value="Next Step" class="next-step-button" name="reset" style="display: none;">
......
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
</div> </div>
</div> </div>
<div class="oe-tools response-tools"> <div class="oe-tools response-tools">
<span class="oe-tools-label">Response: </span> <span class="oe-tools-label"></span>
<input type="button" value="Reset" class="reset-button" name="reset" style="display: inline-block;"> <input type="button" value="Reset" class="reset-button" name="reset" style="display: inline-block;">
</div> </div>
</div> </div>
......
...@@ -36,10 +36,10 @@ div.peer-grading{ ...@@ -36,10 +36,10 @@ div.peer-grading{
&.submission-container{ &.submission-container{
@include clearfix; @include clearfix;
overflow-y: auto; overflow-y: auto;
height: auto;
max-height: 300px; max-height: 300px;
height: auto;
border: 1px solid #ddd; border: 1px solid #ddd;
background: #F6F6F6; background: #f6f6f6;
} }
} }
...@@ -47,7 +47,6 @@ div.peer-grading{ ...@@ -47,7 +47,6 @@ div.peer-grading{
margin: 0; margin: 0;
padding: 2px; padding: 2px;
min-width: 50px; min-width: 50px;
background-color: white;
text-size: 1.5em; text-size: 1.5em;
} }
...@@ -63,7 +62,7 @@ div.peer-grading{ ...@@ -63,7 +62,7 @@ div.peer-grading{
} }
.problem-list { .problem-list {
width:100%; width: 100%;
table-layout: auto; table-layout: auto;
text-align: center; text-align: center;
...@@ -193,6 +192,20 @@ div.peer-grading { ...@@ -193,6 +192,20 @@ div.peer-grading {
border-radius: $baseline/2; border-radius: $baseline/2;
padding: 0; padding: 0;
.peer-grading-tools {
padding: $baseline;
}
.error-container {
margin: $baseline;
border-radius: $baseline/4;
padding: $baseline/2;
}
.interstitial-page, .calibration -feedback, .calibration-interstitial-page {
padding: $baseline;
}
.prompt-wrapper { .prompt-wrapper {
padding: $baseline; padding: $baseline;
} }
......
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
% endfor % endfor
</div> </div>
<div class="oe-tools response-tools"> <div class="oe-tools response-tools">
<span class="oe-tools-label">${_("Response: ")}</span> <span class="oe-tools-label"></span>
<input type="button" value="${_('Reset')}" class="reset-button" name="reset"/> <input type="button" value="${_('Reset')}" class="reset-button" name="reset"/>
</div> </div>
</div> </div>
......
...@@ -2,8 +2,9 @@ ...@@ -2,8 +2,9 @@
<section class="container peer-grading-container"> <section class="container peer-grading-container">
<div class="peer-grading" data-ajax-url="${ajax_url}" data-use-single-location="${use_single_location}"> <div class="peer-grading" data-ajax-url="${ajax_url}" data-use-single-location="${use_single_location}">
<div class="error-container">${error_text}</div> <div class="error-container">${error_text}</div>
<h1>${_("Peer Grading")}</h1> <div class="peer-grading-tools">
<h2>${_("Instructions")}</h2> <h1 class="peer-grading-title">${_("Peer Grading")}</h1>
<h2 class="peer-grading-instructions">${_("Instructions")}</h2>
<p>${_("Here are a list of problems that need to be peer graded for this course.")}</p> <p>${_("Here are a list of problems that need to be peer graded for this course.")}</p>
% if success: % if success:
% if len(problem_list) == 0: % if len(problem_list) == 0:
...@@ -57,4 +58,5 @@ ...@@ -57,4 +58,5 @@
%endif %endif
%endif %endif
</div> </div>
</div>
</section> </section>
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