-
Notifications
You must be signed in to change notification settings - Fork 182
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
Showing
16 changed files
with
197 additions
and
85 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
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,72 @@ | ||
/* Firefox userChrome.css tweaks ********************************************************/ | ||
/* Github: https://github.com/aris-t2/customcssforfx ************************************/ | ||
/****************************************************************************************/ | ||
|
||
|
||
:root { | ||
--status-width: 400px; | ||
} | ||
|
||
#main-window:not([chromehidden*="toolbar"]) #navigator-toolbox > #PersonalToolbar { | ||
z-index: unset !important; | ||
border-top: 1px solid var(--toolbox-border-bottom-color) !important; | ||
box-shadow: inset 0px 1px 1px rgba(50, 50, 50, 0.75) !important; | ||
} | ||
|
||
.browserContainer :is(statuspanel,#statuspanel) { | ||
display: flex !important; | ||
position: fixed !important; | ||
bottom: 2px !important; | ||
z-index: 1001 !important; | ||
} | ||
|
||
.browserContainer :is(statuspanel,#statuspanel):-moz-locale-dir(ltr) { | ||
left: 0px; | ||
} | ||
.browserContainer :is(statuspanel,#statuspanel):-moz-locale-dir(rtl) { | ||
right: 0px; | ||
} | ||
|
||
.browserContainer :is(statuspanel,#statuspanel) :is(#statuspanel-label,.statuspanel-label) { | ||
appearance: none !important; | ||
background: none !important; | ||
border: 0 !important; | ||
box-shadow: none !important; | ||
pointer-events: none !important; | ||
min-width: var(--status-width) !important; | ||
width: var(--status-width) !important; | ||
max-width: var(--status-width) !important; | ||
color: black !important; | ||
} | ||
|
||
.browserContainer :is(statuspanel,#statuspanel):-moz-lwtheme-brighttext :is(#statuspanel-label,.statuspanel-label) { | ||
color: white !important; | ||
} | ||
|
||
@media (-moz-content-prefers-color-scheme: dark) { | ||
.browserContainer :is(statuspanel,#statuspanel):-moz-lwtheme :is(#statuspanel-label,.statuspanel-label) { | ||
color: white !important; | ||
} | ||
} | ||
|
||
/* add space for status text on add-on bar */ | ||
#main-window:not([chromehidden*="toolbar"]) #navigator-toolbox > #PersonalToolbar:not(#toolbar-menubar):not(#TabsToolbar):not(#nav-bar) { | ||
padding-left: var(--status-width) !important; | ||
} | ||
|
||
#main-window:not([chromehidden*="toolbar"]) #navigator-toolbox > #PersonalToolbar:not(#toolbar-menubar):not(#TabsToolbar):not(#nav-bar):-moz-locale-dir(rtl) { | ||
padding-right: var(--status-width) !important; | ||
} | ||
|
||
#statuspanel[mirror] { | ||
inset-inline-start: unset !important; | ||
inset-inline-end: unset !important; | ||
} | ||
|
||
#statuspanel[mirror] > #statuspanel-inner > #statuspanel-label:-moz-locale-dir(ltr) { | ||
margin-left: 0px !important; | ||
} | ||
|
||
#statuspanel[mirror] > #statuspanel-inner > #statuspanel-label:-moz-locale-dir(rtl) { | ||
margin-right: 0px !important; | ||
} |
Oops, something went wrong.