This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3a02b8e
commit b4b4052
Showing
3 changed files
with
139 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
/* made by Aidan Mercer*/ | ||
/* removing elements */ | ||
#stop-button, .urlbarView, #downloads-button, #reload-button, #tracking-protection-icon-container, #identity-permission-box, #identity-box, #star-button, #urlbar-zoom-button, #reader-mode-button, #tracking-protection-icon-container, #identity-permission-box, .tab-secondary-label, #pageActionButton, #page-action-buttons{ | ||
display: none !important; | ||
} | ||
#forward-button[disabled="true"] { display: none !important } | ||
#back-button[disabled="true"] { display: none !important } | ||
|
||
/*rearanging elements */ | ||
#back-button, #forward-button{ | ||
-moz-box-ordinal-group: 0 !important; | ||
} | ||
|
||
#navigator-toolbox { | ||
border : none !important; | ||
} | ||
.titlebar-spacer { | ||
display : none !important; | ||
} | ||
#urlbar-background { | ||
border : none !important; | ||
} | ||
#urlbar:not(:hover):not([breakout][breakout-extend]) > #urlbar-background { | ||
box-shadow : none !important; | ||
background : none !important; | ||
} | ||
|
||
#TabsToolbar { | ||
margin-left : 20vw !important; | ||
} | ||
|
||
#nav-bar { | ||
margin-right: 80vw !important; | ||
} | ||
|
||
#urlbar-container { | ||
min-width : 0px !important; | ||
} | ||
:root:not([uidensity="compact"]):not([uidensity="touch"]) #nav-bar { | ||
margin-top : -35px !important; | ||
height : 35px !important; | ||
} | ||
|
||
.tab-context-line{ | ||
display: none !important; | ||
} | ||
|
||
|
||
|
||
/* selected tab */ | ||
#titlebar{ | ||
--toolbar-bgcolor: #e1a4e49a !important; | ||
} | ||
|
||
/*taskbar*/ | ||
toolbar{ | ||
-moz-appearance: none !important; | ||
background-color: #e1a4e47a !important; | ||
} | ||
|
||
|
||
#urlbar-background{ | ||
background-color: rgb(0, 0, 0, 0) !important; | ||
} | ||
|
||
.tab-icon-stack{ | ||
display: none !important; | ||
} | ||
|
||
/* hide bookmark bar */ | ||
#PersonalToolbar{ | ||
--uc-bm-height: 20px; | ||
--uc-bm-padding: 4px; /* Vertical padding for bookmarks */ | ||
--uc-autohide-toolbar-delay: 250ms; /* toolbar hidden delay */ | ||
|
||
--uc-autohide-toolbar-focus-rotation: 0deg; | ||
--uc-autohide-toolbar-hover-rotation: 0deg; | ||
} | ||
|
||
:root[uidensity="compact"] #PersonalToolbar{ --uc-bm-padding: 1px } | ||
:root[uidensity="touch"] #PersonalToolbar{ --uc-bm-padding: 7px } | ||
|
||
#PersonalToolbar:not([customizing]){ | ||
position: relative; | ||
margin-bottom: calc(0px - var(--uc-bm-height) - 2 * var(--uc-bm-padding)); | ||
transform: rotateX(90deg); | ||
transform-origin: top; | ||
transition: transform 135ms linear var(--uc-autohide-toolbar-delay) !important; | ||
z-index: 1; | ||
} | ||
|
||
#PlacesToolbarItems > .bookmark-item{ padding-block: var(--uc-bm-padding) !important; } | ||
|
||
#nav-bar:focus-within + #PersonalToolbar{ | ||
transition-delay: 100ms !important; | ||
transform: rotateX(var(--uc-autohide-toolbar-focus-rotation,0)); | ||
} | ||
|
||
#navigator-toolbox:hover > #PersonalToolbar{ | ||
transition-delay: 100ms !important; | ||
transform: rotateX(var(--uc-autohide-toolbar-hover-rotation,0)); | ||
} | ||
|
||
#navigator-toolbox:hover > #nav-bar:focus-within + #PersonalToolbar { | ||
transform: rotateX(0); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
@-moz-document url(chrome://browser/content/browser.xul), url(about:newtab), url(about:home),url(about:privatebrowsing) { | ||
body{ | ||
background-size: cover !important; | ||
background-image: url("components/wallpaper.png")!important; | ||
--newtab-background-color: #000000 !important; | ||
--newtab-background-color-secondary: #000000 !important; | ||
} | ||
|
||
/* removing watermark and logo */ | ||
.logo-and-wordmark{ | ||
opacity: 0; | ||
} | ||
|
||
#searchSuggestionTable{ | ||
opacity: 0; | ||
} | ||
|
||
/* search border gradient */ | ||
.search-inner-wrapper{ | ||
border-radius: 50px; | ||
border: double 3px transparent; | ||
background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), | ||
linear-gradient(90deg, #e08392, #e1a4e4, #e0b4e5, #e8daf8, #6699CC, #5FB3B3 ) !important; | ||
background-origin: border-box; | ||
background-clip: content-box, border-box; | ||
overflow: hidden; | ||
border-collapse: separate; | ||
} | ||
#newtab-search-text{ | ||
opacity: 60% !important; | ||
} | ||
} |