From cf2a500a071ac0516e2c5f768b8490b7dcc2d976 Mon Sep 17 00:00:00 2001 From: Gigi Date: Wed, 15 Oct 2025 14:39:43 +0200 Subject: [PATCH] style(bookmarks): remove border from compact view bookmarks --- src/styles/components/cards.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/components/cards.css b/src/styles/components/cards.css index 0a4c02a8..20726263 100644 --- a/src/styles/components/cards.css +++ b/src/styles/components/cards.css @@ -38,8 +38,8 @@ .individual-bookmark:hover { border-color: var(--color-border); background: var(--color-bg-elevated); } /* Compact view */ -.individual-bookmark.compact { padding: 0.5rem 0.5rem; background: transparent; border: none; border-bottom: 1px solid var(--color-bg-elevated); border-radius: 0; box-shadow: none; width: 100%; max-width: 100%; overflow: hidden; } -.individual-bookmark.compact:hover { background: var(--color-bg-elevated); border-bottom-color: var(--color-border); transform: none; box-shadow: none; } +.individual-bookmark.compact { padding: 0.5rem 0.5rem; background: transparent; border: none; border-radius: 0; box-shadow: none; width: 100%; max-width: 100%; overflow: hidden; } +.individual-bookmark.compact:hover { background: var(--color-bg-elevated); transform: none; box-shadow: none; } .compact-row { display: flex; align-items: center; gap: 0.5rem; height: 28px; width: 100%; min-width: 0; overflow: hidden; } .compact-thumbnail { width: 24px; height: 24px; flex-shrink: 0; border-radius: 4px; overflow: hidden; background: var(--color-bg-elevated); display: flex; align-items: center; justify-content: center; } .compact-thumbnail img { width: 100%; height: 100%; object-fit: cover; }