diff options
| author | Fuwn <[email protected]> | 2026-02-10 01:08:11 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-10 01:08:11 -0800 |
| commit | 920d22332069f1ca60740c290173a95846fb38c3 (patch) | |
| tree | 5909cecde94bf1acd83385a5b3d789175f2713f0 /apps/web/app/reader/_components/notification-panel.tsx | |
| parent | fix: service worker cross-origin image handling and CI env vars (diff) | |
| download | asa.news-920d22332069f1ca60740c290173a95846fb38c3.tar.xz asa.news-920d22332069f1ca60740c290173a95846fb38c3.zip | |
feat: scoped mark-all-read, share enhancements, notification z-index
- Mark all as read now scopes to current feed/folder instead of all
- Added undo button to mark-all-read toast notification
- Share notes can be toggled between public and private visibility
- Track share view count and display in shares list
- Activity-based share expiry: views reset the expiry timer
- Fixed notification panel z-index layering behind content area
Diffstat (limited to 'apps/web/app/reader/_components/notification-panel.tsx')
| -rw-r--r-- | apps/web/app/reader/_components/notification-panel.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/reader/_components/notification-panel.tsx b/apps/web/app/reader/_components/notification-panel.tsx index ea4d052..45746b4 100644 --- a/apps/web/app/reader/_components/notification-panel.tsx +++ b/apps/web/app/reader/_components/notification-panel.tsx @@ -51,7 +51,7 @@ export function NotificationPanel({ onClose }: { onClose: () => void }) { return ( <div ref={panelReference} - className="fixed bottom-16 left-2 z-50 w-80 max-w-[calc(100vw-1rem)] border border-border bg-background-secondary shadow-lg md:absolute md:bottom-full md:left-0 md:mb-1" + className="fixed bottom-16 left-2 z-[9998] w-80 max-w-[calc(100vw-1rem)] border border-border bg-background-secondary shadow-lg" > <div className="flex items-center justify-between border-b border-border px-3 py-2"> <span className="text-text-primary">notifications</span> |