Skip to content

Commit

Permalink
fix: urlbar focus in firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
voobscout committed Sep 1, 2024
1 parent 5cc296c commit 24b2c89
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion cells/home/homeProfiles/browsers/firefox.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@ let
transition: opacity 0.3s ease;
}
#nav-bar:hover {
/* Show the nav-bar when hovered */
#nav-bar:hover,
#nav-bar[focused="true"] {
visibility: visible;
opacity: 1;
}
/* Ensure Ctrl+L works by making the nav-bar visible when focused */
#urlbar[focused="true"] {
visibility: visible;
opacity: 1;
}
Expand Down

0 comments on commit 24b2c89

Please sign in to comment.