fix(theme): hide Swage logo in reader view to prevent overlap (#8842)

Reader view sets .aside.visible { padding-top: 0 } (swage.css:1236), so when
the sidebar is open the absolute-positioned logo lands on the Subscription
management button. Extending the existing hide rule from #8739 to also
cover body.reader is the smallest fix; the logo isn't load-bearing in
reader view. Closes #8802.

Co-authored-by: Bjørn A. Andersen <polybjorn@users.noreply.github.com>
This commit is contained in:
polybjorn
2026-05-15 12:29:29 +00:00
committed by GitHub
parent d017e22a46
commit bdf02e638a
2 changed files with 4 additions and 2 deletions

View File

@@ -1709,6 +1709,7 @@ button.as-link {
}
}
body:has(.aside:not(.visible)) .header .item.title {
body:has(.aside:not(.visible)) .header .item.title,
body.reader .header .item.title {
display: none;
}

View File

@@ -1709,6 +1709,7 @@ button.as-link {
}
}
body:has(.aside:not(.visible)) .header .item.title {
body:has(.aside:not(.visible)) .header .item.title,
body.reader .header .item.title {
display: none;
}