Commit 7312f9fd by Brian Talbot

Merge pull request #5145 from edx/talbs/fix-lms-button-focus

LMS: resolves focus background-color issue of 3rd party login buttons
parents a346fcca f77466d0
...@@ -533,24 +533,33 @@ ...@@ -533,24 +533,33 @@
margin-right: 0; margin-right: 0;
} }
&.button-Google:hover { &.button-Google:hover, &.button-Google:focus {
box-shadow: 0 2px 1px 0 #8D3024;
background-color: #dd4b39; background-color: #dd4b39;
border: 1px solid #A5382B; border: 1px solid #A5382B;
} }
&.button-Facebook:hover { &.button-Google:hover {
box-shadow: 0 2px 1px 0 #30487C; box-shadow: 0 2px 1px 0 #8D3024;
}
&.button-Facebook:hover, &.button-Facebook:focus {
background-color: #3b5998; background-color: #3b5998;
border: 1px solid #263A62; border: 1px solid #263A62;
} }
&.button-LinkedIn:hover { &.button-Facebook:hover {
box-shadow: 0 2px 1px 0 #005D8E; box-shadow: 0 2px 1px 0 #30487C;
}
&.button-LinkedIn:hover , &.button-LinkedIn:focus {
background-color: #0077b5; background-color: #0077b5;
border: 1px solid #06527D; border: 1px solid #06527D;
} }
&.button-LinkedIn:hover {
box-shadow: 0 2px 1px 0 #005D8E;
}
} }
} }
......
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