Commit b27c8f06 by Brian Jacobel

Merge pull request #12220 from edx/bjacobel/adaptive-hint-bug

Math inputs _and_ adaptive hints are sized/positioned correctly
parents d0b8f5d4 00fcb9dd
......@@ -749,14 +749,12 @@ div.problem {
// ====================
.problem {
.capa_inputtype.textline, .inputtype.formulaequationinput {
display: inline-block;
input {
@include box-sizing(border-box);
border: 2px solid $gray-l4;
border-radius: 3px;
min-width: 160px;
width: calc(100% - 45px);
height: 46px;
}
......@@ -815,6 +813,14 @@ div.problem {
}
}
}
.inputtype.formulaequationinput {
display: inline-block;
input {
width: calc(100% - 45px);
}
}
}
......
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