Skip to content

Commit

Permalink
Fix top bar showing up when there is no column header title
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Dec 7, 2024
1 parent fa45345 commit f658af0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 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.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
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.6rc4 */
2.0.6rc5 */

/* CSS variables */
:root {
Expand Down
4 changes: 2 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.6rc4 */
2.0.6rc5 */

/* CSS variables */
:root {
Expand Down Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mastodon-bird-ui",
"version": "2.0.6rc4",
"version": "2.0.6rc5",
"description": "",
"main": "index.js",
"scripts": {
Expand All @@ -20,4 +20,4 @@
"stylelint-order": "^6.0.3"
},
"dependencies": {}
}
}

0 comments on commit f658af0

Please sign in to comment.