Move "legacy" or otherwise deprecated styles into sub-folder

This commit is contained in:
MrOtherGuy
2023-01-01 18:40:37 +02:00
parent a46d28bcab
commit 7953cb9d8e
18 changed files with 65 additions and 55 deletions

View File

@@ -0,0 +1,16 @@
/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/toggle_bookmarksbar_with_alt.css made available under Mozilla Public License v. 2.0
See the above repository for updates as well as full license text. */
/* Pretty much requires either menubar_in-toolbar or the oneliner compatible one */
/* Otherwise the changing vertical position causes bookmarks to be unclickable */
/* NOT COMPATIBLE with Fx65+ */
#main-window[sizemode="normal"]:not([customizing]) #PersonalToolbar{
transition: margin 0.15s ease-in-out 50ms, z-index 16ms linear 100ms!important;
height: 28px;
position: relative;
z-index: 1;
}
:root:not([customizing]) #toolbar-menubar[inactive] ~ #PersonalToolbar:not(:hover){
margin-top:-28px;
z-index: -1;
}