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

Updated: Positions of Installer Assistant footer buttons #1079

Merged
merged 2 commits into from
May 30, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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