Commit 91fef898 by Brian Talbot

Merge pull request #209 from edx/talbs/ui-rubricreport

UI Clean Up - Rubric Questions in Grade Report
parents cdf68aca 0c63b97e
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -986,25 +986,28 @@ ...@@ -986,25 +986,28 @@
} }
@include media($bp-dm) { @include media($bp-dm) {
@include span-columns(3 of 12); @include span-columns(4 of 12);
@include omega(4n); @include omega(3n);
} }
@include media($bp-dl) { @include media($bp-dl) {
@include span-columns(3 of 12); @include span-columns(4 of 12);
@include omega(4n); @include omega(3n);
} }
@include media($bp-dx) { @include media($bp-dx) {
@include span-columns(3 of 12); @include span-columns(4 of 12);
@include omega(4n); @include omega(3n);
} }
// CASE: self assessment // CASE: self assessment
&.self-assessment { &.self-assessment {
border-radius: ($baseline-v/10); border-left: ($baseline-h/8) solid $color-decorative-quaternary;
background: $color-decorative-quaternary; padding-left: ($baseline-h/2);
padding: ($baseline-v/2) ($baseline-h/2);
.answer__source {
color: $color-decorative-tertiary;
}
} }
} }
...@@ -1023,9 +1026,19 @@ ...@@ -1023,9 +1026,19 @@
} }
.answer__value__value { .answer__value__value {
@extend %hd-3; @extend %hd-2;
@extend %t-strong; @extend %t-strong;
color: $heading-color; color: $heading-color;
.ui-hint {
@extend %trans-color;
color: $color-decorative-tertiary;
// STATE: hover - needed to reset color to what's expected from _navigation.scss (TODO: clean up specificity)
&:hover, &:focus {
color: $action-primary-color-focus;
}
}
} }
.answer__score, .answer__score__value { .answer__score, .answer__score__value {
...@@ -1043,7 +1056,7 @@ ...@@ -1043,7 +1056,7 @@
} }
.answer__value { .answer__value {
@extend %copy-3; @extend %copy-2;
} }
} }
} }
......
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