diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c9e906..fa201df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### 2.0.6rc5: 2024-12-07 + +* Fix top bar showing up when there is no column header title (thanks @ikkeT!) + ### 2.0.6rc4: 2024-11-10 * Fix star icon misalignment in Mastodon v4.4.0-alpha.1 diff --git a/layout-multiple-columns.css b/layout-multiple-columns.css index 046ee16..585d503 100644 --- a/layout-multiple-columns.css +++ b/layout-multiple-columns.css @@ -1,5 +1,5 @@ /* Mastodon Bird UI by @rolle@mementomori.social - 2.0.6rc4 */ + 2.0.6rc5 */ /* CSS variables */ :root { diff --git a/layout-single-column.css b/layout-single-column.css index 221be3e..cfc3c5c 100644 --- a/layout-single-column.css +++ b/layout-single-column.css @@ -1,5 +1,5 @@ /* Mastodon Bird UI by @rolle@mementomori.social - 2.0.6rc4 */ + 2.0.6rc5 */ /* CSS variables */ :root { @@ -4558,7 +4558,7 @@ div[tabindex="-1"] + div[tabindex="-1"] > .status__wrapper > .status-reply.statu z-index: 5; } - .app-body:not(.layout-multiple-columns) .tabs-bar__wrapper::after { + .app-body:not(.layout-multiple-columns):has(.column-header__title) .tabs-bar__wrapper::after { background-color: var(--color-bg-90); content: ""; height: 49px; diff --git a/package.json b/package.json index 00fd38e..f933a60 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mastodon-bird-ui", - "version": "2.0.6rc4", + "version": "2.0.6rc5", "description": "", "main": "index.js", "scripts": { @@ -20,4 +20,4 @@ "stylelint-order": "^6.0.3" }, "dependencies": {} -} \ No newline at end of file +}