Skip to content

Commit

Permalink
improve treeview selection indicator: rounded corners
Browse files Browse the repository at this point in the history
  • Loading branch information
jothepro committed Mar 26, 2022
1 parent ccedae8 commit 10cf1bf
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion doxygen-awesome.css
Original file line number Diff line number Diff line change
Expand Up @@ -773,9 +773,21 @@ html.dark-mode iframe#MSearchResults {
text-shadow: none;
background-image: none;
background-color: transparent;
box-shadow: inset 4px 0 0 0 var(--primary-color);
position: relative;
}

#nav-tree .selected::after {
content: "";
position: absolute;
top: 1px;
bottom: 1px;
left: 0;
width: 4px;
border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
background: var(--primary-color);
}


#nav-tree a {
color: var(--side-nav-foreground) !important;
font-weight: normal;
Expand Down

0 comments on commit 10cf1bf

Please sign in to comment.