Skip to content

Commit b30da16

Browse files
committed
Move Notifications to the second slot in the navigation menu
1 parent e693055 commit b30da16

7 files changed

Lines changed: 22 additions & 0 deletions

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
### [Unreleased]
22

3+
* Move Notifications to the second slot in the navigation menu
34
* Remove border-bottom from the trends heading
45

56
### 4.0.0-alpha.8.rc2: 2026-05-24

dist/mastodon-bird-ui-accessible-plus.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mastodon-bird-ui-accessible.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mastodon-bird-ui-light.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mastodon-bird-ui-stars.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mastodon-bird-ui.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1436,6 +1436,14 @@ body.layout-single-column, body.layout-multiple-columns {
14361436
display: none;
14371437
}
14381438

1439+
.layout-single-column .navigation-panel__menu > li:has(a.navigation-panel__compose-button), .layout-multiple-columns .navigation-panel__menu > li:has(a.navigation-panel__compose-button) {
1440+
order: -2;
1441+
}
1442+
1443+
.layout-single-column .navigation-panel__menu > li:has(a[href="/notifications"]), .layout-multiple-columns .navigation-panel__menu > li:has(a[href="/notifications"]) {
1444+
order: -1;
1445+
}
1446+
14391447
.layout-single-column .navigation-panel__menu > li.navigation-panel__list-panel, .layout-multiple-columns .navigation-panel__menu > li.navigation-panel__list-panel {
14401448
order: 1;
14411449
}

src/components/_navigation-panel.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,15 @@
3939
display: none;
4040
}
4141

42+
// Move Notifications to the second slot, right after the compose button.
43+
.navigation-panel__menu > li:has(a.navigation-panel__compose-button) {
44+
order: -2;
45+
}
46+
47+
.navigation-panel__menu > li:has(a[href="/notifications"]) {
48+
order: -1;
49+
}
50+
4251
// Keep the Lists and Followed tags panels at the bottom, just above More,
4352
// as in the original Bird UI desktop layout (Followed tags ends up second
4453
// last, right before More).

0 commit comments

Comments
 (0)