Commit 29aea44e by Kyle Fiedler

Added styles to force 100% layout on problems and fixed lab icons

parent 0ab4a4aa
...@@ -126,7 +126,7 @@ div.course-wrapper { ...@@ -126,7 +126,7 @@ div.course-wrapper {
} }
span { span {
&.unanswered { &.unanswered, &.ui-icon-bullet {
@include inline-block(); @include inline-block();
background: url('/static/images/unanswered-icon.png') center center no-repeat; background: url('/static/images/unanswered-icon.png') center center no-repeat;
height: 14px; height: 14px;
...@@ -135,7 +135,7 @@ div.course-wrapper { ...@@ -135,7 +135,7 @@ div.course-wrapper {
width: 14px; width: 14px;
} }
&.correct { &.correct, &.ui-icon-check {
@include inline-block(); @include inline-block();
background: url('/static/images/correct-icon.png') center center no-repeat; background: url('/static/images/correct-icon.png') center center no-repeat;
height: 20px; height: 20px;
...@@ -144,7 +144,7 @@ div.course-wrapper { ...@@ -144,7 +144,7 @@ div.course-wrapper {
width: 25px; width: 25px;
} }
&.incorrect { &.incorrect, &.ui-icon-close {
@include inline-block(); @include inline-block();
background: url('/static/images/incorrect-icon.png') center center no-repeat; background: url('/static/images/incorrect-icon.png') center center no-repeat;
height: 20px; height: 20px;
...@@ -183,6 +183,11 @@ div.course-wrapper { ...@@ -183,6 +183,11 @@ div.course-wrapper {
@extend .problem-set; @extend .problem-set;
} }
section.problems-wrapper {
display: table;
width: 100%;
}
ol.vert-mod { ol.vert-mod {
> li { > li {
@extend .clearfix; @extend .clearfix;
......
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