Merge pull request #29713 from edx/ddumesnil/fix-max-width-text-input-aa-1114

fix: AA-1114: Set a max width on Text Input answers
This commit is contained in:
Dillon Dumesnil
2022-01-05 10:41:08 -08:00
committed by GitHub
2 changed files with 2 additions and 5 deletions

View File

@@ -23,10 +23,7 @@
% for description_id, description_text in response_data['descriptions'].items():
<p class="question-description" id="${description_id}">${description_text}</p>
% endfor
<input type="text" name="input_${id}" id="input_${id}" ${describedby_html} value="${value}"
% if do_math:
class="math"
% endif
<input type="text" class="mw-100 ${'math' if do_math else ''}" name="input_${id}" id="input_${id}" ${describedby_html} value="${value}"
% if size:
size="${size}"
% endif

View File

@@ -542,7 +542,7 @@ class TextlineTemplateTest(TemplateTestCase):
self.context['do_math'] = True
xml = self.render_to_xml(self.context)
xpath = "//input[@class='math']"
xpath = "//input[@class='mw-100 math']"
self.assert_has_xpath(xml, xpath, self.context)
xpath = "//div[@class='equation']"