|
| 1 | +/* Firefox userChrome.css tweaks ********************************************************/ |
| 2 | +/* Github: https://github.com/aris-t2/customcssforfx ************************************/ |
| 3 | +/****************************************************************************************/ |
| 4 | + |
| 5 | + |
| 6 | +/* AeroGlass colors */ |
| 7 | +:root { |
| 8 | + --general_toolbar_color_toolbars: none !important; |
| 9 | + --general_toolbar_color_navbar: none !important; |
| 10 | + --general_toolbar_text_color: white !important; |
| 11 | + --general_toolbar_text_shadow: black !important; |
| 12 | + --tabs_toolbar_color_tabs_not_on_top: unset !important; |
| 13 | + --tabs_toolbar_border-tnot_normal_mode_size: 0px !important; |
| 14 | + --tabs_toolbar_border-tnot_normal_mode: var(--tabs-border-color) !important; |
| 15 | + --colored_menubar_background_image: unset !important; |
| 16 | + --colored_menubar_text_color: white !important; |
| 17 | + --statusbar_background_color: linear-gradient(rgba(255,255,255,.4),rgba(255,255,255,.4)) !important; |
| 18 | + --statusbar_font_color: black !important; |
| 19 | + --classic_squared_tabs_active_tab: linear-gradient(to top,rgba(255,255,255,.0),rgba(255,255,255,.7)) !important; |
| 20 | + --classic_squared_tabs_hovered_tabs: linear-gradient(to top,rgba(255,255,255,.1),rgba(255,255,255,.3)) !important; |
| 21 | + --classic_squared_tabs_other_tabs: linear-gradient(to top,rgba(255,255,255,.0),rgba(255,255,255,.2)) !important; |
| 22 | + --classic_squared_tabs_unloaded_tabs: linear-gradient(to top,rgba(255,255,255,.0),rgba(255,255,255,.2)) !important; |
| 23 | + --classic_squared_tabs-border_size: 1px; |
| 24 | + --classic_squared_tabs-border1: rgba(0,0,0,.0) !important; |
| 25 | + --classic_squared_tabs-border2: rgba(0,0,0,.0) !important; |
| 26 | + --classic_squared_tabs-border3: rgba(0,0,0,.0) !important; |
| 27 | + --classic_squared_tabs_new_tab_icon_color: white !important; |
| 28 | + --classic_squared_tabs_tab_text_color: white !important; |
| 29 | + --classic_squared_tabs_tab_text_shadow: black !important; |
| 30 | + --classic_squared_tabs_lwt-dark_active_tab: inherit !important; /* linear-gradient(blue, hsla(0,0%,60%,.5) 80%) */ |
| 31 | + --classic_squared_tabs_lwt-dark_hovered_tabs: linear-gradient(hsla(0,0%,80%,.5), hsla(0,0%,60%,.5) 80%) !important; |
| 32 | + --classic_squared_tabs_lwt-dark_other_tabs: linear-gradient(hsla(0,0%,60%,.5), hsla(0,0%,45%,.5) 80%) !important; |
| 33 | + --classic_squared_tabs_lwt-bright_hovered_tabs: linear-gradient(hsla(0,0%,60%,.6), hsla(0,0%,45%,.6) 80%) !important; |
| 34 | + --classic_squared_tabs_lwt-bright_other_tabs: linear-gradient(hsla(0,0%,40%,.6), hsla(0,0%,30%,.6) 80%) !important; |
| 35 | + --classic_squared_tabs_lwt-bright_active_tab: inherit !important; /* linear-gradient(blue, hsla(0,0%,60%,.5) 80%) */ |
| 36 | +} |
| 37 | + |
| 38 | +/* navigation toolbar background */ |
| 39 | +#nav-bar:not(:-moz-lwtheme) { |
| 40 | + background: unset !important; |
| 41 | + border: unset !important; |
| 42 | + box-shadow: unset !important; |
| 43 | +} |
| 44 | + |
| 45 | +/* toolbar background */ |
| 46 | +toolbar:not(#TabsToolbar):not(#toolbar-menubar):not(#nav-bar):not(:-moz-lwtheme) { |
| 47 | + background: unset !important; |
| 48 | + border: unset !important; |
| 49 | + box-shadow: unset !important; |
| 50 | +} |
| 51 | + |
| 52 | +/* hide toolbar shadow */ |
| 53 | +#nav-bar:not(:-moz-lwtheme), |
| 54 | +toolbar:not(#TabsToolbar):not(#toolbar-menubar):not(#nav-bar):not(:-moz-lwtheme) { |
| 55 | + appearance: none !important; |
| 56 | + box-shadow: unset !important; |
| 57 | +} |
| 58 | + |
| 59 | +/* menubar */ |
| 60 | +#main-window:not(:-moz-lwtheme) #main-menubar > menu > :-moz-any(label,description) { |
| 61 | + color: var(--general_toolbar_text_color, inherit) !important; |
| 62 | + text-shadow: 1px 1px 1px var(--general_toolbar_text_shadow, inherit) !important; |
| 63 | +} |
0 commit comments