Skip to content

Commit

Permalink
Fix: Fullscreen - Bookmark overflow button when switching from DOM Fu…
Browse files Browse the repository at this point in the history
…llscreen #685
  • Loading branch information
black7375 committed Nov 16, 2024
1 parent d60a753 commit 3441312
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 15 deletions.
23 changes: 15 additions & 8 deletions css/leptonChrome.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 9 additions & 4 deletions css/leptonChromeESR.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/fullscreen/_overlap.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
:root[sizemode="fullscreen"] #navigator-toolbox {
:root[sizemode="fullscreen"]:not([inDOMFullscreen="true"]) #navigator-toolbox {
position: fixed !important; /* Needed for content to take up entire height */
z-index: 1000 !important; /* Puts the UI above the content */

Expand All @@ -7,13 +7,13 @@
}
}

:root[sizemode="fullscreen"] :-moz-any(#navigator-toolbox, #titlebar, #nav-bar, #PersonalToolbar) {
:root[sizemode="fullscreen"]:not([inDOMFullscreen="true"]) :-moz-any(#navigator-toolbox, #titlebar, #nav-bar, #PersonalToolbar) {
width: 100%; /* Makes the UI take up the entire width */
}

@include OS($linux) {
/* Fix transparent background */
:root[tabsintitlebar][sizemode="fullscreen"]#{$not_lwtheme} #TabsToolbar {
:root[tabsintitlebar][sizemode="fullscreen"]:not([inDOMFullscreen="true"])#{$not_lwtheme} #TabsToolbar {
appearance: auto !important;
}
}

0 comments on commit 3441312

Please sign in to comment.