Skip to content

Commit

Permalink
Fixed issue #12116: Change input class from input-lg to input (#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tammo authored and LouisGac committed Mar 2, 2017
1 parent ac98d1a commit 6540a98
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Expand Up @@ -46,7 +46,7 @@ class='oldcode code-title'

<input
type='text'
class="code form-control input-lg"
class="code form-control input"
id='code_<?php echo $position; ?>_<?php echo $scale_id; ?>'
class='code code-title'
name='code_<?php echo $position; ?>_<?php echo $scale_id; ?>'
Expand Down Expand Up @@ -76,7 +76,7 @@ class='code code-title'
<td class="assessment-value">
<input
type='text'
class='assessment form-control input-lg'
class='assessment form-control input'
id='assessment_<?php echo $position; ?>_<?php echo $scale_id; ?>'
name='assessment_<?php echo $position; ?>_<?php echo $scale_id; ?>'
value="<?php echo $assessment_value; ?>"
Expand Down Expand Up @@ -110,7 +110,7 @@ class='assessment'
<input
type='text'
size='20'
class='answer form-control input-lg'
class='answer form-control input'
id='answer_<?php echo $language; ?>_<?php echo $sortorder; ?>_<?php echo $scale_id; ?>'
name='answer_<?php echo $language; ?>_<?php echo $sortorder; ?>_<?php echo $scale_id; ?>'
placeholder='<?php eT("Some example answer option","js") ?>'
Expand Down
Expand Up @@ -66,7 +66,7 @@ class='oldcode code-title'

<input
type='text'
class="code form-control input-lg"
class="code form-control input"
id='code_<?php echo $qid; ?>_<?php echo $scale_id; ?>'
class='code code-title'
name='code_<?php echo $qid; ?>_<?php echo $scale_id; ?>'
Expand Down Expand Up @@ -99,7 +99,7 @@ class='code code-title'
<input
type='text'
size='20'
class='answer form-control input-lg'
class='answer form-control input'
id='answer_<?php echo $language; ?>_<?php echo $qid; ?>_<?php echo $scale_id; ?>'
name='answer_<?php echo $language; ?>_<?php echo $qid; ?>_<?php echo $scale_id; ?>'
placeholder='<?php eT("Some example subquestion","js") ?>'
Expand All @@ -111,7 +111,7 @@ class='answer form-control input-lg'
<!-- Relevance equation -->
<?php if ($first):?>
<td class="relevance-equation">
<input data-toggle="tooltip" data-title="<?php eT("Click to expand"); ?>" type='text' class='relevance form-control input-lg' id='relevance_<?php echo $qid; ?>_<?php echo $scale_id; ?>' name='relevance_<?php echo $qid; ?>_<?php echo $scale_id; ?>' value="<?php echo $relevance; ?>" onkeypress=" if(event.keyCode==13) { if (event && event.preventDefault) event.preventDefault(); document.getElementById('save-button').click(); return false;}" />
<input data-toggle="tooltip" data-title="<?php eT("Click to expand"); ?>" type='text' class='relevance form-control input' id='relevance_<?php echo $qid; ?>_<?php echo $scale_id; ?>' name='relevance_<?php echo $qid; ?>_<?php echo $scale_id; ?>' value="<?php echo $relevance; ?>" onkeypress=" if(event.keyCode==13) { if (event && event.preventDefault) event.preventDefault(); document.getElementById('save-button').click(); return false;}" />
</td>
<?php else: ?>
<span style="display: none" class="relevance relevance-equation">
Expand Down

0 comments on commit 6540a98

Please sign in to comment.