From 3b7d75c18aa0131ec9e65f24d37d22e0b7a8d3b3 Mon Sep 17 00:00:00 2001 From: Vogeluff <72712390+Vogeluff@users.noreply.github.com> Date: Mon, 22 Jun 2026 16:43:15 +0200 Subject: [PATCH] feat(web): Add text-white-shadow to elements and increase the shadows effect (#29165) * fix(web): increase text shadow strength for white text on thumbnails * fix(web): fix class order for text-white-shadow * fixup: format fix --- web/src/app.css | 4 +++- web/src/lib/components/assets/thumbnail/Thumbnail.svelte | 2 +- web/src/routes/(user)/people/manage/+page.svelte | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/web/src/app.css b/web/src/app.css index 4435b255d2..31ac9eb4da 100644 --- a/web/src/app.css +++ b/web/src/app.css @@ -159,7 +159,9 @@ } .text-white-shadow { - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8); + text-shadow: + 0 0 4px rgba(0, 0, 0, 0.9), + 0 1px 3px rgba(0, 0, 0, 0.8); } .icon-white-drop-shadow { diff --git a/web/src/lib/components/assets/thumbnail/Thumbnail.svelte b/web/src/lib/components/assets/thumbnail/Thumbnail.svelte index 347ff3e75f..8583b9f8ac 100644 --- a/web/src/lib/components/assets/thumbnail/Thumbnail.svelte +++ b/web/src/lib/components/assets/thumbnail/Thumbnail.svelte @@ -342,7 +342,7 @@ {#if !!assetOwner}
+
{assetOwner.name}