Skip to content

Commit

Permalink
Fix indicator for private mentions when grouped notifications are ena…
Browse files Browse the repository at this point in the history
…bled in 4.3.0
  • Loading branch information
ronilaukkarinen committed Sep 7, 2024
1 parent 5c965e6 commit be1d0c7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 2.0.0rc48: 2024-09-07

* Fix indicator for private mentions when grouped notifications are enabled in 4.3.0

### 2.0.0rc47: 2024-08-23

* Add the same consistent content warning styles to the compose form
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.0rc47 */
2.0.0rc48 */

/* CSS variables */
:root {
Expand Down
9 changes: 8 additions & 1 deletion 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.0rc47 */
2.0.0rc48 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -3118,6 +3118,7 @@ body.embed .button.logo-button:hover,
position: relative;
}

.notification-ungrouped--mention.notification-ungrouped--direct::after,
.layout-single-column .status__wrapper-direct::after,
.layout-single-column .detailed-status-direct::after {
border-left: 20px solid transparent;
Expand All @@ -3131,6 +3132,12 @@ body.embed .button.logo-button:hover,
width: 0;
}

/* Indicator for private mentions when grouped notifications are enabled in 4.3.0 */
.notification-ungrouped--direct .status__wrapper-direct::after,
.notification-ungrouped--direct .detailed-status-direct::after {
display: none;
}

.layout-single-column .notification .status__wrapper-direct::after {
top: -40px;
}
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.0rc47",
"version": "2.0.0rc48",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit be1d0c7

Please sign in to comment.