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
This commit is contained in:
Nathan Sprenkle
2020-03-17 11:16:24 -04:00
committed by GitHub
parent 98e5b9d4a3
commit 8219ddc40a
2 changed files with 6 additions and 2 deletions

View File

@@ -27,7 +27,7 @@
"users to teams."
) %>
</p>
<div class="upload-team-csv btn action action-primary">
<button class="upload-team-csv btn action action-primary">
<input
id="upload-team-csv-input"
type="file"
@@ -35,7 +35,7 @@
class="input-overlay-hack"
/>
<%- gettext("Upload Memberships") %>
</div>
</button>
<!-- We need to describe the format of the CSV here (TODO MST-49) -->
<div class="page-banner" hidden>
<div class="alert alert-danger" role="alert">

View File

@@ -550,6 +550,10 @@
.action-primary {
@extend %btn-primary-blue;
&:focus {
border: inherit;
box-shadow: none;
}
display: inline-block;
text-shadow: none;
}