Commit ef9935d2 by hamzamunir7300 Committed by GitHub

Merge pull request #15591 from edx/Learner-1254

Background color changed for microsoft button in social auth login
parents 9b15f580 3f9f0781
...@@ -15,6 +15,9 @@ _MIDDLEWARE_CLASSES = ( ...@@ -15,6 +15,9 @@ _MIDDLEWARE_CLASSES = (
'third_party_auth.middleware.ExceptionMiddleware', 'third_party_auth.middleware.ExceptionMiddleware',
) )
_SOCIAL_AUTH_LOGIN_REDIRECT_URL = '/dashboard' _SOCIAL_AUTH_LOGIN_REDIRECT_URL = '/dashboard'
_SOCIAL_AUTH_AZUREAD_OAUTH2_AUTH_EXTRA_ARGUMENTS = {
'msafed': 0
}
def apply_settings(django_settings): def apply_settings(django_settings):
...@@ -35,6 +38,9 @@ def apply_settings(django_settings): ...@@ -35,6 +38,9 @@ def apply_settings(django_settings):
# Where to send the user once social authentication is successful. # Where to send the user once social authentication is successful.
django_settings.SOCIAL_AUTH_LOGIN_REDIRECT_URL = _SOCIAL_AUTH_LOGIN_REDIRECT_URL django_settings.SOCIAL_AUTH_LOGIN_REDIRECT_URL = _SOCIAL_AUTH_LOGIN_REDIRECT_URL
# Adding extra key value pair in the url query string for microsoft as per request
django_settings.SOCIAL_AUTH_AZUREAD_OAUTH2_AUTH_EXTRA_ARGUMENTS = _SOCIAL_AUTH_AZUREAD_OAUTH2_AUTH_EXTRA_ARGUMENTS
# Inject our customized auth pipeline. All auth backends must work with # Inject our customized auth pipeline. All auth backends must work with
# this pipeline. # this pipeline.
django_settings.SOCIAL_AUTH_PIPELINE = [ django_settings.SOCIAL_AUTH_PIPELINE = [
......
...@@ -201,7 +201,7 @@ $twitter-blue: #55ACEE; ...@@ -201,7 +201,7 @@ $twitter-blue: #55ACEE;
$facebook-blue: #3B5998; $facebook-blue: #3B5998;
$linkedin-blue: #0077B5; $linkedin-blue: #0077B5;
$google-red: #D73924; $google-red: #D73924;
$microsoft-blue: #00BCF2; $microsoft-black: #000000;
// shadows // shadows
$shadow: rgba(0,0,0,0.2) !default; $shadow: rgba(0,0,0,0.2) !default;
......
...@@ -520,16 +520,16 @@ ...@@ -520,16 +520,16 @@
} }
&.button-oa2-azuread-oauth2 { &.button-oa2-azuread-oauth2 {
color: darken($microsoft-blue, 20%); color: $microsoft-black;
.icon { .icon {
background: $microsoft-blue; background: $microsoft-black;
} }
&:hover, &:hover,
&:focus { &:focus {
background-color: $microsoft-blue; background-color: $microsoft-black;
border: 1px solid $microsoft-blue; border: 1px solid $microsoft-black;
color: $white; color: $white;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment