-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix unread notification group styles for v4.3.0-beta.1
- Loading branch information
1 parent
f21e294
commit f972706
Showing
4 changed files
with
22 additions
and
4 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
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,5 +1,5 @@ | ||
/* Mastodon Bird UI by @[email protected] | ||
2.0.0rc44 */ | ||
2.0.0rc45 */ | ||
|
||
/* CSS variables */ | ||
:root { | ||
|
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,5 +1,5 @@ | ||
/* Mastodon Bird UI by @[email protected] | ||
2.0.0rc44 */ | ||
2.0.0rc45 */ | ||
|
||
/* CSS variables */ | ||
:root { | ||
|
@@ -1112,14 +1112,27 @@ body .content-warning::before { | |
text-decoration: none; | ||
} | ||
|
||
/* Fix load more icon dimensions */ | ||
.load-more .icon { | ||
height: 16px; | ||
width: 20px; | ||
} | ||
|
||
/* Unread message */ | ||
.layout-single-column .conversation--unread, | ||
.layout-single-column .notification.unread:hover, | ||
.layout-single-column .notification.unread, | ||
.layout-single-column .status__wrapper.unread { | ||
.layout-single-column .status__wrapper.unread, | ||
body .notification-group.notification-group--unread { | ||
background-color: var(--color-dark); | ||
} | ||
|
||
body .notification-group--unread::before, | ||
body .notification-ungrouped--unread::before { | ||
/* stylelint-disable-next-line */ | ||
display: none; | ||
} | ||
|
||
.layout-single-column .notification:hover .notification__message { | ||
background-color: transparent; | ||
} | ||
|
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