Skip to content

Commit

Permalink
fix navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Naezr committed Nov 29, 2024
1 parent 6488ff1 commit af36edb
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion chrome/ShyFox/shy-navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,20 @@ Navigation bar on top of the window
);
}

/* hotfix */
#urlbar{
visibility: collapse;
}

#urlbar-container::before {
content: "";
width: 100%;
height: 100%;
border-radius: var(--rounding);
background-color: var(--toolbar-field-background-color);
}


/* show navbar on hover or focus */
&:has(
#nav-bar-customization-target:hover #unified-extensions-button:not(:hover),
Expand All @@ -246,6 +260,15 @@ Navigation bar on top of the window
#nav-bar-overflow-button:hover
) {
#nav-bar{

/* hotfix */
#urlbar{
visibility: visible !important;
transition: visibility 0s linear var(--trans-dur);
min-width: var(--urlbar-width) !important;
}


top: calc(var(--top-margin) + var(--margin));

background-color: var(--tb-col) !important;
Expand Down Expand Up @@ -308,4 +331,4 @@ Navigation bar on top of the window
}

#urlbar-background, #searchbar {background-color: var(--tb-col) !important;}
}
}

0 comments on commit af36edb

Please sign in to comment.