Skip to content

Commit

Permalink
show address bar on hover.
Browse files Browse the repository at this point in the history
  • Loading branch information
gzagatti committed Dec 21, 2022
1 parent db28af8 commit 873ec57
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion vivaldi/userChrome.css
Original file line number Diff line number Diff line change
@@ -1 +1,22 @@
#header { display: none; }
/*
enable support; vivaldi://experiments/ > "Allow for using CSS modifications"
debug; vivaldi://inspect/#apps
load css; settings > "Appearance" > "Custom UI Modifications" > "Select Folder"
https://gabevilela.vivaldi.net/2020/12/26/guide-customizing-vivaldis-ui-with-css-mods/
*/
#header {
display: none;
}

.mainbar {
opacity: 0;
height: 0;
min-height: 10px;
}

.mainbar:hover {
opacity: 1;
height: initial;
min-height: 40px !important;
}

0 comments on commit 873ec57

Please sign in to comment.