Skip to content

Commit 4e1851d

Browse files
MDA2AVclaude
andcommitted
Fix nav custom CSS selectors to match actual href attributes
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e3ce65b commit 4e1851d

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

docs/assets/css/custom.css

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
/* Probe Results — primary nav item */
2-
nav.hextra-max-navbar-width a[href*="/probe-results/"] {
3-
font-weight: 700;
2+
a[href$="/probe-results"],
3+
a[href$="/probe-results/"] {
4+
font-weight: 700 !important;
45
}
56

67
/* Separator before Glossary */
7-
nav.hextra-max-navbar-width a[href*="/glossary/"] {
8-
margin-left: 12px;
9-
padding-left: 14px;
10-
border-left: 1px solid rgba(128, 128, 128, 0.3);
8+
a[href$="/glossary"],
9+
a[href$="/glossary/"] {
10+
margin-left: 12px !important;
11+
padding-left: 14px !important;
12+
border-left: 1px solid rgba(128, 128, 128, 0.3) !important;
1113
}

0 commit comments

Comments
 (0)