Commit c7f0ba7b by Vik Paruchuri

Fix some of the styling issues

parent a7c64b8e
...@@ -47,6 +47,7 @@ class CombinedOpenEndedModule(XModule): ...@@ -47,6 +47,7 @@ class CombinedOpenEndedModule(XModule):
js = {'coffee': [resource_string(__name__, 'js/src/combinedopenended/display.coffee'), js = {'coffee': [resource_string(__name__, 'js/src/combinedopenended/display.coffee'),
resource_string(__name__, 'js/src/collapsible.coffee'), resource_string(__name__, 'js/src/collapsible.coffee'),
resource_string(__name__, 'js/src/javascript_loader.coffee'),
]} ]}
js_module_name = "CombinedOpenEnded" js_module_name = "CombinedOpenEnded"
......
...@@ -63,7 +63,6 @@ section.open-ended-child { ...@@ -63,7 +63,6 @@ section.open-ended-child {
} }
} }
div {
p { p {
&.answer { &.answer {
margin-top: -2px; margin-top: -2px;
...@@ -74,7 +73,7 @@ section.open-ended-child { ...@@ -74,7 +73,7 @@ section.open-ended-child {
} }
} }
&.unanswered { div.unanswered {
p.status { p.status {
@include inline-block(); @include inline-block();
background: url('../images/unanswered-icon.png') center center no-repeat; background: url('../images/unanswered-icon.png') center center no-repeat;
...@@ -83,7 +82,7 @@ section.open-ended-child { ...@@ -83,7 +82,7 @@ section.open-ended-child {
} }
} }
&.correct, &.ui-icon-check { div.correct, div.ui-icon-check {
p.status { p.status {
@include inline-block(); @include inline-block();
background: url('../images/correct-icon.png') center center no-repeat; background: url('../images/correct-icon.png') center center no-repeat;
...@@ -96,7 +95,7 @@ section.open-ended-child { ...@@ -96,7 +95,7 @@ section.open-ended-child {
} }
} }
&.processing { div.processing {
p.status { p.status {
@include inline-block(); @include inline-block();
background: url('../images/spinner.gif') center center no-repeat; background: url('../images/spinner.gif') center center no-repeat;
...@@ -109,7 +108,7 @@ section.open-ended-child { ...@@ -109,7 +108,7 @@ section.open-ended-child {
} }
} }
&.incorrect, &.ui-icon-close { div.incorrect, div.ui-icon-close {
p.status { p.status {
@include inline-block(); @include inline-block();
background: url('../images/incorrect-icon.png') center center no-repeat; background: url('../images/incorrect-icon.png') center center no-repeat;
...@@ -287,7 +286,6 @@ section.open-ended-child { ...@@ -287,7 +286,6 @@ section.open-ended-child {
.submit-message-container { .submit-message-container {
margin: 10px 0px ; margin: 10px 0px ;
} }
}
form.option-input { form.option-input {
margin: -10px 0 20px; margin: -10px 0 20px;
......
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