Skip to content
Snippets Groups Projects
Commit d13ac636 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2100509 by emma.maria, dcrocks, csakiistvan, Manjit.Singh: Password...

Issue #2100509 by emma.maria, dcrocks, csakiistvan, Manjit.Singh: Password strength indicator for site maintenance account is aligned incorrectly on the installation screen.
parent ce08ea73
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -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;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment