Skip to content

Commit

Permalink
Merge pull request joomla#55 from ciar4n/password-icon
Browse files Browse the repository at this point in the history
Remove header margin - add password icon
  • Loading branch information
Dimitri Grammatikogianni committed May 30, 2017
2 parents e143c1a + 7519981 commit e95fb4a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 14 deletions.
2 changes: 0 additions & 2 deletions installation/model/forms/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@
class="form-control validate-password-strength"
label="INSTL_ADMIN_PASSWORD_LABEL"
required="true"
strengthmeter="true"
forcePassword="true"
autocomplete="off"
/>

Expand Down
8 changes: 3 additions & 5 deletions installation/template/css/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -8713,21 +8713,19 @@ form {
.container-header {
position: relative;
height: 230px;
background-color: #173149;
box-shadow: 0 0 80px rgba(0, 0, 0, 0.4); }
background-color: #1c3d5c; }

.container-main {
position: relative;
z-index: 1060;
padding-top: 100px;
margin-top: -20px;
margin-bottom: 100px;
background-color: #fff;
box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1), inset 0 7px 0 #e8e6e6; }
box-shadow: 0 0 80px rgba(0, 0, 0, 0.1), inset 0 7px 0 #e8e6e6; }

.header {
color: #fff;
background-color: #1b3956;
background-color: #1c3d5c;
background-repeat: no-repeat;
box-shadow: 0 7px 0 0 #2a5c8b; }
.header .logo {
Expand Down
2 changes: 1 addition & 1 deletion installation/template/css/template.css.map

Large diffs are not rendered by default.

8 changes: 3 additions & 5 deletions installation/template/scss/template.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,20 @@ form {
.container-header {
position: relative;
height: 230px;
background-color: #173149;
box-shadow: 0 0 80px rgba(0,0,0,.4);
background-color: #1c3d5c;
}
.container-main {
position: relative;
z-index: 1060;
padding-top: 100px;
margin-top: -20px;
margin-bottom: 100px;
background-color: #fff;
box-shadow: 0 40px 80px rgba(0,0,0,.1), inset 0 7px 0 #e8e6e6;
box-shadow: 0 0 80px rgba(0,0,0,.1), inset 0 7px 0 #e8e6e6;
}

.header {
color: #fff;
background-color: #1b3956;
background-color: #1c3d5c;
background-repeat: no-repeat;
box-shadow: 0 7px 0 0 #2a5c8b;
.logo {
Expand Down
6 changes: 5 additions & 1 deletion installation/view/site/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@
</div>
<div class="col-md-8 offset-md-2">
<?php // Disables autocomplete ?> <input type="password" style="display:none">
<?php echo $this->form->getInput('admin_password'); ?>
<div class="input-group">
<?php echo $this->form->getInput('admin_password'); ?>
<span class="input-group-addon fa fa-eye"></span>
</div>

<p class="form-text text-muted small"><?php echo JText::_('INSTL_ADMIN_PASSWORD_DESC'); ?></p>
</div>
</div>
Expand Down

0 comments on commit e95fb4a

Please sign in to comment.