Commit efd8a77b by Tom Giannattasio

Merge pull request #632 from MITx/feature/kfiedler/problems

Fix list item issues in problems
parents d3cd85d8 3ab85d47
...@@ -41,6 +41,16 @@ section.problem { ...@@ -41,6 +41,16 @@ section.problem {
} }
} }
ol.enumerate {
li {
&:before {
content: " ";
display: block;
height: 0;
visibility: hidden;
}
}
}
div { div {
p { p {
......
...@@ -6,10 +6,6 @@ html { ...@@ -6,10 +6,6 @@ html {
div.course-wrapper { div.course-wrapper {
@extend .table-wrapper; @extend .table-wrapper;
ul, ol {
list-style: none;
}
section.course-content { section.course-content {
@extend .content; @extend .content;
padding: 40px; padding: 40px;
...@@ -47,6 +43,7 @@ div.course-wrapper { ...@@ -47,6 +43,7 @@ div.course-wrapper {
padding: 0; padding: 0;
margin: 0; margin: 0;
line-height: 1.4; line-height: 1.4;
list-style: none;
> 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