fix login
This commit is contained in:
parent
dba9211d5d
commit
c23cac3322
2 changed files with 3 additions and 3 deletions
|
@ -184,7 +184,7 @@ html:not(.ie8) input[type="checkbox"].checkbox:disabled +label:before { opacity:
|
|||
|
||||
html:not(.ie8) input[type="checkbox"].checkbox.u-left +label:before { float: left; }
|
||||
|
||||
html:not(.ie8) input[type="checkbox"].checkbox.white + label:before {
|
||||
html:not(.ie8) input[type="checkbox"].checkbox--white + label:before {
|
||||
background-image: url('../img/actions/checkbox-white.svg');
|
||||
}
|
||||
|
||||
|
@ -192,7 +192,7 @@ html:not(.ie8) input[type="checkbox"].checkbox:checked + label:before {
|
|||
background-image: url('../img/actions/checkbox-checked.svg');
|
||||
}
|
||||
|
||||
html:not(.ie8) input[type="checkbox"].checkbox.white:checked + label:before {
|
||||
html:not(.ie8) input[type="checkbox"].checkbox--white:checked + label:before {
|
||||
background-image: url('../img/actions/checkbox-checked-white.svg');
|
||||
}
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ script('core', [
|
|||
<?php endif; ?>
|
||||
<?php if ($_['rememberLoginAllowed'] === true) : ?>
|
||||
<div class="remember-login-container">
|
||||
<input type="checkbox" name="remember_login" value="1" id="remember_login" class="white">
|
||||
<input type="checkbox" name="remember_login" value="1" id="remember_login" class="checkbox checkbox--white">
|
||||
<label for="remember_login"><?php p($l->t('remember')); ?></label>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
|
Loading…
Reference in a new issue