Commit 191287db by Brian Talbot

adding visual emphasis to self assessment in grade report output

parent 3ab8d247
...@@ -1452,6 +1452,10 @@ hr.divider, ...@@ -1452,6 +1452,10 @@ hr.divider,
margin-right: 0; } margin-right: 0; }
.openassessment .submission__peer-evaluations__questions .answer:nth-child(4n+1) { .openassessment .submission__peer-evaluations__questions .answer:nth-child(4n+1) {
clear: left; } } clear: left; } }
.openassessment .submission__peer-evaluations__questions .answer.self-assessment {
border-radius: 2px;
background: #fdfdfd;
padding: 10px 20px; }
.openassessment .submission__peer-evaluations__questions .answer__source { .openassessment .submission__peer-evaluations__questions .answer__source {
display: block; display: block;
color: #aeafb3; } color: #aeafb3; }
......
...@@ -939,6 +939,13 @@ ...@@ -939,6 +939,13 @@
@include span-columns(3 of 12); @include span-columns(3 of 12);
@include omega(4n); @include omega(4n);
} }
// CASE: self assessment
&.self-assessment {
border-radius: ($baseline-v/10);
background: $color-decorative-quinternary;
padding: ($baseline-v/2) ($baseline-h/2);
}
} }
.answer__source { .answer__source {
......
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