Skip to content

Commit

Permalink
reduce dictionary tag visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Sep 17, 2024
1 parent e2a812b commit 7912273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/remark-dictionary-tooltips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function createTooltip(key: string, match?: string): string {
const tt: Frontmatter | undefined = Tooltips.get(key);
if (tt) {
return `<span class="tooltip" data-tip="${tt.description}">
<a href="${URLS.INTERNAL_HOME + "/dictionary/" + tt.url}" class="underline decoration-dotted">${match || key}</a>
<a href="${URLS.INTERNAL_HOME + "/dictionary/" + tt.url}" class="underline decoration-dotted font-normal text-base-content">${match || key}</a>
</span>`;
} else {
return key;
Expand Down

0 comments on commit 7912273

Please sign in to comment.