Skip to content

Commit

Permalink
Fix unread notification group styles for v4.3.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Aug 23, 2024
1 parent f21e294 commit f972706
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 2.0.0rc45: 2024-08-23

* Fix load more icon dimensions
* Fix unread notification group styles for v4.3.0-beta.1

### 2.0.0rc44: 2024-08-23

* Support for v4.3.0-beta.1+mementomods-2024-08-23
Expand Down
2 changes: 1 addition & 1 deletion layout-multiple-columns.css
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 {
Expand Down
17 changes: 15 additions & 2 deletions layout-single-column.css
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 {
Expand Down Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mastodon-bird-ui",
"version": "2.0.0rc44",
"version": "2.0.0rc45",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit f972706

Please sign in to comment.