From 9ab31c3366d3a02587eebe2e9f32592a13173fa5 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Tue, 13 Dec 2022 10:26:24 +0530 Subject: [PATCH 1/2] background color fix --- core/css/guest.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/core/css/guest.css b/core/css/guest.css index 19dce78b..6ec44ae9 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -97,6 +97,13 @@ body { font-weight: 400; font-size: 16px; } +#body-login .wrapper .alternative-logins{ + padding:0; +} +#body-login .wrapper .alternative-logins .single-alt-login-option { + background-color:transparent; + padding: 0; +} #body-login .wrapper footer a{ font-size: 12px; } @@ -705,7 +712,7 @@ form .warning input[type='checkbox'] + label { display: inline-block; text-align: center; box-sizing: border-box; - background-color: #0082c9; + background-color: #0086FF; color: white; border-radius: 100px; /* --border-radius-pill */ } -- GitLab From 77a17df65e71c1495cfc1ddd0220bd94409b99e7 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Wed, 14 Dec 2022 10:29:02 +0530 Subject: [PATCH 2/2] css added for outline --- core/css/guest.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/css/guest.css b/core/css/guest.css index 6ec44ae9..1f9faf3a 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -1320,8 +1320,13 @@ a.legal { #body-login #submit-form:hover, #body-login #reset-password-submit:hover, -#body-login .two-factor-submit:hover { +#body-login .two-factor-submit:hover, +#body-login #submit-form:active, +#body-login #reset-password-submit:active, +#body-login .two-factor-submit:active { opacity: 0.9; + border: none; + outline:none; } .banner-right-align { text-align: left; -- GitLab