From 7266ca869f184b0f2bece86f93dc8bb7b47392de Mon Sep 17 00:00:00 2001 From: Sodbileg Gansukh Date: Wed, 10 Jul 2024 18:27:45 +0800 Subject: [PATCH] Set explicit text color to the bookmark card content (#20578) ref DES-263 - we've recently started forcing white background color to the bookmark card by default - the reason was making it look good regardless of the site background color - it caused an issue to some sites, mostly in dark mode, because the text color was inherited from the theme - this sets explicit color to the bookmark content which is consistent with the nft card --- ghost/core/core/frontend/src/cards/css/bookmark.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/core/core/frontend/src/cards/css/bookmark.css b/ghost/core/core/frontend/src/cards/css/bookmark.css index d04d74902c..acb4a6b04c 100644 --- a/ghost/core/core/frontend/src/cards/css/bookmark.css +++ b/ghost/core/core/frontend/src/cards/css/bookmark.css @@ -17,7 +17,7 @@ border-radius: 6px; border: 1px solid rgb(124 139 154 / 25%); overflow: hidden; - color: inherit; + color: #222; } .kg-bookmark-content {