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

This commit is contained in:
Kyle Fiedler
2012-02-06 14:50:38 -05:00
parent 0ab4a4aac2
commit 29aea44eaf

View File

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