From c13bc0127fa4d9c7b0e6909f0d19b64e98dba95a Mon Sep 17 00:00:00 2001 From: Web-serfer Date: Sun, 3 May 2026 20:11:32 +0500 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5=20hover=20=D0=B4=D0=BB=D1=8F=20?= =?UTF-8?q?=D0=B7=D0=B0=D0=B3=D0=BE=D0=BB=D0=BE=D0=B2=D0=BA=D0=BE=D0=B2=20?= =?UTF-8?q?=D1=82=D0=B0=D0=B1=D0=BB=D0=B8=D1=86=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/styles/global.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontend/src/styles/global.css b/frontend/src/styles/global.css index 846224d..8b258ae 100644 --- a/frontend/src/styles/global.css +++ b/frontend/src/styles/global.css @@ -107,10 +107,15 @@ html, body { } /* Hover эффект - только для строк данных, не для заголовков */ -.post-content > div:has(> div > div:nth-child(3)) > div:not(:first-child):hover > div { +.post-content > div:has(> div > div:nth-child(3)) > div:nth-child(n+2):hover > div { background: #f8fafc; } +/* Заголовки - НИКОГДА не менять фон при hover */ +.post-content > div:has(> div > div:nth-child(3)) > div:first-child:hover > div { + background: #1e3a5f !important; +} + /* Мобильная версия */ @media (max-width: 768px) { .post-content > div:has(> div > div:nth-child(3)) {