chore: minor improvements

This commit is contained in:
Phan An 2024-04-24 22:25:39 +02:00
parent ce37854bae
commit 9cc5e752b8
4 changed files with 6 additions and 5 deletions

View file

@ -160,11 +160,11 @@ SSO_GOOGLE_HOSTED_DOMAIN=yourdomain.com
# Koel can be configured to authenticate users via a reverse proxy.
# To enable this feature, set PROXY_AUTH_ENABLED to true and provide the necessary configuration below.
PROXY_AUTH_ENABLED=false
# The header name that contains the unique identifer for the user
# The header name that contains the unique identifier for the user
PROXY_AUTH_USER_HEADER=remote-user
# The header name that contains the user's preferred, humanly-readable name
PROXY_AUTH_PREFERRED_NAME_HEADER=remote-preferred-name
# A comma-separated list of allowed proxy IPs or CIDRs, for example 10.10.1.0/24 or 2001:0db8:/32
# A comma-separated list of allowed proxy IPs or CIDRs, for example, 10.10.1.0/24 or 2001:0db8:/32
# If empty, NO requests will be allowed (which means proxy authentication is disabled).
PROXY_AUTH_ALLOW_LIST=

View file

@ -11,7 +11,7 @@
v-show="showingInput"
ref="input"
v-model="keywords"
class="!text-k-text-primary !bg-transparent !rounded-none !pl-0 !h-[unset] placeholder:text-white/50"
class="!text-k-text-primary !bg-transparent !rounded-none !pl-0 !h-[unset] placeholder:text-white/50 focus-visible:outline-0"
placeholder="Keywords"
type="search"
/>

View file

@ -2,7 +2,7 @@
<a
v-if="currentUser"
v-koel-tooltip.left
class="view-profile"
class="view-profile rounded-full"
data-testid="view-profile-link"
href="/#/profile"
title="Profile and preferences"

View file

@ -17,7 +17,8 @@
:class="{ dirty: q }"
:placeholder="placeholder"
autocorrect="false"
class="w-full rounded-none h-[36px] !bg-transparent !text-k-text-primary !placeholder:text-white/50"
class="w-full rounded-none h-[36px] !bg-transparent !text-k-text-primary !placeholder:text-white/50
focus-visible:outline-0"
name="q"
required
spellcheck="false"