forked from Aris-t2/CustomCSSforFx
-
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.
- Loading branch information
Showing
291 changed files
with
3,789 additions
and
4,741 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,38 @@ | ||
/*AGENT_SHEET*/ | ||
|
||
/* Firefox 57+ userChrome.css tweaks ****************************************************/ | ||
/* code mostly taken from 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons **/ | ||
/* by Aris ([email protected])*********************************************************/ | ||
/* Firefox Quantum userChrome.css tweaks ************************************************/ | ||
/* Github: https://github.com/aris-t2/customcssforfx ************************************/ | ||
/****************************************************************************************/ | ||
|
||
|
||
/* | ||
Colors inside /'*...*'/ are from deprecated 'custom_colors_for_squared_tabs.css' file. | ||
Example: | ||
replace 'linear-gradient(#f9f9fa,#f9f9fa)' with 'linear-gradient(to bottom,#FFCC99,#FFCC99)' | ||
to use the colors from the above mentioned file. | ||
*/ | ||
|
||
/* default colors */ | ||
:root { | ||
--general_toolbar_color_toolbars: linear-gradient(#f9f9fa,#f9f9fa) !important; | ||
--general_toolbar_color_navbar: linear-gradient(#f9f9fa,#f9f9fa) !important; | ||
--general_toolbar_color_toolbars: linear-gradient(#f9f9fa,#f9f9fa) !important; /* (to bottom,#FFCC99,#FFCC99) */ | ||
--general_toolbar_color_navbar: linear-gradient(#f9f9fa,#f9f9fa) !important; /* (to bottom,#FFCC99,#FFCC99) */ | ||
--general_toolbar_text_color: inherit !important; | ||
--general_toolbar_text_shadow: unset !important; | ||
--tabs_toolbar_color_tabs_not_on_top: linear-gradient(#f9f9fa,#f9f9fa) !important; | ||
--tabs_toolbar_border-tnot_normal_mode: 1px solid var(--tabs-border-color) !important; | ||
--colored_menubar_background_image: linear-gradient(#f9f9fa,#f9f9fa) !important; | ||
--general_toolbar_text_shadow: transparent !important; | ||
--tabs_toolbar_color_tabs_not_on_top: linear-gradient(#f9f9fa,#f9f9fa) !important; /* (to bottom,#FFCC99,#FFCC99) */ | ||
--tabs_toolbar_border-tnot_normal_mode_size: 1px !important; | ||
--tabs_toolbar_border-tnot_normal_mode: var(--tabs-border-color) !important; | ||
--colored_menubar_background_image: linear-gradient(#f9f9fa,#f9f9fa) !important; /* (to bottom,#FFCC99,#FFCC99) */ | ||
--colored_menubar_text_color: black !important; | ||
--classic_squared_tabs_active_tab: linear-gradient(to top,#f9f9fa,#f9f9fa,#f9f9fa) !important; | ||
--classic_squared_tabs_hovered_tabs: linear-gradient(to top,#cac7c1,#d5d2cc,#e8e6e2) !important; | ||
--classic_squared_tabs_other_tabs: linear-gradient(to top,#aeaba5,#c1beb7,#c9c6be) !important; | ||
--classic_squared_tabs_unloaded_tabs: linear-gradient(to top,#aeaba5,#c1beb7,#c9c6be) !important; | ||
--classic_squared_tabs_unread_tabs: linear-gradient(to top,#aeaba5,#c1beb7,#c9c6be) !important; | ||
--classic_squared_tabs-border1: 1px solid #5f7181 !important; | ||
--classic_squared_tabs-border2: 1px solid rgba(0,0,0,.2) !important; | ||
--classic_squared_tabs-border3: 1px solid rgba(0,0,0,.5) !important; | ||
--classic_squared_tabs_active_tab: linear-gradient(to top,#f9f9fa,#f9f9fa,#f9f9fa) !important; /* (to bottom,#FF8800,#FFCC99) */ | ||
--classic_squared_tabs_hovered_tabs: linear-gradient(to top,#cac7c1,#d5d2cc,#e8e6e2) !important; /* (to bottom,#FF9900,#FF6600) */ | ||
--classic_squared_tabs_other_tabs: linear-gradient(to top,#aeaba5,#c1beb7,#c9c6be) !important; /* (to bottom,#FFCC99,#CCCCCC) */ | ||
--classic_squared_tabs_unloaded_tabs: linear-gradient(to top,#aeaba5,#c1beb7,#c9c6be) !important; /* (to bottom,#FFCC99,#CCCCCC) */ | ||
--classic_squared_tabs_unread_tabs: linear-gradient(to top,#aeaba5,#c1beb7,#c9c6be) !important; /* (to bottom,#FFCC99,#CCCCCC) */ | ||
--classic_squared_tabs-border_size: 1px; | ||
--classic_squared_tabs-border1: #5f7181 !important; | ||
--classic_squared_tabs-border2: rgba(0,0,0,.2) !important; | ||
--classic_squared_tabs-border3: rgba(0,0,0,.5) !important; | ||
--classic_squared_tabs_new_tab_icon_color: black !important; | ||
--classic_squared_tabs_tab_text_color: black !important; | ||
--classic_squared_tabs_tab_text_shadow: unset !important; | ||
--classic_squared_tabs_tab_text_shadow: transparent !important; | ||
--classic_squared_tabs_lwt-dark_hovered_tabs: linear-gradient(hsla(0,0%,80%,.5), hsla(0,0%,60%,.5) 80%) !important; | ||
--classic_squared_tabs_lwt-dark_other_tabs: linear-gradient(hsla(0,0%,60%,.5), hsla(0,0%,45%,.5) 80%) !important; | ||
--classic_squared_tabs_lwt-bright_hovered_tabs: linear-gradient(hsla(0,0%,60%,.6), hsla(0,0%,45%,.6) 80%) !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 |
---|---|---|
@@ -1,33 +1,38 @@ | ||
/*AGENT_SHEET*/ | ||
|
||
/* Firefox 57+ userChrome.css tweaks ****************************************************/ | ||
/* code mostly taken from 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons **/ | ||
/* by Aris ([email protected])*********************************************************/ | ||
/* Firefox Quantum userChrome.css tweaks ************************************************/ | ||
/* Github: https://github.com/aris-t2/customcssforfx ************************************/ | ||
/****************************************************************************************/ | ||
|
||
|
||
/* | ||
Colors inside /'*...*'/ are from deprecated 'custom_colors_for_squared_tabs.css' file. | ||
Example: | ||
replace 'linear-gradient(#f9f9fa,#f9f9fa)' with 'linear-gradient(to bottom,#FFCC99,#FFCC99)' | ||
to use the colors from the above mentioned file. | ||
*/ | ||
|
||
/* Aero colors */ | ||
:root { | ||
--general_toolbar_color_toolbars: linear-gradient(#ddebf9,#ddebf9) !important; | ||
--general_toolbar_color_navbar: linear-gradient(#eaf2fb,#ddebf9) !important; | ||
--general_toolbar_color_toolbars: linear-gradient(#ddebf9,#ddebf9) !important; /* (to bottom,#FFCC99,#FFCC99) */ | ||
--general_toolbar_color_navbar: linear-gradient(#eaf2fb,#ddebf9) !important; /* (to bottom,#FFCC99,#FFCC99) */ | ||
--general_toolbar_text_color: black !important; | ||
--general_toolbar_text_shadow: unset !important; | ||
--tabs_toolbar_color_tabs_not_on_top: linear-gradient(#ddebf9,#ddebf9) !important; | ||
--tabs_toolbar_border-tnot_normal_mode: 1px solid var(--tabs-border-color) !important; | ||
--colored_menubar_background_image: linear-gradient(#ddebf9,#ddebf9) !important; | ||
--general_toolbar_text_shadow: transparent !important; | ||
--tabs_toolbar_color_tabs_not_on_top: linear-gradient(#ddebf9,#ddebf9) !important; /* (to bottom,#FFCC99,#FFCC99) */ | ||
--tabs_toolbar_border-tnot_normal_mode_size: 1px !important; | ||
--tabs_toolbar_border-tnot_normal_mode: var(--tabs-border-color) !important; | ||
--colored_menubar_background_image: linear-gradient(#ddebf9,#ddebf9) !important; /* (to bottom,#FFCC99,#FFCC99) */ | ||
--colored_menubar_text_color: black !important; | ||
--classic_squared_tabs_active_tab: linear-gradient(to top,#eaf2fb,#eef5fc,#fbfdff) !important; | ||
--classic_squared_tabs_hovered_tabs: linear-gradient(to top,#d0dce8,#dce7f3,#e5effa) !important; | ||
--classic_squared_tabs_other_tabs: linear-gradient(to top,#b4c0cc,#c8d4e1,#d1deec) !important; | ||
--classic_squared_tabs_unloaded_tabs: linear-gradient(to top,#b4c0cc,#c8d4e1,#d1deec) !important; | ||
--classic_squared_tabs_unread_tabs: linear-gradient(to top,#b4c0cc,#c8d4e1,#d1deec) !important; | ||
--classic_squared_tabs-border1: 1px solid #5f7181 !important; | ||
--classic_squared_tabs-border2: 1px solid rgba(0,0,0,.2) !important; | ||
--classic_squared_tabs-border3: 1px solid rgba(0,0,0,.5) !important; | ||
--classic_squared_tabs_active_tab: linear-gradient(to top,#eaf2fb,#eef5fc,#fbfdff) !important; /* (to bottom,#FF8800,#FFCC99) */ | ||
--classic_squared_tabs_hovered_tabs: linear-gradient(to top,#d0dce8,#dce7f3,#e5effa) !important; /* (to bottom,#FF9900,#FF6600) */ | ||
--classic_squared_tabs_other_tabs: linear-gradient(to top,#b4c0cc,#c8d4e1,#d1deec) !important; /* (to bottom,#FFCC99,#CCCCCC) */ | ||
--classic_squared_tabs_unloaded_tabs: linear-gradient(to top,#b4c0cc,#c8d4e1,#d1deec) !important; /* (to bottom,#FFCC99,#CCCCCC) */ | ||
--classic_squared_tabs_unread_tabs: linear-gradient(to top,#b4c0cc,#c8d4e1,#d1deec) !important; /* (to bottom,#FFCC99,#CCCCCC) */ | ||
--classic_squared_tabs-border_size: 1px; | ||
--classic_squared_tabs-border1: #5f7181 !important; | ||
--classic_squared_tabs-border2: rgba(0,0,0,.2) !important; | ||
--classic_squared_tabs-border3: rgba(0,0,0,.5) !important; | ||
--classic_squared_tabs_new_tab_icon_color: black !important; | ||
--classic_squared_tabs_tab_text_color: black !important; | ||
--classic_squared_tabs_tab_text_shadow: unset !important; | ||
--classic_squared_tabs_tab_text_shadow: transparent !important; | ||
--classic_squared_tabs_lwt-dark_hovered_tabs: linear-gradient(hsla(0,0%,80%,.5), hsla(0,0%,60%,.5) 80%) !important; | ||
--classic_squared_tabs_lwt-dark_other_tabs: linear-gradient(hsla(0,0%,60%,.5), hsla(0,0%,45%,.5) 80%) !important; | ||
--classic_squared_tabs_lwt-bright_hovered_tabs: linear-gradient(hsla(0,0%,60%,.6), hsla(0,0%,45%,.6) 80%) !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 |
---|---|---|
@@ -1,35 +1,54 @@ | ||
/*AGENT_SHEET*/ | ||
|
||
/* Firefox 57+ userChrome.css tweaks ****************************************************/ | ||
/* code mostly taken from 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons **/ | ||
/* by Aris ([email protected])*********************************************************/ | ||
/* Firefox Quantum userChrome.css tweaks ************************************************/ | ||
/* Github: https://github.com/aris-t2/customcssforfx ************************************/ | ||
/****************************************************************************************/ | ||
|
||
|
||
/* AeroGlass colors */ | ||
:root { | ||
--general_toolbar_color_toolbars: unset !important; | ||
--general_toolbar_color_navbar: unset !important; | ||
--general_toolbar_color_toolbars: none !important; | ||
--general_toolbar_color_navbar: none !important; | ||
--general_toolbar_text_color: white !important; | ||
--general_toolbar_text_shadow: 1px 1px 1px black !important; | ||
--general_toolbar_text_shadow: black !important; | ||
--tabs_toolbar_color_tabs_not_on_top: unset !important; | ||
--tabs_toolbar_border-tnot_normal_mode: 0px !important; | ||
--tabs_toolbar_border-tnot_normal_mode_size: 0px !important; | ||
--tabs_toolbar_border-tnot_normal_mode: var(--tabs-border-color) !important; | ||
--colored_menubar_background_image: unset !important; | ||
--colored_menubar_text_color: white !important; | ||
--classic_squared_tabs_active_tab: linear-gradient(to top,rgba(255,255,255,.0),rgba(255,255,255,.7)) !important; | ||
--classic_squared_tabs_hovered_tabs: linear-gradient(to top,rgba(255,255,255,.1),rgba(255,255,255,.3)) !important; | ||
--classic_squared_tabs_other_tabs: linear-gradient(to top,rgba(255,255,255,.0),rgba(255,255,255,.2)) !important; | ||
--classic_squared_tabs_unloaded_tabs: linear-gradient(to top,rgba(255,255,255,.0),rgba(255,255,255,.2)) !important; | ||
--classic_squared_tabs_unread_tabs: linear-gradient(to top,rgba(255,255,255,.0),rgba(255,255,255,.2)) !important; | ||
--classic_squared_tabs-border1: 1px solid rgba(0,0,0,.0) !important; | ||
--classic_squared_tabs-border2: 1px solid rgba(0,0,0,.0) !important; | ||
--classic_squared_tabs-border3: 1px solid rgba(0,0,0,.0) !important; | ||
--classic_squared_tabs-border_size: 1px; | ||
--classic_squared_tabs-border1: rgba(0,0,0,.0) !important; | ||
--classic_squared_tabs-border2: rgba(0,0,0,.0) !important; | ||
--classic_squared_tabs-border3: rgba(0,0,0,.0) !important; | ||
--classic_squared_tabs_new_tab_icon_color: white !important; | ||
--classic_squared_tabs_tab_text_color: white !important; | ||
--classic_squared_tabs_tab_text_shadow: 1px 1px 1px black !important; | ||
--classic_squared_tabs_tab_text_shadow: black !important; | ||
--classic_squared_tabs_lwt-dark_hovered_tabs: linear-gradient(hsla(0,0%,80%,.5), hsla(0,0%,60%,.5) 80%) !important; | ||
--classic_squared_tabs_lwt-dark_other_tabs: linear-gradient(hsla(0,0%,60%,.5), hsla(0,0%,45%,.5) 80%) !important; | ||
--classic_squared_tabs_lwt-bright_hovered_tabs: linear-gradient(hsla(0,0%,60%,.6), hsla(0,0%,45%,.6) 80%) !important; | ||
--classic_squared_tabs_lwt-bright_other_tabs: linear-gradient(hsla(0,0%,40%,.6), hsla(0,0%,30%,.6) 80%) !important; | ||
} | ||
|
||
/* navigation toolbar background */ | ||
#nav-bar:not(:-moz-lwtheme) { | ||
background: unset !important; | ||
border: unset !important; | ||
box-shadow: unset !important; | ||
} | ||
|
||
/* toolbar background */ | ||
toolbar:not(#TabsToolbar):not(#toolbar-menubar):not(#nav-bar):not(:-moz-lwtheme) { | ||
background: unset !important; | ||
border: unset !important; | ||
box-shadow: unset !important; | ||
} | ||
|
||
/* hide toolbar shadow */ | ||
#nav-bar:not(:-moz-lwtheme), | ||
toolbar:not(#TabsToolbar):not(#toolbar-menubar):not(#nav-bar):not(:-moz-lwtheme) { | ||
-moz-appearance: none !important; | ||
box-shadow: unset !important; | ||
} |
Oops, something went wrong.