Skip to content

Commit

Permalink
New style to preinstall check
Browse files Browse the repository at this point in the history
  • Loading branch information
ciar4n committed Aug 29, 2017
1 parent 0a43128 commit 42e5517
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion installation/template/css/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -8790,7 +8790,7 @@ body {
position: relative;
display: -ms-flexbox;
display: flex;
margin: 20px 0;
margin: 0 0 20px;
background: #fafafa;
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); }
Expand Down
2 changes: 1 addition & 1 deletion installation/template/css/template.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion installation/template/scss/template.scss
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ body {
.alert {
position: relative;
display: flex;
margin: 20px 0;
margin: 0 0 20px;
background: #fafafa;
border: 1px solid rgba(0,0,0,.1);
box-shadow: 0 0 10px rgba(0,0,0,.05);
Expand Down
11 changes: 7 additions & 4 deletions installation/view/preinstall/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@
<div id="installer-view" class="container" data-page-name="preinstall">
<div class="row">
<div class="col-md-12 mb-4">
<h3 class="text-center"><?php echo JText::_('INSTL_PRECHECK_TITLE'); ?></h3>
<hr>
<div class="row">
<div class="col-md-8 offset-md-2">
<div class="j-install-step active">
<div class="j-install-step-header">
<span class="fa fa-check" aria-hidden="true"></span> <?php echo JText::_('INSTL_PRECHECK_TITLE'); ?>
</div>
<div class="j-install-step-form">
<?php foreach ($this->options as $option) : ?>
<?php if ($option->state === 'JNO' || $option->state === false) : ?>
<div class="alert preinstall-alert">
Expand All @@ -32,6 +33,8 @@
<?php endforeach; ?>
</div>
</div>


<?php if ($option->state === false && preg_match('$configuration.php$', $option->label)) : ?>
<div id="ftpOptions" class="ftp-options mb-4 hidden">
<form action="index.php" method="post" id="ftpForm" class="form-validate">
Expand Down

0 comments on commit 42e5517

Please sign in to comment.