forked from wizrdsh/FirefoxSidebar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update userChrome.css * Update userChrome.css * formatting * make csd top configurable * fix Z index of CSD * fix background (and round corners in GNOME) * remove unnecessary background color fix * more formatting * move sidebar switcher code to css file * even more formatting, fix typos * remove ugly border near sidebar switcher * add custom presets * Revert "remove ugly border near sidebar switcher" This reverts commit b8fd71d. * remove empty space in fullscreen mode, remove unnecessary stuff * heavy rework, add first theme * rename first theme, add second * add KDE Plastik (same spacing as Oxygen) * somehow my system messed up..., fixed theme names
- Loading branch information
Showing
16 changed files
with
381 additions
and
237 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
custom.css |
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,5 @@ | ||
# unreleased | ||
Heavy rework, formatting, more extensions, first theme. | ||
|
||
# 12022.02.23 | ||
Implemented an extension system, and seperated different components into their own files. |
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
[label="Firefox Account"] #fxa-avatar-image { | ||
scale: 1.25; | ||
} |
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,3 @@ | ||
#sidebar-box { | ||
--menubar-height: -42px !important; | ||
} |
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,11 @@ | ||
#sidebar-header { | ||
display: none; | ||
} | ||
|
||
#sidebar-box { | ||
--menubar-height: 0px !important; | ||
} | ||
|
||
.browser-toolbar { | ||
padding-left: unset !important; | ||
} |
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 |
---|---|---|
@@ -1,64 +1,73 @@ | ||
/* | ||
Extension: Superbox Removal (and compaction) | ||
Description: This removes the superbox and fixes some padding around the urlbar. | ||
/* | ||
Extension: Superbox Removal (and compaction) | ||
Description: This removes the superbox and fixes some padding around the urlbar. | ||
Repository URL: https://github.com/drannex42/FirefoxSidebar | ||
*/ | ||
|
||
/* --- Prevent enlargement */ | ||
|
||
#urlbar[breakout-extend] { | ||
top: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important; | ||
left: 0 !important; | ||
width: 100% !important; | ||
top: calc( | ||
(var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2 | ||
) !important; | ||
left: 0 !important; | ||
width: 100% !important; | ||
} | ||
|
||
#urlbar[breakout-extend] #urlbar-input-container { | ||
height: var(--urlbar-height) !important; | ||
/*padding: 0px !important;*/ | ||
padding-block: 0px !important; | ||
padding-inline: 0px !important; | ||
height: var(--urlbar-height) !important; | ||
/* padding: 0px !important; */ | ||
padding-block: 0px !important; | ||
padding-inline: 0px !important; | ||
} | ||
.urlbarView-row { | ||
padding: 0px 2px 0px 2px; | ||
padding: 0px 2px 0px 2px; | ||
} | ||
/* END Prevent enlargement --- */ | ||
|
||
/*/* --- Reduce row paddings to make them more compact */ | ||
.urlbarView-row { | ||
padding: 2px 0px !important; | ||
line-height: 1.2em !imortant; | ||
margin: -1px; | ||
margin-bottom:0px; | ||
padding: 2px 0px !important; | ||
line-height: 1.2em !important; | ||
margin: -1px; | ||
margin-bottom: 0px; | ||
} | ||
.urlbarView-row-inner { | ||
padding-bottom: 6px !important; | ||
padding-bottom: 6px !important; | ||
} | ||
.urlbarView { | ||
margin: 0px !important; | ||
width: 100% !important; | ||
margin: 0px !important; | ||
width: 100% !important; | ||
} | ||
/* END Reduce row paddings to make them more compact --- */ | ||
|
||
/* Disable Urlbar Animation */ | ||
#urlbar[breakout][breakout-extend][breakout-extend-animate] > #urlbar-background { | ||
animation-name: none !important; | ||
animation: none !important; | ||
#urlbar[breakout][breakout-extend][breakout-extend-animate] | ||
> #urlbar-background { | ||
animation-name: none !important; | ||
animation: none !important; | ||
} | ||
/* END Disable Urlbar Animation */ | ||
|
||
/* --- More compact "Search with Google" rows */ | ||
.urlbarView-row[dynamicType="onboardTabToSearch"] > .urlbarView-row-inner { | ||
min-height: auto !important; | ||
width: auto !important; | ||
min-height: auto !important; | ||
width: auto !important; | ||
} | ||
.urlbarView-row[dynamicType="onboardTabToSearch"] > .urlbarView-row-inner > .urlbarView-no-wrap > .urlbarView-favicon { | ||
margin-bottom: -1px; | ||
.urlbarView-row[dynamicType="onboardTabToSearch"] | ||
> .urlbarView-row-inner | ||
> .urlbarView-no-wrap | ||
> .urlbarView-favicon { | ||
margin-bottom: -1px; | ||
} | ||
/* END More compact "Search with Google" rows --- */ | ||
|
||
/* Remove active border on the addressbar when in focus */ | ||
#nav-bar{ --toolbar-field-focus-border-color: #ccc } | ||
#nav-bar { | ||
--toolbar-field-focus-border-color: #ccc; | ||
} | ||
|
||
/* Remove box shadow on address bar */ | ||
#urlbar-background, #searchbar { | ||
#urlbar-background, | ||
#searchbar { | ||
box-shadow: none !important; | ||
} |
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
Oops, something went wrong.