-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[web] show unreads for each community in the community list
Summary: This diff introduces the unread badge to the community list in the navigation sidebar. Here we want to show the unreads broken down by each community Linear task: https://linear.app/comm/issue/ENG-5951/introduce-a-new-unread-badge Depends on D10435 Test Plan: Please see the screenshots/demo video {F983389} {F996924} {F983387} {F983410} Reviewers: atul, rohan, kamil Reviewed By: atul Subscribers: ashoat, tomek Differential Revision: https://phab.comm.dev/D10393
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
.container { | ||
position: relative; | ||
} | ||
|
||
.container:hover { | ||
cursor: pointer; | ||
} | ||
|
||
.unreadBadgeContainer { | ||
position: absolute; | ||
right: -8px; | ||
bottom: 14px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters