Search
How to hide tab preview on hover introduced in FF 131?
Hello,
I've already hided the preview of tab name on hover when they introduced it back then with:
/* disable preview of a tab name as you hover over it */ #tabbrowser-tab-tooltip { display: none !important; }
but I can't seem to find the selector to hide this new feature as well, so I was wondering if I could get some help :D
Thanks in advance!
How to Apply margin to web content but not when a video is in fullscreen?
hi, I would like to know how to Apply margin to web content but not when a video is in fullscreen? and keep the margin when Firefox is in fullscreen. I mean I would like to apply a margin to web content that not affect when a video is in fullscreen. I used this code:
``` :root:not([chromehidden~="toolbar"]) {
/* Web content */ & #appcontent{ margin-inline-start: var(--my-vertical-toolbar-width) !important; }
/* Sidebar + sidebar content */ & #sidebar-box[checked="true"] { margin-inline-start: var(--my-vertical-toolbar-width) !important; }
/* Sidebar + sidebar content + web content */ & #sidebar-box[checked="true"] ~ #appcontent { margin-inline-start: 0px !important; } } ```
but that applies a margin when a video is in fullscreen, I tried too this code but removes the margin when Firefox is in fullscreen:
:root:not([chromehidden~="toolbar"],[sizemode="fullscreen"]) { ... }
This simple findbar JS script for FF stopped working in 128, how could I fix it?
Hello,
I've been using this script for ages, up to the point I forgot that ctrl-f to open and close the findbar wasn't a native behavior. Today I noticed it doesn't work anymore and I think it's FF128 that broke it...but I can't seem to see how to fix it.
Anyone's got ideas?
Hide one of a double separator using userchrome.css
I see a double separator below the "Copy link" option in the link context menu seen when you right-click a link. I tried commenting out all the code I have relating to context menus and it's still there.
I have tried adding the separator id (#context-sep-copylink) to code I have to hide various context menu items and that was ineffective.
The text in the menu isn't as large as the screenshot suggests.
SOLVED. It was the separator sendlinktodevice. The other code was hiding the separator below copy link in the image context menu. The double line was just an irritant, not a practical problem, but I'm glad it's gone. Thanks to those who replied.