Skip to content

Commit

Permalink
Fix text color when sidebar entry is focused so it is not white on wh…
Browse files Browse the repository at this point in the history
…ite, and is instead white on no background color, as was the case in hyrax 3.
  • Loading branch information
bbpennel committed Oct 23, 2023
1 parent 3dd8134 commit cfcf118
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/assets/stylesheets/hyrax/sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,14 @@ $gutter-width: $grid-gutter-width/2;
li {
white-space: nowrap;

> a:hover, > a:focus {
> a:focus {
color: $admin-sidebar-link-color;
}

> a:hover {
text-decoration: none;
background-color: $admin-sidebar-link-background-color;
color: $admin-sidebar-link-hover-color;
}
}

Expand Down

0 comments on commit cfcf118

Please sign in to comment.