From 9c72a270035007bb2c72fad54ad26437dab9d90f Mon Sep 17 00:00:00 2001 From: ImpulsiveFPS Date: Mon, 2 Feb 2026 13:56:39 +0100 Subject: [PATCH] Fix: Convert Immich to anchor tag, create immich.html dummy page, simplify click CSS --- index.html | 6 +- services/immich.html | 440 +++++++++++++++++++++++++++++++++++++++++++ styles.css | 27 +-- 3 files changed, 450 insertions(+), 23 deletions(-) create mode 100644 services/immich.html diff --git a/index.html b/index.html index acab492..159d9eb 100644 --- a/index.html +++ b/index.html @@ -354,7 +354,7 @@ -
+
πŸ–ΌοΈ

Immich

@@ -365,10 +365,10 @@
- +
- +
diff --git a/services/immich.html b/services/immich.html new file mode 100644 index 0000000..da0bde1 --- /dev/null +++ b/services/immich.html @@ -0,0 +1,440 @@ + + + + + + Immich - Login + + + +
+ πŸ”’ This is a demo login page. The real service is private. ← Back to LemonLink +
+ +
+
+
+
+
+
+ +
+ + + +
+ + + + + + diff --git a/styles.css b/styles.css index 319e46f..edc18da 100644 --- a/styles.css +++ b/styles.css @@ -1959,30 +1959,17 @@ body { } /* Ensure service cards are clickable */ .service-card { - cursor: pointer !important; - position: relative !important; - z-index: 1 !important; -} - -.service-card * { - pointer-events: none !important; -} - -.service-card a, -.service-card[href] { - pointer-events: auto !important; + cursor: pointer; + position: relative; } /* Fix service glow - don't block clicks */ .service-glow { - pointer-events: none !important; + pointer-events: none; } -/* Ensure links are on top */ -a.service-card, -a.service-card:link, -a.service-card:visited { - display: block !important; - text-decoration: none !important; - z-index: 10 !important; +/* Ensure anchor service cards work properly */ +a.service-card { + display: block; + text-decoration: none; }