this post was submitted on 23 Apr 2024
1 points (100.0% liked)

Firefox Customs

3 readers
1 users here now

Chat with us!

Post your unsupported Firefox customizations here!

From the makers of r/FirefoxCSS

Links

Related

Rules

  1. Posts must have flair!
  2. Posts cannot be memes/shitposts. They should be about Firefox customization with CSS.
  3. Please be civil. Bear in mind that many users come here for help and would be turned off by insults and rudeness.
  4. When posting large amount of code use a service dedicated to hosting text snippets, such as pastebin, hastebin, github gist or equivalent. Relatively short snippets can be wrapped in code-block for inline viewing.
  5. Do NOT use url-shorteners or link to compressed downloads (such as zip or rar) when sharing code.

founded 1 year ago
MODERATORS
 

This one has been driving me crazy for ages...

When I use the Browser Toolbox - with the option Disable popup auto-hidebeing checked - and I hover over or select an element in the inspector , the info panels/tooltips that are usually displayed above and/or in front of the targeted/selected elements are covered by the open popups.

Also, the selected UI popup parts are not highlighted as they would be for other bits, there's only that dotted grid visible - again partially hidden - that gives you a general idea of what you are looking at.

This is on MacOs/Fx 115esr; I understand the issue is the same on Windows.

I've tried lots of css and javascript codes to find a way to target that thing, but to no avail.

The Fx popups in general have a silly high z-index, so that might be part of the issue; I'm wondering if there's any way to fix that.

Screenshot below.

Screenshot

top 4 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 4 months ago (1 children)

I think this is essentially bug 1728912 - maybe you want to read and/or follow that.

[–] [email protected] 1 points 4 months ago (1 children)

Thanks for the reply, seems like the same issue indeed. Do you happen to know how to target that tooltip, or know it's selector?

[–] [email protected] 2 points 4 months ago (1 children)

I can't remember of the top of my head, but I seem to recall the custom highlighter is inserted to the end of the dom in targeted window, so maybe you can find it just from the inspector.

But I don't think it will do you much good because it sounds like you would need to modify native c++ code to make the changes that would allow the current highlighter implementation to work with panel or popups. At least, that's how I understand it.

[–] [email protected] 1 points 4 months ago

Thanks again; I kinda managed to target the highlighters' css with force by js, but it's getting too much trouble at this point.