Skip to content

Commit

Permalink
Set the background color of the tabs for :hover (closes #125).
Browse files Browse the repository at this point in the history
  • Loading branch information
postmodern committed Jul 2, 2024
1 parent 2576ee7 commit 4533ef5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions public/stylesheets/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ main > nav.breadcrumb a {
text-decoration: none;
}

.content .tabs ul li a:hover {
background-color: var(--fg-color);
}

.content .content-tab {
display: none;
}
Expand Down Expand Up @@ -214,3 +218,8 @@ body.dark-mode main strong,
body.dark-mode main a {
color: var(--dark-mode-fg-color);
}

body.dark-mode .content .tabs ul li a:hover {
color: var(--dark-mode-bg-color);
background-color: var(--dark-mode-fg-color);
}

0 comments on commit 4533ef5

Please sign in to comment.