Skip to content

Commit d1f23a3

Browse files
committed
4.6.0
1 parent 802b83c commit d1f23a3

10 files changed

Lines changed: 108 additions & 24 deletions

current/css/aboutpreferences/preferences_alternative_appearance_v2.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,15 +256,15 @@
256256
}
257257

258258
/* checkbox and radio items */
259-
checkbox .checkbox-check {
259+
/*checkbox .checkbox-check {
260260
appearance: unset !important;
261261
box-shadow: unset !important;
262262
}
263263
264264
radio .radio-check {
265265
appearance: unset !important;
266266
box-shadow: unset !important;
267-
}
267+
}*/
268268

269269
radio,
270270
checkbox {
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
/* Firefox userChrome.css tweaks ********************************************************/
2+
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
3+
/****************************************************************************************/
4+
5+
6+
/* Megabar: disable breakout / expanding onto toolbar *********************************************/
7+
#urlbar[breakout][breakout-extend] {
8+
margin-left: 0 !important;
9+
width: var(--urlbar-width) !important;
10+
margin-top: calc((var(--urlbar-container-height) - var(--urlbar-height)) / 2) !important;
11+
12+
13+
> .urlbar-input-container {
14+
height: var(--urlbar-height) !important;
15+
padding-block: var(--urlbar-container-padding) !important;
16+
padding-inline: var(--urlbar-container-padding) !important;
17+
}
18+
}
19+
20+
#urlbar[breakout][breakout-extend] > #urlbar-background {
21+
animation-name: unset !important;
22+
}
23+
24+
#urlbar[breakout][breakout-extend] > :is(#urlbar-input-container,.urlbar-input-container) {
25+
height: var(--urlbar-height) !important;
26+
padding-block: 1px !important;
27+
padding-inline: 1px !important;
28+
border-bottom-left-radius: 0px !important;
29+
border-bottom-right-radius: 0px !important;
30+
}
31+
32+
/* disable result item roundness */
33+
#urlbar[breakout] .urlbarView-row-inner {
34+
border-radius: 0px !important;
35+
}
36+
37+
/* disable 'breakout' animation */
38+
#urlbar[breakout],
39+
#urlbar[breakout] * {
40+
animation: unset !important;
41+
duration: 0s !important;
42+
animation-duration: 0s !important;
43+
}
44+
45+
.urlbarView-body-inner {
46+
border-top: 0px !important;
47+
}

current/css/tabs/classic_squared_tabs.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -677,3 +677,8 @@
677677
margin-inline-end: 4px !important;
678678
}
679679
}
680+
681+
/*Fx 132+ */
682+
.tab-content {
683+
padding: 0 8px !important;
684+
}

current/css/tabs/classic_squared_tabs_australized.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -643,3 +643,9 @@
643643
margin-inline-end: 4px !important;
644644
}
645645
}
646+
647+
/*Fx 132+ */
648+
.tab-content {
649+
padding: 0 8px !important;
650+
}
651+

current/css/tabs/tab_audio_icon.css

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,15 @@
1414
}
1515
.tab-icon-overlay {
1616
padding: 0 !important;
17+
border: 0 !important;
18+
background-color: transparent !important;
19+
background-position: right !important;
20+
fill: currentColor !important;
1721
}
1822
.tab-icon-overlay:hover {
19-
background: none !important;
23+
/*background-color: transparent !important;*/
24+
filter: brightness(1.10)!important;
25+
opacity: 0.8 !important;
2026
}
2127
.tab-icon-stack:is([soundplaying], [muted], [activemedia-blocked]) > * {
2228
opacity: 1 !important;

current/css/tabs/tab_audio_icon_colorized.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
fill: #FFE900 !important;/* var(--yellow-50) */
1414
}
1515

16-
:root[lwtheme]:-moz-lwtheme-brighttext:not([style*='--lwt-header-image']) .tab-icon-overlay[soundplaying] {
16+
:root[lwtheme-brighttext]:not([style*='--lwt-header-image']) .tab-icon-overlay[soundplaying] {
1717
fill: lightgreen !important;
1818
}
19-
:root[lwtheme]:-moz-lwtheme-brighttext:not([style*='--lwt-header-image']) .tab-icon-overlay[muted] {
19+
:root[lwtheme-brighttext]:not([style*='--lwt-header-image']) .tab-icon-overlay[muted] {
2020
fill: #ff5a5a !important;
2121
}
22-
:root[lwtheme]:-moz-lwtheme-brighttext:not([style*='--lwt-header-image']) .tab-icon-overlay[activemedia-blocked] {
22+
:root[lwtheme-brighttext]:not([style*='--lwt-header-image']) .tab-icon-overlay[activemedia-blocked] {
2323
fill: orange !important;
2424
}
2525

current/css/tabs/tabs_below_main_content.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
padding-bottom: 0px !important;
2929
border-bottom: 1px solid threedshadow !important;
3030
}
31-
31+
/*
3232
#main-window:not([inDOMFullscreen="true"]) #browser,
3333
#main-window:not([inDOMFullscreen="true"]) #customization-container {
3434
margin-bottom: var(--tab_below_main_content_bottom_margin) !important;
35-
}
35+
}*/
3636

3737
#TabsToolbar {
3838
min-height: 0 !important;

current/css/tabs/tabs_below_main_content_fx133.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,7 @@
2424
#main-window[sizemode="maximized"] #toolbar-menubar {
2525
margin-top: -5px !important;
2626
}
27+
28+
#navigator-toolbox {
29+
z-index: 3 !important;
30+
}

current/css/toolbars/addonbar_move_bookmarks_toolbar_to_bottom.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,16 +130,20 @@
130130
-moz-box-align: center !important;
131131
align-items: center !important;
132132
}
133-
133+
/*
134134
#main-window:not([inDOMFullscreen="true"],[sizemode="fullscreen"]) #browser,
135135
#main-window:not([inDOMFullscreen="true"],[sizemode="fullscreen"]) #customization-container {
136136
margin-bottom: var(--addonbar_height) !important;
137-
}
137+
}*/
138138

139139
#PersonalToolbar .toolbarbutton-1 {
140140
margin-block: 0px !important;
141141
}
142142

143+
#navigator-toolbox {
144+
z-index: 3 !important;
145+
}
146+
143147

144148

145149
/*************************/

current/userChrome.css

Lines changed: 26 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*===============================================================================
22
Firefox userChrome.css tweaks: main file
33
4-
Custom CSS for Firefox 115+
5-
Current version: 4.5.9
4+
Custom CSS for Firefox 128+
5+
Current version: 4.6.0
66
77
Based on 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons CSS code
88
Github: https://github.com/aris-t2/customcssforfx
@@ -570,18 +570,18 @@
570570
TABS BELOW NAVIGATION AND BOOKMARKS TOOLBARS / TABS NOT ON TOP
571571
--------------------------------------------------------------
572572
573-
[!] Note: only 'alt' works with multi-tab lines option.
573+
[!] Note: 'alt' works with multi-tab lines option up to Fx 132.
574+
[!] Note: '_fx133.css' version works with multi-tab lines option for Fx 133+.
574575
[!] Note: might require overriding url bars 'selection color' --> see corresponding area
576+
[!] only use one option at a time
575577
*/
576578

577-
/* @import "./css/tabs/tabs_below_navigation_toolbar.css"; /**/
578-
579-
/* ########################################### Test for Firefox 133+ ########################################### */
580-
/* @import "./css/tabs/tabs_below_navigation_toolbar_fx133.css"; /**/
579+
/* @import "./css/tabs/tabs_below_navigation_toolbar.css"; /**/ /* for Firefox 132 and below */
580+
/* @import "./css/tabs/tabs_below_navigation_toolbar_fx133.css"; /**/ /* for Firefox 133+ */
581581

582582

583583
/* Alternative for multi-lined tabs (Glitches might occur with inactive menubar!)
584-
[!] use option below for multiple tab lines support
584+
[!] use option below for multiple tab lines support (up to Fx 132 only !)
585585
*/
586586

587587
/* @import "./css/tabs/tabs_below_navigation_toolbar_alt.css"; /**/
@@ -606,12 +606,11 @@
606606
----------------------------------------
607607
608608
[!] not compatible to 'tabs toolbar - multiple tab lines' option
609+
[!] only use one option at a time
609610
*/
610611

611-
/* @import "./css/tabs/tabs_below_main_content.css"; /**/
612-
613-
/* ########################################### Test for Firefox 133+ ########################################### */
614-
/* @import "./css/tabs/tabs_below_main_content_fx133.css"; /**/
612+
/* @import "./css/tabs/tabs_below_main_content.css"; /**/ /* for Firefox 132 and below */
613+
/* @import "./css/tabs/tabs_below_main_content_fx133.css"; /**//* for Firefox 133+ */
615614

616615

617616
/* --------------------------------------------------------------------------------
@@ -638,7 +637,8 @@
638637
[!] BUG: dragging tabs does not work with multi lined tabs
639638
[!] not compatible with 'tabs toolbar - below main content' option
640639
[!] not compatible with 'newtab button always_visible' option
641-
[!] only compatible with 'tabs below navigation toolbar >> alt << version'
640+
[!] up to Firefox 132: only compatible with 'tabs below navigation toolbar >> alt << version'
641+
[!] Fx 133+: compatible with tabs_below_navigation_toolbar_fx133.css
642642
*/
643643

644644
/* @import "./css/tabs/tabs_multiple_lines.css"; /**/
@@ -1179,11 +1179,23 @@
11791179
--------------------------------------------------
11801180
*/
11811181

1182-
@import "./css/locationbar/megabar_expanding_breakout_disabled.css"; /**/
1182+
11831183
/* @import "./css/locationbar/megabar_disable_openviewonfocus.css"; /**/
11841184
/* @import "./css/locationbar/urlbar_border_roundness.css"; /**/
11851185
@import "./css/locationbar/urlbar_restore_visible_border.css"; /**/
11861186

1187+
/* -------------------------------------
1188+
Megabar expanding_breakout_disabled
1189+
-------------------------------------
1190+
1191+
[!] only use one option at a time
1192+
[!] _fx133.css for Firefox 133+
1193+
1194+
*/
1195+
1196+
/* @import "./css/locationbar/megabar_expanding_breakout_disabled.css"; /**/
1197+
/* @import "./css/locationbar/megabar_expanding_breakout_disabled_fx133.css"; /**/
1198+
11871199

11881200
/* -------------------------------------
11891201
Megabar/location bar background color

0 commit comments

Comments
 (0)