• Решено
  • Архивировано

CSS to show close tab button when mouse hover a tab

Currently I'm using the css from this thread https://support.mozilla.org/en-US/questions/1341968 Now with firefox 113, this no longer works, I'm hoping someone can help … (читать ещё)

Currently I'm using the css from this thread https://support.mozilla.org/en-US/questions/1341968 Now with firefox 113, this no longer works, I'm hoping someone can help me with this.

Задан Testxxxx1234 2 года назад

Дан ответ cor-el 2 года назад

  • Решено
  • Архивировано

Tab Close button "X" on hover

Till version 112 I used this in my userChrome.css to get back the close buttons on tabs, but only when I hover over them (active or inactive tabs): .tab-close-button{ dis… (читать ещё)

Till version 112 I used this in my userChrome.css to get back the close buttons on tabs, but only when I hover over them (active or inactive tabs): .tab-close-button{ display: none } .tabbrowser-tab:not([pinned]):hover .tab-close-button{

   display: -moz-box !important

}

But now with version 113.0.1 it doesn't work at all and no X appears when I hover over my tabs.

I tried adding #tabbrowser-tabs[closebuttons="activetab"] on top of the previous code, but it made the X appear all the time.

How could I update this code so I get the desired result only when I hover over a tab?

Задан Neo2x 2 года назад

Дан ответ cor-el 2 года назад

  • Решено
  • Архивировано

Private browsing: Screenshot not available, headphones don't work

I run Firefox on a #Windows 10 Dell laptop. I have a question and a problem, both of which involve Private Browsing. Question: Does Screenshot work in Private Browsing? … (читать ещё)

I run Firefox on a #Windows 10 Dell laptop. I have a question and a problem, both of which involve Private Browsing.

Question: Does Screenshot work in Private Browsing? If so, how do I enable it.

Problem: When I'm in Private Browsing, my headphones aren't recognized; in normal browsing,the headphones are recognized. is this a Firefox problem or a Dell problem?

Thank you.

Задан crogerblair1 2 года назад

Дан ответ lazizakhmedov1014 2 года назад

  • Решено
  • Архивировано

How to prevent sites knowing when I select text?

I've been trying to copy an email address someone emailed me. (I use Microsoft Outlook.) However, when I try to select the email address, Outlook seems to know I've sele… (читать ещё)

I've been trying to copy an email address someone emailed me. (I use Microsoft Outlook.)

However, when I try to select the email address, Outlook seems to know I've selected it and performs some action, taking me to a different page. VERY ANNOYING!

Sites shouldn't be able to know when you're selecting text - that has nothing to do with them! How do I disable this?

Задан MartyJames 2 года назад

Дан ответ cor-el 2 года назад

  • Решено
  • Архивировано

Blank bar at bottom of window on 113 version

On 112, I had my css set up to make the status bar hidden and only show the url path when I moused over it in the lower left corner of the window. It also cut itself shor… (читать ещё)

On 112, I had my css set up to make the status bar hidden and only show the url path when I moused over it in the lower left corner of the window. It also cut itself short to only the length of the url similar to the www.wikipedia.org box in the attached picture. After upgrading to 113, my browser has this black bar at the bottom. When I cleared out my css file, urls would show up in the bar when I moused over them. I've tried a few different css fixes but none of them will get it back to how I had it working in 112. The picture attached is what I'm getting in 113 right now with the css below. the black bar below the mouse over url goes all the way across the window and is always visible. Here is my current css file:

radiogroup:focus-visible > radio[focused="true"] > .radio-label-box {

outline: 1px dotted black !important;

}

:root{ --toolbar-field-focus-border-color: transparent !important; }

:root{ --uc-titlebar-padding: 10px; }

@media (-moz-os-version: windows-win7),(-moz-os-version: windows-win10){

:root[sizemode="maximized"][tabsintitlebar]{ --uc-titlebar-padding: 8px }

}

#toolbar-menubar[autohide="true"] > .titlebar-buttonbox-container,

#TabsToolbar > .titlebar-buttonbox-container{

position: fixed;

display: block;

top: var(--uc-titlebar-padding,0px);

right:0;

height: 40px;

}

/* Mac specific. You should set that font-smoothing pref to true if you are on any platform where window controls are on left */

@supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled"){

:root{ --uc-titlebar-padding: 0px !important }

.titlebar-buttonbox-container{ left:0; right: unset !important; }

}

:root[uidensity="compact"] #TabsToolbar > .titlebar-buttonbox-container{ height: 32px }

#toolbar-menubar[inactive] > .titlebar-buttonbox-container{ opacity: 0 }

#navigator-toolbox{ padding-top: var(--uc-titlebar-padding,0px) !important; }

.titlebar-buttonbox-container > .titlebar-buttonbox{ height: 100%; }

#titlebar{

order: 2;

-moz-appearance: none !important;

--tabs-navbar-shadow-size: 0px;

}

#unified-extensions-button{

display: none !important;

}

.titlebar-placeholder,

#TabsToolbar .titlebar-spacer{ display: none; }

/* Also hide the toolbox bottom border which isn't at bottom with this setup */

#navigator-toolbox::after{ display: none !important; }

@media (-moz-gtk-csd-close-button){ .titlebar-button{ -moz-box-orient: vertical } }

/* These exist only for compatibility with autohide-tabstoolbar.css */

toolbox#navigator-toolbox > toolbar#nav-bar.browser-toolbar{ animation: none; }

#navigator-toolbox:hover #TabsToolbar{ animation: slidein ease-out 48ms 1 }

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom_menubar_on_top_patch.css made available under Mozilla Public License v. 2.0

See the above repository for updates as well as full license text. */

/* Menubar on top patch - use with tabs_on_bottom.css */

/* Only really useful if menubar is ALWAYS visible */

:root:not([sizemode="fullscreen"]){ --uc-window-control-width: 0px !important }

:root{

/* height if native titlebar is enabled, assumes empty menubar */

--uc-menubar-height: 22px;

}

:root[tabsintitlebar]{

/* height when native titlebar is disabled, more roomy so can fit buttons etc. */

--uc-menubar-height: 22px;

}

#navigator-toolbox{ padding-top: calc(var(--uc-menubar-height) + var(--uc-titlebar-padding,0px)) !important }

:root[sizemode="fullscreen"] #navigator-toolbox{ padding-top: 0px !important; }

#toolbar-menubar{

position: fixed;

display: flex;

top: var(--uc-titlebar-padding,0px);

height: var(--uc-menubar-height);

width: 100%;

overflow: hidden;

}

#toolbar-menubar > .titlebar-buttonbox-container{ height: 100%; order: 100; }

#toolbar-menubar > [flex]{ flex-grow: 100; }

#toolbar-menubar > spacer[flex]{

order: 99;

flex-grow: 1;

min-width: var(--uc-window-drag-space-width,20px);

}

#toolbar-menubar .titlebar-button{ padding: 2px 17px !important; }

#toolbar-menubar .toolbarbutton-1 { --toolbarbutton-inner-padding: 3px }

/* Status-bar */

#main-window:not([inFullscreen="true"]) > body::after{

display: -moz-box;

content: "";

height: 20px;

border-top: solid 0px #505050;

}

.browserContainer>statuspanel { left: 4px !important; bottom: 0px; transition-duration: 0s !important; transition-delay: 0s !important; }

.browserContainer>statuspanel>.statuspanel-inner>.statuspanel-label { margin-left: 0px !important; border: none !important; padding: 0px !important; }

window[inFullscreen="true"] #browser-bottombox { display:none !important; }

window[inFullscreen="true"] .browserContainer>statuspanel[type="overLink"] .statuspanel-label { display:none !important; }

#statuspanel #statuspanel-label {

-moz-appearance: none !important;

border: 0px solid black !important;

}

Задан drogers4114 2 года назад

Дан ответ drogers4114 1 год назад

  • Решено
  • Архивировано

Firefox crashes when trying to log into websites

For the past few weeks, Firefox has started crashing when logging into various websites. I've updated Firefox, cleared cookies etc, reinstalled Firefox, opened it in Trou… (читать ещё)

For the past few weeks, Firefox has started crashing when logging into various websites. I've updated Firefox, cleared cookies etc, reinstalled Firefox, opened it in Troubleshooting mode, updated my OS, disabled extensions... everything I can think of. After some sleuthing, it seems to only happen when trying to log into a website. Doesn't happen on every site, which is weird.

This is so frustrating, please help!

Задан Jeff 2 года назад

Дан ответ Jeff 1 год назад

  • Решено
  • Архивировано

toolbar text vanished, can't get text OR icons back

I'm on the ESR and just updated from 112.0.2 to 113.0.1. I had text rather than icons displayed on my toolbar. Now the text has vanished and I can't find a way to get t… (читать ещё)

I'm on the ESR and just updated from 112.0.2 to 113.0.1. I had text rather than icons displayed on my toolbar. Now the text has vanished and I can't find a way to get text OR icons back. I have a disabled extension Classic Theme Restorer installed, but I thought it was already disabled long ago. In the Customize Toolbar dialog, the unused icons are displayed with text labels. When I drag one to the toolbar, it turns invisible like all the rest.

Задан gsknick 2 года назад

Дан ответ cor-el 2 года назад

  • Решено
  • Архивировано

Firefox forces https in address bar

FF keeps replacing http://mysite.domain.net:3344 with httpS://mysite.domain.net:3344 whatever I try to fix this behavior. Thing is that I own this server and there e… (читать ещё)

FF keeps replacing

http://mysite.domain.net:3344 with httpS://mysite.domain.net:3344

whatever I try to fix this behavior. Thing is that I own this server and there ever was't any SSL implemented. I mean this - never.

Other browsers (Chromium, Chrome, Opera) don't take such a forcing action, website opens like a charm. Why FF thinks it knows better which URL I really want to open?

I already googled _a lot_ in order to find solution, but no one worked.

Setup: Debian 11 Mate no proxy and no separate "internet security" stuff on laptop (other browsers with default settings confirm that) FF 102.11.0 ESR 64 no addons (all switched off)

already tried: browser.urlbar.autoFill false browser.cache.check_doc_frequency 1 network.stricttransportsecurity.preloadlist false browser.fixup.fallback-to-https false dom.security.https_first false

What else I could do to stop this madness? Thank you in advance for any help

Задан Godyay 1 год назад

Дан ответ Godyay 1 год назад

  • Решено
  • Архивировано

High memory and cpu usage for just opening the browser

I been having problems with firefox using up most of my cpu while browsing some websites and it doesn't even load as fast as before. This has been happening for a few day… (читать ещё)

I been having problems with firefox using up most of my cpu while browsing some websites and it doesn't even load as fast as before. This has been happening for a few days now. Prior to this, firefox was fine and loading pretty quick, but these last few days have been painful.

Thinking that was a small bug, i restarted my computer. Before opening the firefox again, I opened up task manager to check how much resources will the browser be using. Before that usage would be normal and not even close to high, but opening firefox and waiting a few seconds to let the home window appear, the task manager showed that it was using all of it still.

I browsed some other help questions on this website and disabled "Use recommended performance settings", because that was one of the solutions on one of the relevant questions. But even that didn't do reduce resource usage either. Is there any way to fix this or will I have to suck it up and suffer with slow loading?

Задан Rude Red 2 года назад

Дан ответ cor-el 1 год назад

  • Решено
  • Архивировано

Latest Update causes MAJOR Lag time

Last Tuesday, Win 11 AND Firefox both updated on the same day, Firefox to 113.0.1. Ever since, my Firefox has experienced SIGNIFICANT lag time loading even the most basi… (читать ещё)

Last Tuesday, Win 11 AND Firefox both updated on the same day, Firefox to 113.0.1. Ever since, my Firefox has experienced SIGNIFICANT lag time loading even the most basic of websites. It feels like Netscape 1.0 slow (yes, I'm that old). I've disabled 2/3ds of my addons to see if that would help and it hasn't. I don't know if it's an issue with the Win 11 update (KB5026372), with Firefox or some combination of both, but any help in addressing this issue would be greatly appreciated.

Задан brega03 1 год назад

Дан ответ cor-el 1 год назад

  • Решено
  • Архивировано

Transferring bookmarks from old hard drive to new pc

Hello, My old PC crashed and I want to transfer my bookmarks from the old hard drive to my new PC running windows 11. I have unlocked hidden files, but when I ran drive:… (читать ещё)

Hello,

My old PC crashed and I want to transfer my bookmarks from the old hard drive to my new PC running windows 11. I have unlocked hidden files, but when I ran drive:\Users\username\AppData\roaming\Mozilla\Firefox\Profiles nothing came up. I then ran places.sqlite and a list of places.sqlite appeared with some files having -wal &-shm after them?

I believe from reading here this is where my bookmarks are?

If so, how do I transfer them to my existing PC hard drive to use please? Many thanks Chris

Задан CM 1 год назад

Дан ответ jscher2000 - Support Volunteer 1 год назад

  • Решено
  • Архивировано

Firefox Memory Leak Microsoft

Hi. When opening the Microsoft Website (answers.microsoft.com) i experience some memory leaks. See photo for details. Someone knows why? … (читать ещё)

Hi. When opening the Microsoft Website (answers.microsoft.com) i experience some memory leaks. See photo for details.

Someone knows why?

Задан SuperFurias 2 года назад

Дан ответ SuperFurias 1 год назад

  • Решено
  • Архивировано

search bar problem

Just recently, in the past day or so, when I do a search in the search box, all the results get redirected to Bing instead of Google, that I have in my settings as defaul… (читать ещё)

Just recently, in the past day or so, when I do a search in the search box, all the results get redirected to Bing instead of Google, that I have in my settings as default. I have checked my settings, I even removed Bing from the list, and I still only get Bing results. Even when I go to Google and use their search box on their domain, I get Bing results. I did a virus scan without finding any problems. I'm stumped and don't understand why this happened and nothing I do can detect uncovers why this is happening.

Really irritating when I have to spend my time fixing stuff that is lurking in cyberspace!

Задан Sirius 2 года назад

Дан ответ Terry 1 год назад

  • Решено
  • Архивировано

The width size of search-engine-textbox on Overflow Menu is no full size anymore, Firefox 113

After update to Firefox 113, the width size of search-engine-textbox on Overflow Menu is no full size anymore. Before update to Firefox 113 (version 112 or older), the w… (читать ещё)

After update to Firefox 113, the width size of search-engine-textbox on Overflow Menu is no full size anymore.

Before update to Firefox 113 (version 112 or older), the width size is still normal: full size; like search-engine-textbox on Toolbar.

  • 5 screenshot:

[1]: Firefox 113, about version, link image: 1-About-version

[2]: Firefox 113, the width size of search-engine-textbox on Toolbar is full size, link image: 2-Search engine textbox - on toolbar - full width

[3]: Firefox 113, customize mode, the width size of search-engine-textbox on Overflow Menu is now full size, link image: 3-Search engine textbox - on overflow menu - customize mode - full width

[4]: Firefox 113, after customize, the width size of search-engine-textbox on Overflow Menu is no full size anymore. The width is so narrow, link image: 4-Search engine textbox - on overflow menu - after customize - narrow width

[5]: Firefox before 113, screenshot of another post (2022-may-04), the width size of search-engine-textbox on Overflow Menu is now still normal: full size.

link image: image on reddit

link post: post on reddit


Please review and restore the width setting, same as version 112 and earlier.

Thanks and best regards!

P.S.: I posted this on " Mozilla Connect > Discussions" at this link: The width size of search-engine-textbox on Overflow Menu is no full size anymore, Firefox 113

Задан zuumvuoogkagwkqpqa 2 года назад

Дан ответ cor-el 2 года назад

  • Решено
  • Архивировано

How to make Firefox address bar autocompletes full URL

Is there any way I can make Firefox address bar autocompletes the full URL (https://bitwarden.com/password-generator/ instead of https://bitwarden.com/)? … (читать ещё)

Is there any way I can make Firefox address bar autocompletes the full URL (https://bitwarden.com/password-generator/ instead of https://bitwarden.com/)?

Задан lloyd.fftrf 1 год назад

Дан ответ TyDraniu 1 год назад

  • Решено
  • Архивировано

Unable to upload or download files

Hello all, For some reason, I can no longer upload or download files, with the pop-up window failing to appear entirely. I can upload folders through, for example, Dropb… (читать ещё)

Hello all,

For some reason, I can no longer upload or download files, with the pop-up window failing to appear entirely. I can upload folders through, for example, Dropbox or Google Drive, but individual files don't work.

I've reset my browser, uninstalled and reinstalled it, opened it in troubleshooting mode, disabled enhanced tracking protection, but nothing seemed to work. I've tested another browser, and I was able to upload and download files just fine.

Is there anything I can do to fix this? I'm on Ubuntu 22.04 using Firefox 107.0.1.

Задан Erika Campbell 2 года назад

Дан ответ jonzn4SUSE 2 года назад

  • Решено
  • Архивировано

JavaScript disabled in temporary extension (developed by me)

In about:config javascript.enabled = True I didn't change any settings there. If I place, for example, " "options_ui": { "page": "settings.html", "open_in_t… (читать ещё)

In about:config javascript.enabled = True

I didn't change any settings there.

If I place, for example, " "options_ui": {

   "page": "settings.html",
   "open_in_tab": true
 },"

in the manifest.json of the extension, it does open the settings.html page as intended. Problem is that no JS script on settings.html works, be it if it's inline HTML or as a separate file (I tried separate file, as I thought it might be a security thing).

I mean even simple JS such as console.log or

"<button onclick="showPopup()">Show Popup</button>

   <script>
       function showPopup() {
           alert('Hello! This is a popup.');
       }
   </script>"

Other actually installed extensions - their JS on settings pages runs.

I also tried running settings.html as a popup, and I succesfully done so, it's just that once again JS didn't work...

I'm at my wits end, I have googled, I have chatted with the ChatGPT, took me hours thinking it was something wrong with my code... I'm actually making something useful, never done before (it reads out youtube subtitles via TTS, providing ability to still hear original sound, its emotions, no need to look at the screen and it's also a passive language learning type of thing), and it works, it's just that setting page's JS, which I think I need to allow users change speed of TTS and volume of the TTS

Задан conrad.rzuc 1 год назад

Дан ответ conrad.rzuc 1 год назад

  • Решено
  • Архивировано

New Bing search engine in Firefox Browser

How do I permanently remove this new Bing search engine from Firefox Browser? I don't like Bing. I go into settings, and change my default search engine to Google. But, t… (читать ещё)

How do I permanently remove this new Bing search engine from Firefox Browser? I don't like Bing. I go into settings, and change my default search engine to Google. But, the moment I search for something it shows that its Bing in the top left corner of the page. I can't get rid of it. Please help! I really don't like Bing! It has never fully helped me find what I'm looking for, or been thorough when searching for what something means. Can you please help me remove Bing from Firefox Browser? I sent 2 images showing what I mean. The first shows me wanting to use google to search for a word. And, in the second is what happens after I do that. You can clearly see Microsoft Bing in the top left corner. Thank You for any and all of your help & time!

Задан Toby 1 год назад

Дан ответ jscher2000 - Support Volunteer 1 год назад

  • Решено
  • Архивировано

Firefox Windows displays Monofont not as monofont

Since `monospace` means something diffrent on every device, and I need consistency between clients I use `Roboto Mono` on my Website as ASCII-Art font. For some reason Fi… (читать ещё)

Since `monospace` means something diffrent on every device, and I need consistency between clients I use `Roboto Mono` on my Website as ASCII-Art font. For some reason Firefox on Windows cannot render the font properly (view image). What can i do to fix this? The problem presists across my desktop and Laptop. See for yourself https://nx2.site/my-ascii-art (I cannot guarantee this is always up + In the future it's hopefully fixed?)

Задан lennart.kurzweg.lk 1 год назад

Дан ответ lennart.kurzweg.lk 1 год назад