Commit 092403c1 by Tom Giannattasio

Merge pull request #688 from MITx/feature/kfiedler/submission-feedback

Style for submission feedback on problems
parents 4a9b88fc 03ad061a
...@@ -432,6 +432,19 @@ section.problem { ...@@ -432,6 +432,19 @@ section.problem {
input.save { input.save {
@extend .blue-button; @extend .blue-button;
} }
.submission_feedback {
// background: #F3F3F3;
// border: 1px solid #ddd;
// @include border-radius(3px);
// padding: 8px 12px;
// margin-top: 10px;
@include inline-block;
font-style: italic;
margin: 8px 0 0 10px;
color: #777;
-webkit-font-smoothing: antialiased;
}
} }
.detailed-solution { .detailed-solution {
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
<input type="hidden" name="problem_id" value="${ problem['name'] }"> <input type="hidden" name="problem_id" value="${ problem['name'] }">
% if check_button: % if check_button:
<input class="check" type="button" value="${ check_button }"> <input class="check ${ check_button }" type="button" value="${ check_button }">
% endif % endif
% if reset_button: % if reset_button:
<input class="reset" type="button" value="Reset"> <input class="reset" type="button" value="Reset">
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
% endif % endif
% if attempts_allowed : % if attempts_allowed :
<section class="submission_feedback"> <section class="submission_feedback">
You have used ${ attempts_used } of ${ attempts_allowed } submissions You have used ${ attempts_used } of ${ attempts_allowed } submissions
</section> </section>
% endif % endif
</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