Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed issue #12116: Change input class from input-lg to input #635

Merged
merged 2 commits into from Mar 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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