From 558de5011a4017d542b2dc2b2d3177d6dda283ac Mon Sep 17 00:00:00 2001 From: vrubelroman Date: Fri, 31 Oct 2025 19:18:54 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D1=8B=20=D1=81=D1=81=D1=8B=D0=BB=D0=BA=D0=B8=20=D0=BD?= =?UTF-8?q?=D0=B0=20=D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0=BB=D0=B8=20Lichess?= =?UTF-8?q?=20=D0=B4=D0=BB=D1=8F=20=D0=B8=D0=BC=D0=B5=D0=BD=20=D0=B8=D0=B3?= =?UTF-8?q?=D1=80=D0=BE=D0=BA=D0=BE=D0=B2=20=D0=B2=20=D0=B2=D0=B5=D0=B1-?= =?UTF-8?q?=D0=B8=D0=BD=D1=82=D0=B5=D1=80=D1=84=D0=B5=D0=B9=D1=81=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Имена игроков в таблице теперь являются ссылками на их профили на Lichess - Формат ссылки: https://lichess.org/@/username - Ссылки открываются в новой вкладке - Добавлены стили для ссылок (.gamer-link) --- LichessWebView/templates/index.html | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/LichessWebView/templates/index.html b/LichessWebView/templates/index.html index 32400cb..30032f1 100644 --- a/LichessWebView/templates/index.html +++ b/LichessWebView/templates/index.html @@ -226,6 +226,17 @@ font-size: 14px; margin: 5px 0; } + + .gamer-link { + color: #667eea !important; + text-decoration: none !important; + transition: color 0.3s; + } + + .gamer-link:hover { + color: #5568d3 !important; + text-decoration: underline !important; + } @@ -379,7 +390,7 @@ ${gamers.map(gamer => ` - ${escapeHtml(gamer.username)} (ID: ${gamer.id}) + ${escapeHtml(gamer.username)} (ID: ${gamer.id}) ${gamer.is_active ? '✅ АКТИВЕН' : '⚪'}