gah I forgot to stage all my new files

This commit is contained in:
Chris Cochrun 2025-02-09 22:47:11 -06:00
parent bd5a4b0c0e
commit 9f4c905c03
319 changed files with 12157 additions and 14 deletions

View file

@ -0,0 +1,52 @@
/*== ShyFox Floating Search =========================================================================================================================
Cool floating search panel
*/
/* about:config setting */
@media not (-moz-bool-pref: "shyfox.disable.floating.search") {
/* styles for urlbar */
#urlbar[breakout-extend]{
#urlbar-input {font-size: 23.5px !important;}
#urlbar-input-container, .urlbar-input-container {height: 50px !important;}
#urlbar-background {border-radius: var(--bigger-rounding) !important;}
#urlbar-input-container, .urlbar-input-container {
& > :is(box, image){
height: 28px !important;
margin-block: calc((50px - 28px) / 4) !important;
}
}
position: fixed !important;
z-index: 999999 !important;
bottom: auto !important;
top: 20vh !important;
left: 18vw !important;
right: 18vw !important;
width: 64vw !important;
/* cool translucent background */
&:before{
content: "";
position: fixed;
pointer-events: none;
border-radius: var(--rounding);
width: 100vw;
height: 100vh;
top: 0px;
left: 0px;
background-color: color-mix(in srgb, var(--bg-col) 80%, transparent);
}
}
}