From ede60290bfe14fe1bece6e879d6ff6f3950ac42c Mon Sep 17 00:00:00 2001 From: Web-serfer Date: Sun, 3 May 2026 20:10:21 +0500 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=B2=D0=B5=D1=80=D1=82=D0=B8=D0=BA?= =?UTF-8?q?=D0=B0=D0=BB=D1=8C=D0=BD=D1=8B=D0=B5=20=D0=B1=D0=BE=D1=80=D0=B4?= =?UTF-8?q?=D0=B5=D1=80=D1=8B=20=D0=B8=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20hover=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D0=B7=D0=B0=D0=B3=D0=BE=D0=BB=D0=BE=D0=B2=D0=BA=D0=BE?= =?UTF-8?q?=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/styles/global.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/frontend/src/styles/global.css b/frontend/src/styles/global.css index 8083ee4..846224d 100644 --- a/frontend/src/styles/global.css +++ b/frontend/src/styles/global.css @@ -83,10 +83,16 @@ html, body { .post-content > div:has(> div > div:nth-child(3)) > div > div { padding: 1rem; border-bottom: 1px solid #e2e8f0; + border-right: 1px solid #e2e8f0; background: #fff; font-size: 0.95rem; } +/* Убираем правый бордер у последней колонки */ +.post-content > div:has(> div > div:nth-child(3)) > div > div:last-child { + border-right: none; +} + /* Заголовки (первая строка) */ .post-content > div:has(> div > div:nth-child(3)) > div:first-child > div { background: #1e3a5f; @@ -100,8 +106,8 @@ html, body { border-bottom: none; } -/* Hover эффект */ -.post-content > div:has(> div > div:nth-child(3)) > div:hover > div { +/* Hover эффект - только для строк данных, не для заголовков */ +.post-content > div:has(> div > div:nth-child(3)) > div:not(:first-child):hover > div { background: #f8fafc; }