Commit 96ac506f by Adam

Merge pull request #5296 from edx/adam/hide-very-long-answers

keep large answers from appearing (TNL-441)
parents c79a6848 f57e3095
...@@ -158,7 +158,9 @@ div.problem { ...@@ -158,7 +158,9 @@ div.problem {
} }
&.status { &.status {
margin: 8px 0 0 $baseline/2; margin: 8px 0 0 $baseline/2;
text-indent: -9999px; text-indent: 100%;
white-space: nowrap;
overflow: hidden;
} }
} }
...@@ -203,7 +205,6 @@ div.problem { ...@@ -203,7 +205,6 @@ div.problem {
width: 20px; width: 20px;
height: 20px; height: 20px;
background: url('../images/incorrect-icon.png') center center no-repeat; background: url('../images/incorrect-icon.png') center center no-repeat;
text-indent: -9999px;
} }
input { input {
......
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