From 76adef7d9e819addb68894be1d211b0be7da6dba Mon Sep 17 00:00:00 2001 From: Djordje Vlaisavljevic Date: Wed, 23 Aug 2023 11:36:45 +0100 Subject: [PATCH] Fixed issue with list borders (#17792) no refs - Removed unnecessary `border-bottom` on list header and `border-top: none` that was added to avoid double borders --- ghost/admin/app/styles/components/lists.css | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ghost/admin/app/styles/components/lists.css b/ghost/admin/app/styles/components/lists.css index 020e8a3ff7..127e0014f7 100644 --- a/ghost/admin/app/styles/components/lists.css +++ b/ghost/admin/app/styles/components/lists.css @@ -48,7 +48,6 @@ ul.nostyle li { .gh-list-header { display: table-cell; vertical-align: middle; - border-bottom: var(--main-color-area-divider) 1px solid; font-size: 1.1rem; font-weight: 500; letter-spacing: 0.03em; @@ -91,10 +90,6 @@ ul.nostyle li { padding: 8px 20px; } -.gh-list-row:nth-of-type(2) .gh-list-data { - border-top: none; -} - .gh-list-row .gh-list-data:first-child { padding-left: 0; }