datguypiko / Firefox-Mod-Blur

Firefox CSS Theme - For dark theme lovers / More compact / Modular / Blur
1.35k stars 62 forks source link

[FIX] Color correction for the "show searchbar dots only on hover" module. #161

Closed SaiyajinK closed 1 day ago

SaiyajinK commented 1 day ago

hi,

i just upgraded to firefox 133 and updated the theme to version 2.12. Everything works fine but i noticed a small problem with the module show_searchbar_dots_only_on_hover.css

Indeed when hovering the dots are totally black and not visible :

firefox_50ngPBpCyS

This can be fixed simply by modifying "show_searchbar_dots_only_on_hover.css" with these lines :

/* Only show dots in search bar when hovered */
#urlbar #identity-box::after,
#urlbar #page-action-buttons::before {
    opacity: 0;
}

#urlbar:hover #identity-box::after,
#urlbar:hover #page-action-buttons::before {
    opacity: 0.8;
    transition: opacity 100ms ease;
    filter: invert(1);
}

résultat : firefox_9F8yTnslqH

Well, this was just to report it so you can integrate the fix for future uploads. 👋🏻

datguypiko commented 1 day ago

Enable "svg.context-properties.content.enabled" in about:config I will add a notification at the top for those who doesnt have it.

datguypiko commented 1 day ago

Added notification to v2.13 https://github.com/datguypiko/Firefox-Mod-Blur/releases/tag/v2.13

You dont need to redownload this if you enabled svg.context-properties.content.enabled already.