Skip to content

Commit

Permalink
Enhance keyboard navigation accessibility
Browse files Browse the repository at this point in the history
  • Loading branch information
amitb0ra committed Dec 1, 2024
1 parent 85a5e3d commit 4f7b820
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions src/style/app.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -353,13 +353,15 @@
visibility: hidden;
}

.subTagsLink:hover {
.subTagsLink:hover,
.subTagsLink:focus {
color: var(--subtle-blue-grey-hover);
font-weight: 600;
text-decoration: underline;
}

.subTagsLink:hover i {
.subTagsLink:hover i,
.subTagsLink:focus i {
visibility: visible;
}

Expand Down Expand Up @@ -735,15 +737,6 @@ hr {
visibility: hidden;
}

.subTagsLink:hover {
font-weight: 600;
text-decoration: underline;
}

.subTagsLink:hover i {
visibility: visible;
}

.tagsBreadCrumbs {
color: var(--bs-gray);
cursor: pointer;
Expand All @@ -758,7 +751,8 @@ hr {
}
}

.tagsBreadCrumbs:hover {
.tagsBreadCrumbs:hover,
.tagsBreadCrumbs:focus {
color: var(--bs-blue);
font-weight: 600;
text-decoration: underline;
Expand Down

0 comments on commit 4f7b820

Please sign in to comment.