Skip to content

Commit

Permalink
Merge pull request #1079 from abhishek-webkul/gli-1826
Browse files Browse the repository at this point in the history
Updated: Positions of Installer Assistant footer buttons
  • Loading branch information
rohit053 authored May 30, 2024
2 parents b4f20e2 + 025ebc2 commit ca06fa6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions install/theme/view.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ div#leftpannel{
}

div#buttons{
clear:both;
margin:0 0 0 295px;
height:60px;
margin-top: 20px;
margin-bottom: 20px;
width:650px;
padding:0 14px;
}
* html div#buttons {
margin-bottom:60px;
Expand Down
26 changes: 13 additions & 13 deletions install/theme/views/footer.phtml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
</div><!-- div id="sheet_step" -->
</div><!-- div id="sheets" -->

<div id="buttons">
<?php if (!$this->isLastStep()): ?>
<?php if ($this->next_button): ?>
<input id="btNext" class="button little" type="submit" name="submitNext" value="<?php echo $this->l('Next') ?>" />
<?php else: ?>
<input id="btNext" class="button little disabled" type="submit" name="submitNext" value="<?php echo $this->l('Next') ?>" disabled="disabled" />
<div id="buttons" class="clearfix">
<?php if (!$this->isLastStep()): ?>
<?php if ($this->next_button): ?>
<input id="btNext" class="button little" type="submit" name="submitNext" value="<?php echo $this->l('Next') ?>" />
<?php else: ?>
<input id="btNext" class="button little disabled" type="submit" name="submitNext" value="<?php echo $this->l('Next') ?>" disabled="disabled" />
<?php endif; ?>
<?php endif; ?>
<?php endif; ?>

<?php if (!$this->isFirstStep() && $this->previous_button): ?>
<input id="btBack" class="button little" type="submit" name="submitPrevious" value="<?php echo $this->l('Back') ?>" />
<?php endif; ?>
</div>
<?php if (!$this->isFirstStep() && $this->previous_button): ?>
<input id="btBack" class="button little" type="submit" name="submitPrevious" value="<?php echo $this->l('Back') ?>" />
<?php endif; ?>
</div>
</div><!-- div id="sheets" -->
</form>

<div id="phone_help">
<?php echo sprintf($this->l('If you need some assistance, you can <a href="%1$s" onclick="return !window.open(this.href);">get tailored help</a> from our support team. <a href="%2$s" onclick="return !window.open(this.href);">The official documentation</a> is also here to guide you.'), $this->getTailoredHelp(), $this->getDocumentationLink()) ?>
</div>
Expand Down
2 changes: 1 addition & 1 deletion install/theme/views/header.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
</div>

<!-- Page content -->
<form id="mainForm" action="index.php" method="post">
<form id="mainForm" class="clearfix" action="index.php" method="post">
<div id="sheets" class="sheet shown">
<div id="sheet_<?php echo $this->step ?>" class="sheet shown clearfix">
<div class="contentTitle">
Expand Down

0 comments on commit ca06fa6

Please sign in to comment.