temporary: disable follow button until supported

This commit is contained in:
ari melody 2025-07-14 04:12:20 +01:00
parent 455679a525
commit 22d6c5b90a
Signed by: ari
GPG key ID: CF99829C92678188
2 changed files with 6 additions and 6 deletions

View file

@ -139,14 +139,14 @@
border-color: transparent; border-color: transparent;
} }
a.filled:hover, a.filled:not(.disabled):hover,
button.filled:hover { button.filled:not(.disabled):hover {
color: color-mix(in srgb, var(--bg-800), white 10%); color: color-mix(in srgb, var(--bg-800), white 10%);
background-color: color-mix(in srgb, var(--accent), white 20%); background-color: color-mix(in srgb, var(--accent), white 20%);
} }
a.filled:active, a.filled:not(.disabled):active,
button.filled:active { button.filled:not(.disabled):active {
color: color-mix(in srgb, var(--bg-800), black 10%); color: color-mix(in srgb, var(--bg-800), black 10%);
background-color: color-mix(in srgb, var(--accent), black 20%); background-color: color-mix(in srgb, var(--accent), black 20%);
} }
@ -157,7 +157,7 @@
opacity: .5; opacity: .5;
background: transparent; background: transparent;
border-color: transparent; border-color: transparent;
cursor: initial; cursor: not-allowed;
} }
.icon:not(:empty) { .icon:not(:empty) {

View file

@ -166,7 +166,7 @@
</ul> </ul>
<div class="profile-actions"> <div class="profile-actions">
{#if $account && profile.fqn !== $account.fqn} {#if $account && profile.fqn !== $account.fqn}
<Button filled label="{lang.string('profile.follow')} {profile.nickname}" class="profile-btn-follow"> <Button filled disabled label="{lang.string('profile.follow')} {profile.nickname}" class="profile-btn-follow">
{lang.string('profile.follow')} {lang.string('profile.follow')}
</Button> </Button>
{/if} {/if}