From 3e62a2a01c16eaf1a6671adf49c76d75613eab50e79ef9f0e20888dd92220325 Mon Sep 17 00:00:00 2001 From: AidarKC Date: Tue, 19 May 2026 14:18:20 +0300 Subject: [PATCH] =?UTF-8?q?UI:=20=D0=BA=D0=BE=D0=BC=D0=BF=D0=B0=D0=BA?= =?UTF-8?q?=D1=82=D0=BD=D0=B0=D1=8F=20=D1=82=D1=91=D0=BC=D0=BD=D0=B0=D1=8F?= =?UTF-8?q?=20=D0=BF=D0=BB=D0=B8=D1=82=D0=BA=D0=B0=20=D0=B0=D0=B2=D1=82?= =?UTF-8?q?=D0=BE=D1=80=D0=B0=20=D0=B8=20=D0=BA=D0=BE=D1=80=D1=80=D0=B5?= =?UTF-8?q?=D0=BA=D1=82=D0=BD=D1=8B=D0=B9=20=D0=BF=D0=B5=D1=80=D0=B5=D1=85?= =?UTF-8?q?=D0=BE=D0=B4=20=D0=B2=20=D0=BF=D1=80=D0=BE=D1=84=D0=B8=D0=BB?= =?UTF-8?q?=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VERSION.properties | 4 ++-- shine-UI/js/pages/channel-view.js | 2 +- shine-UI/styles/components.css | 24 ++++++++++++++---------- 3 files changed, 17 insertions(+), 13 deletions(-) diff --git a/VERSION.properties b/VERSION.properties index 5373409..8edead6 100644 --- a/VERSION.properties +++ b/VERSION.properties @@ -1,2 +1,2 @@ -client.version=1.2.67 -server.version=1.2.61 +client.version=1.2.68 +server.version=1.2.62 diff --git a/shine-UI/js/pages/channel-view.js b/shine-UI/js/pages/channel-view.js index 6150e38..38c2c20 100644 --- a/shine-UI/js/pages/channel-view.js +++ b/shine-UI/js/pages/channel-view.js @@ -661,7 +661,7 @@ function renderPostCard(post, { event.stopPropagation(); const cleanLogin = String(post.authorLogin || '').trim(); if (!cleanLogin) return; - navigate(`user/${encodeRoutePart(cleanLogin)}/channel-view`); + navigate(`user/${encodeRoutePart(cleanLogin)}`); }); const body = document.createElement('p'); diff --git a/shine-UI/styles/components.css b/shine-UI/styles/components.css index dd96847..977def9 100644 --- a/shine-UI/styles/components.css +++ b/shine-UI/styles/components.css @@ -2172,32 +2172,36 @@ textarea.input { } .channel-message-author-tile { + appearance: none; + -webkit-appearance: none; display: flex; align-items: center; gap: 12px; width: 100%; - padding: 10px 12px; + padding: 8px 10px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.12); - background: rgba(255, 255, 255, 0.04); + background: rgba(19, 24, 33, 0.9); + color: #f5f8ff; text-align: left; cursor: pointer; + min-height: 0; } .channel-message-author-tile:hover { - background: rgba(255, 255, 255, 0.08); + background: rgba(28, 35, 48, 0.94); } .channel-message-avatar { - width: 44px; - height: 44px; - min-width: 44px; - min-height: 44px; + width: 34px; + height: 34px; + min-width: 34px; + min-height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; - font-size: 17px; + font-size: 14px; font-weight: 700; color: #f4f6ff; background: radial-gradient(circle at 30% 30%, #8a73ff, #4f4bda 58%, #3b2b89); @@ -2210,7 +2214,7 @@ textarea.input { } .channel-message-title { - font-size: 20px; + font-size: 15px; color: #f5f8ff; } @@ -2227,7 +2231,7 @@ textarea.input { } .channel-message-time { - font-size: 12px; + font-size: 11px; color: rgba(255, 255, 255, 0.48); }