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; }