datguypiko / Firefox-Mod-Blur

Firefox Theme - For dark theme lovers / More compact / Modular / Blur
1.24k stars 59 forks source link

Differences betwwen versions #124

Closed 1111Al closed 3 months ago

1111Al commented 3 months ago

Two screenshots, 1) is Mod Blur 2.3 applied to FF 110 (with Mica transparence), the second screenshots is the ModBlur 2.7.8 applied to FF 126.0.1 with mica too. Why 110 is perfect whereas 126 is so broken?

Senza titolo1

Senza titolo2

datguypiko commented 3 months ago

Because firefox devs changed something with 117.x version and micaforeveryone has been broken since.

1111Al commented 3 months ago

Because firefox devs changed something with 117.x version and micaforeveryone has been broken since.

It's broken even without mica and other mods files, just you add the usercrome.css file to the normal version of FF and it breaks.

datguypiko commented 3 months ago

show me what's broken without mica.

Looks like you are just missing image icons

make sure you have image folder in assets folder as some locations changed some time ago, should look like this image

1111Al commented 3 months ago

Ok thanks for tip, I rechecked there was a wrong file structure. Now there is just one difference with ver 110, the close (x) of the tabs is on the right, in the 110 instead it is consistently to the left of the tab. Last thing; editing the ccs file is it possible to leave the three buttons (max/min/close) colored even without hover on them?

PS: mica works flawless on 126 too, because I use DWMBlur, which makes everything compatible with the translucent style.

datguypiko commented 3 months ago

I tried the DWMBlur but it doesnt really blur anything, as broken as micaforeveryone (w11) for me image.

I dont remember close button ever being on the left side. For older versions I would use older files anyway that you can find in releases if you still on 110.

For the min-max-close buttons open this "min-max-close_buttons.css" file and remove this line image

1111Al commented 3 months ago

I solved by adding the code below to tab section, now the tab close x button appears when hover it. Mica on my 126 looks to be working well

Senza titolo

.tabbrowser-tab .tab-close-button { opacity: 0; margin-left: -4.5px !important; margin-right: 2px !important; } .tabbrowser-tab:not(:hover) .tab-close-button { display:none; } .tabbrowser-tab:not([pinned="true"]):hover .tab-close-button { opacity: 1; margin-inline-end: 0; order:-1 !important; display:unset !important; } .tabbrowser-tab:not([pinned="true"]):hover .tab-icon-stack { -moz-box-ordinal-group: 99999 !important; } .tabbrowser-tab:not([pinned="true"]):hover .tab-icon-stack:not([indicator-replaces-favicon]) { display: none; }