diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 05c4d5854..48e989de6 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -130,6 +130,7 @@ mmjang <752515918@qq.com> shunlog 3ter Derek Dang +Kehinde Adeleke ******************** diff --git a/ts/graphs/CardCounts.svelte b/ts/graphs/CardCounts.svelte index 9f39e9fa8..06f192430 100644 --- a/ts/graphs/CardCounts.svelte +++ b/ts/graphs/CardCounts.svelte @@ -64,7 +64,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html ■  {#if $prefs.browserLinksSupported} - dispatch('search', { query: d.query })}>{d.label} + {:else} {d.label} {/if} @@ -124,8 +124,16 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html } } - .search-link:hover { + .search-link { + border: none; + background: transparent; cursor: pointer; + box-shadow: none; + padding: 1px 3px; + margin-bottom: 0px; + } + + .search-link:hover { color: var(--fg-link); text-decoration: underline; }