feat: added floorp

This commit is contained in:
Nick 2025-02-16 17:55:57 -06:00
parent 2be2a67015
commit 8f9fc72e72
77 changed files with 2052 additions and 0 deletions

View file

@ -0,0 +1,91 @@
* {
font-size: 13px !important;
}
/* Title bar */
.titlebar-spacer {
display: none !important;
}
/* Tab bar */
#navigator-toolbox {
border: 0px !important;
}
#TabsToolbar {
margin-left: 3px !important;
}
#TabsToolbar > .tabbrowser-arrowscrollbox {
overflow: visible !important;
}
.titlebar-buttonbox-container {
display: none !important;
}
/* Remove placeholder text in the URL bar */
#urlbar-input::placeholder {
color: transparent !important;
}
#urlbar {
padding: 2px !important;
}
/* Hide URL bar text */
#urlbar-background {
border: none !important;
}
#urlbar-border:focus-within {
overflow: visible;
height: auto;
}
/* Hide tracking protection icon */
#tracking-protection-icon-container {
display: none !important;
}
#urlbar-container {
width: auto !important;
}
#urlbar {
box-shadow: none !important;
}
#page-action-buttons {
display: none !important;
}
/* Hide site information button */
#identity-box {
display: none !important;
}
/* Hide shield icon */
#tracking-protection-icon-container {
display: none !important;
}
/* Hide forward and back buttons when not active */
#back-button[disabled="true"] {
display: none !important;
}
#forward-button[disabled="true"] {
display: none !important;
}
.personalize-button {
display: none !important;
}
.tab-close-button {
visibility: hidden !important;
margin-inline-end: 0 !important;
width: 16px !important;
height: 16px !important;
padding: 2px !important;
opacity: 0 !important;
transition: visibility 0.1s, opacity 0.1s ease-in-out !important;
}
.tabbrowser-tab:hover .tab-close-button {
visibility: visible !important;
opacity: 1 !important;
}

View file

@ -0,0 +1,3 @@
{
userChrome = builtins.readFile ./config/userChrome.css;
}