diff --git a/CONTRIBUTORS b/CONTRIBUTORS index a0fd6d4c1..05c4d5854 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -129,7 +129,7 @@ Ben Yip mmjang <752515918@qq.com> shunlog 3ter -Derek Dang +Derek Dang ******************** diff --git a/ts/deck-options/SettingTitle.svelte b/ts/deck-options/SettingTitle.svelte index f4c6907d8..f0bd21cd7 100644 --- a/ts/deck-options/SettingTitle.svelte +++ b/ts/deck-options/SettingTitle.svelte @@ -2,6 +2,8 @@ Copyright: Ankitects Pty Ltd and contributors License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html --> + +
diff --git a/ts/deck-options/TabbedValue.svelte b/ts/deck-options/TabbedValue.svelte index 57d027654..56cc4d145 100644 --- a/ts/deck-options/TabbedValue.svelte +++ b/ts/deck-options/TabbedValue.svelte @@ -45,7 +45,7 @@
    {#each tabs as tab, idx}
  • - {tab.title} +
  • {/each}
@@ -61,19 +61,22 @@ list-style: none; } - span { + button { display: block; white-space: nowrap; cursor: pointer; color: var(--fg-subtle); + border: none; + background-color: transparent; } - li.active > span { + li.active > button { color: var(--fg); border-bottom: 4px solid var(--border-focus); margin-bottom: -2px; + border-radius: 0; } - span:hover { + button:hover { color: var(--fg); }