From bf72ab86cd2a09f4bae7fdeb1ebb5e42dd5bf033 Mon Sep 17 00:00:00 2001 From: Mohammed Efaz Date: Sun, 8 Feb 2026 12:28:31 +0100 Subject: [PATCH] fix: status button eink compatible (#3223) --- .../src/app/library/components/SetStatusAlert.tsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/apps/readest-app/src/app/library/components/SetStatusAlert.tsx b/apps/readest-app/src/app/library/components/SetStatusAlert.tsx index ae9091f1..e89b8443 100644 --- a/apps/readest-app/src/app/library/components/SetStatusAlert.tsx +++ b/apps/readest-app/src/app/library/components/SetStatusAlert.tsx @@ -26,17 +26,19 @@ const SetStatusAlert: React.FC = ({ label: _('Mark as Unread'), status: 'unread' as ReadingStatus, className: - 'bg-amber-500/15 text-amber-600 dark:text-amber-400 hover:bg-amber-500/25 border-amber-500/20', + 'not-eink:bg-amber-500/15 not-eink:text-amber-600 dark:not-eink:text-amber-400 not-eink:border-amber-500/20 eink-bordered', }, { label: _('Mark as Finished'), status: 'finished' as ReadingStatus, - className: 'bg-success/15 text-success hover:bg-success/25 border-success/20', + className: + 'not-eink:bg-success/15 not-eink:text-success not-eink:border-success/20 eink-bordered', }, { label: _('Clear Status'), status: undefined, - className: 'bg-base-300 text-base-content hover:bg-base-content/10 border-base-content/10', + className: + 'not-eink:bg-base-300 not-eink:text-base-content not-eink:border-base-content/10 eink-bordered', }, ]; @@ -89,9 +91,10 @@ const SetStatusAlert: React.FC = ({ ))}