Giter Site home page Giter Site logo

Comments (4)

kubakakauko avatar kubakakauko commented on August 17, 2024

Its something to do with acrylic_micaforeveryone.css and userChrome.css but I don't know how to fix it.

from firefox-mod-blur.

datguypiko avatar datguypiko commented on August 17, 2024

It is mica problem (not the program itself but how firefox works when you make the blur work). It creates another set of button which you cant disable, move or hide nor interact. What I do is put the old ones in the same place..

So the issue seems happening because of scaling in your windows, or resolution for the positioning.

Solution for now it's just to hide the original button icons.

Open the acrylic_micaforeveryone.css file

remove these lines (around 170)

#navigator-toolbox:not(:-moz-window-inactive):-moz-lwtheme #navigator-toolbox .titlebar-button:not(.titlebar-close),
#navigator-toolbox:not(:-moz-window-inactive):-moz-lwtheme #navigator-toolbox .titlebar-close:not(:hover)
{
   list-style-image: none !important;
}

and add this

#navigator-toolbox .titlebar-button:not(.titlebar-close),
#navigator-toolbox .titlebar-close:not(:hover) {
	list-style-image: none !important;
}

It will fix it. But the close button on hover will have a little bit of wrong positioning depending on scale or resolution.
Will try looking into it if there is anyway to fix this which I doubt.

from firefox-mod-blur.

kubakakauko avatar kubakakauko commented on August 17, 2024

Thank you, that worked well!

Im not sure if its in any way useful to anyone nor if its a good practice but i've changed

#TabsToolbar .titlebar-buttonbox-container .titlebar-button > .toolbarbutton-icon {
  height: 12px !important;
  min-height: 12px !important;
  width: 12px !important;
  min-width: 12px !important;
}

to this

#TabsToolbar .titlebar-buttonbox-container .titlebar-button > .toolbarbutton-icon {
  margin-top: 4px !important;
  height: 12px !important;
  min-height: 12px !important;
  width: 12px !important;
  min-width: 12px !important;
}

for some reason it stopped the window close button from jumping when hovered over.

from firefox-mod-blur.

datguypiko avatar datguypiko commented on August 17, 2024

TDLR anything other than 100% scaling in windows will probably cause issues with the buttons. Because of the firefox implementation for transparency there is nothing you can do dynamically.

Different scaling probably requires different positioning.

If you want to make the hover more centered try moving these buttons to left or right

#navigator-toolbox .titlebar-button.titlebar-min .toolbarbutton-icon {
}

#navigator-toolbox .titlebar-button.titlebar-max .toolbarbutton-icon,
#navigator-toolbox .titlebar-button.titlebar-restore .toolbarbutton-icon{
}

Same issue QNetITQ/WaveFox#83

from firefox-mod-blur.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.