From 16921d03ef5e95f1813aeea4957d7687171bf29e Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Fri, 3 May 2024 15:08:47 -0700 Subject: [PATCH 1/4] Correcting password strength lines --- scss/ecloud-accounts-userregistration.scss | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/scss/ecloud-accounts-userregistration.scss b/scss/ecloud-accounts-userregistration.scss index 59c283c2..a53b8a33 100644 --- a/scss/ecloud-accounts-userregistration.scss +++ b/scss/ecloud-accounts-userregistration.scss @@ -48,4 +48,11 @@ html { #fields-password .Password__strength-meter { margin-bottom: 0; -} \ No newline at end of file +} +.Password__strength-meter:before { + left: 50px; +} + +.Password__strength-meter:after { + right: 50px; +} -- GitLab From e56de7f70949aa69bf76c1727f128fc4e900b09d Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Fri, 3 May 2024 15:13:14 -0700 Subject: [PATCH 2/4] Correcting password strength lines --- scss/ecloud-accounts-userregistration.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scss/ecloud-accounts-userregistration.scss b/scss/ecloud-accounts-userregistration.scss index a53b8a33..1490b85b 100644 --- a/scss/ecloud-accounts-userregistration.scss +++ b/scss/ecloud-accounts-userregistration.scss @@ -49,10 +49,10 @@ html { #fields-password .Password__strength-meter { margin-bottom: 0; } -.Password__strength-meter:before { +#fields-password .Password__strength-meter:before { left: 50px; } -.Password__strength-meter:after { +#fields-password .Password__strength-meter:after { right: 50px; } -- GitLab From 84645c37a4e8f67cb22d98dbfcef53441e2e67c1 Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Tue, 7 May 2024 13:09:46 -0700 Subject: [PATCH 3/4] straight line --- scss/ecloud-accounts-userregistration.scss | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scss/ecloud-accounts-userregistration.scss b/scss/ecloud-accounts-userregistration.scss index 1490b85b..f66d8a24 100644 --- a/scss/ecloud-accounts-userregistration.scss +++ b/scss/ecloud-accounts-userregistration.scss @@ -50,9 +50,11 @@ html { margin-bottom: 0; } #fields-password .Password__strength-meter:before { - left: 50px; + left: 0; } - #fields-password .Password__strength-meter:after { - right: 50px; + right: 0; +} +.Password__strength-meter:after, .Password__strength-meter:before{ + width: 100%; } -- GitLab From ab6a19d4b84df23eb07780703166d7f7c0ec8a43 Mon Sep 17 00:00:00 2001 From: Ronak Patel Date: Tue, 7 May 2024 13:12:54 -0700 Subject: [PATCH 4/4] straight line --- scss/ecloud-accounts-userregistration.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/ecloud-accounts-userregistration.scss b/scss/ecloud-accounts-userregistration.scss index f66d8a24..02f834d4 100644 --- a/scss/ecloud-accounts-userregistration.scss +++ b/scss/ecloud-accounts-userregistration.scss @@ -55,6 +55,6 @@ html { #fields-password .Password__strength-meter:after { right: 0; } -.Password__strength-meter:after, .Password__strength-meter:before{ +#fields-password .Password__strength-meter:after, #fields-password .Password__strength-meter:before{ width: 100%; } -- GitLab