From 8219ddc40a41a0bb7d4ec8718deafc2925408294 Mon Sep 17 00:00:00 2001
From: Nathan Sprenkle
Date: Tue, 17 Mar 2020 11:16:24 -0400
Subject: [PATCH] Fix A11y issues on Team Management tab (#23403)
* Change upload div to a button for focus styling
* Fix team membership button resize on focus
* Remove box shadow from focus styling
---
lms/djangoapps/teams/static/teams/templates/manage.underscore | 4 ++--
lms/static/sass/views/_teams.scss | 4 ++++
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/lms/djangoapps/teams/static/teams/templates/manage.underscore b/lms/djangoapps/teams/static/teams/templates/manage.underscore
index 460769a1cb..8dd1b32dd1 100644
--- a/lms/djangoapps/teams/static/teams/templates/manage.underscore
+++ b/lms/djangoapps/teams/static/teams/templates/manage.underscore
@@ -27,7 +27,7 @@
"users to teams."
) %>
-
diff --git a/lms/static/sass/views/_teams.scss b/lms/static/sass/views/_teams.scss
index 3d13841df8..7526e8ee25 100644
--- a/lms/static/sass/views/_teams.scss
+++ b/lms/static/sass/views/_teams.scss
@@ -550,6 +550,10 @@
.action-primary {
@extend %btn-primary-blue;
+ &:focus {
+ border: inherit;
+ box-shadow: none;
+ }
display: inline-block;
text-shadow: none;
}