Issue #2100509 by emma.maria, dcrocks, csakiistvan, Manjit.Singh: Password strength indicator for site maintenance account is aligned incorrectly on the installation screen.
parent
ce08ea737c
commit
d13ac6367c
|
@ -21,7 +21,7 @@
|
|||
* Password strength indicator.
|
||||
*/
|
||||
.password-strength {
|
||||
width: 17em;
|
||||
width: 13em;
|
||||
float: right; /* LTR */
|
||||
}
|
||||
[dir="rtl"] .password-strength {
|
||||
|
@ -51,11 +51,16 @@ input.password-confirm,
|
|||
input.password-field {
|
||||
width: 13.7em;
|
||||
margin-bottom: 0.4em;
|
||||
float: left; /* LTR */
|
||||
}
|
||||
div.password-confirm {
|
||||
float: right; /* LTR */
|
||||
visibility: hidden;
|
||||
width: 17em;
|
||||
width: 13em;
|
||||
}
|
||||
[dir="rtl"] input.password-confirm,
|
||||
[dir="rtl"] input.password-field {
|
||||
float: right;
|
||||
}
|
||||
[dir="rtl"] div.password-confirm {
|
||||
float: left;
|
||||
|
@ -74,6 +79,7 @@ div.password-suggestions ul {
|
|||
clear: left; /* LTR */
|
||||
margin: 0;
|
||||
max-width: 33em;
|
||||
overflow: hidden;
|
||||
}
|
||||
[dir="rtl"] .confirm-parent,
|
||||
[dir="rtl"] .password-parent {
|
||||
|
@ -108,5 +114,6 @@ div.password-suggestions ul {
|
|||
clear: none;
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -174,11 +174,15 @@ body.install-page #page-title {
|
|||
float: none;
|
||||
width: auto;
|
||||
}
|
||||
@media all and (max-width: 975px) and (min-width: 48em) {
|
||||
@media all and (max-width: 1010px) and (min-width: 48em) {
|
||||
.install-page .password-strength,
|
||||
.install-page .confirm-parent,
|
||||
.install-page div.password-confirm {
|
||||
float: none;
|
||||
width: auto;
|
||||
}
|
||||
input.password-confirm,
|
||||
input.password-field {
|
||||
float: none;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue