Hiển thị các câu hỏi được đánh dấu: Xem tất cả các câu hỏi

Double icons on Stop & Reload buttons when using custom icons

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my St… (xem thêm)

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my Stop icon.

Please see attached image and animation.

Any idea if this is a minor bug?

Below is my code to split the Reload button into Reload & Stop buttons, then to add text to the navigation buttons, and finally to add icons to the navigation buttons.

This anomaly happens whether or not I split the Reload & Stop buttons. With just a single Reload button, I'm also seeing the default Reload icon appear over my own.

Thank you.

/* ---------- SPLIT RELOAD BUTTON INTO RELOAD & STOP ------------- */
#reload-button, #stop-button {
   display: inherit !important; 
} 
#reload-button > .toolbarbutton-icon {
  -moz-appearance: none !important; 
}


/* ------------ ADD TEXT LABELS TO NAVIGATION TOOLBAR BUTTONS --------------- */
/* Shows both icon and label for toolbarbuttons */
toolbar .toolbarbutton-1[label]{
  flex-direction: column;
  align-items: center !important;
}
toolbar .toolbarbutton-1[label]:not([disabled]):hover{ background-color: var(--toolbarbutton-hover-background) !important; }
toolbar .toolbarbutton-1[label] > .toolbarbutton-icon,
toolbar .toolbarbutton-1[label] > .toolbarbutton-badge-stack{
  padding: var(--toolbarbutton-inner-padding) !important;
  padding-bottom: 0px !important;
  height: calc(var(--toolbarbutton-inner-padding) + 16px) !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text {
  display: flex !important;
  min-height: 16px !important;
  padding-top: 3px !important;
  padding-bottom: 6px !important;
  background-color: transparent !important;
  overflow: hidden;
  width: 9ch; /* changes space between buttons */
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text::before{
  margin-inline: auto;
 }
:root:not([uidensity="compact"]) toolbar .toolbarbutton-1[label] > .toolbarbutton-text{ padding: 2px !important; }


/* ------------ ADD CUSTOM ICONS TO NAVIGATION TOOLBAR BUTTONS ----------- */
#back-button {
   list-style-image: url("image/back.png") !important;
   padding-top: 8px !important;
}
#back-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#forward-button {
   list-style-image: url("image/forward.png") !important;
   padding-top: 8px !important;
}
#forward-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#reload-button {
   list-style-image: url("image/reload.png") !important;
   padding-top: 8px !important;
}
#reload-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#stop-button {
   list-style-image: url("image/stop.png") !important;
   padding-top: 8px !important;
}
#stop-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#print-button {
   list-style-image: url("image/print.png") !important;
   padding-top: 8px !important;
}
#print-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#home-button {
   list-style-image: url("image/home.png") !important;
   padding-top: 8px !important;
}
#home-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}

Được hỏi bởi Slouch 2 ngày trước

Lần cuối trả lời bởi Slouch 2 ngày trước

Can't launch my url in Selenium-controlled Firefox browser process

Receiving this error: Firefox is already running, but is not responding. The old Firefox process must be closed to open a new window. My desktop app redirects user to a … (xem thêm)

Receiving this error: Firefox is already running, but is not responding. The old Firefox process must be closed to open a new window.

My desktop app redirects user to a login screen on Firefox, and I want to automate it using Selenium. My current workflow: 1. Launch Selenium-controlled Firefox browser using GeckoDriver 2. Click on "Login" button on my desktop app. The desktop app launches the login screen on user's OS default browser using the default user profile (in which case I set in profiles.ini to the temp profile copy created by Selenium). 3. (ERROR) Popup on the above error is displayed

Code: import configparser import os

web_driver = selenium_webdriver.Firefox(executable_path='C:\\Users\\mnxl\\.wdm\\drivers\\geckodriver\\win64\\v0.34.0\\geckodriver') profile = web_driver.capabilities['moz:profile']

  1. Path to the Firefox profiles folder

profiles_path = os.path.expanduser(r'~\AppData\Roaming\Mozilla\Firefox')

  1. Path to the profiles.ini file

profiles_ini_path = os.path.join(profiles_path, 'profiles.ini')

  1. Read the profiles.ini file

config = configparser.ConfigParser() config.read(profiles_ini_path)

  1. Find the section for the profile to set as default

for section in config.sections():

   if config.has_option(section, 'Path') and config.get(section, 'Path') == profile:
       # Set this profile as the default
       config.set(section, 'Default', '1')
   else:
       # Set all other profiles as not default
       config.set(section, 'Default', '0')
  1. Write the changes back to the profiles.ini file

with open(profiles_ini_path, 'w') as configfile:

   config.write(configfile)

Được hỏi bởi Magdeline Ng 12 giờ trước

Firefox takes ~5 minutes to startup (even the Profile Manager and in every possible modes)

Firefox takes about 5 minutes to load every it launches, before working smoothly like it should. This problem occured first time yesterday morning, and I have no idea wha… (xem thêm)

Firefox takes about 5 minutes to load every it launches, before working smoothly like it should. This problem occured first time yesterday morning, and I have no idea what could have caused it.

It happens :

  • when I launch firefox normally (whatever the profile)
  • when I launch it from the terminal (it provides no output at all)
  • when I tell it to launch the Profile Manager (5 minutes to see the Profile Manager appear, then 5 more minutes to launch firefox using the selected profile)

It does not happen :

  • when I click "New Window" inside an existing firefox process
  • when I call `firefox --help` from the terminal

Here's what I've tried :

  • First, I've seen pretty much every article from Mozilla Support, Reddit or SuperUser (writing this question is kind of my last resort)
  • I've tried removing and then reinstalling Firefox from Flatpak, from the Fedora repos (using `sudo dnf install firefox`) and using the manual install via the archive (v125)
  • I've tried downgrading firefox (when using the package manager install) from v125 to v124
  • I've also tried the Firefox Developer Edition, same problem here
  • I've tried using the "Refresh Firefox" feature and restarting in Troubleshoot Mode (both are also affected by the slow startup, which makes them particularly painful to execute)
  • I've tried manually deleting the `~/.mozilla/` folder (= manually deleting my profiles)

When firefox launches, it does not freezes my OS and does not seem to use many system ressources : CPU usage is normal, RAM as well, and it does not seem to read many things from the disk as well (I've seen some threads where this was the issue).

And here is something interesting that I discovered :

  • loading (including refreshing) `about:profiles` is also slow and this time freezes firefox (OS reports it as not responding, I can't switch tabs and I can't see my mouse). Other about pages seem to work fine (although I did not try them all)

Thanks !

PS : Even if I think it has nothing to do with the issue, I prefer to mention it here : I was messing with virtual machines yesterday when the issue occured for the first time. My disk got full at some point and I don't know but it might have messed with firefox. At this stage, I had not deleted any files that could relate somehow to Firefox, that's why I doubt it would have caused anything harmful to Firefox. (instead, I mounted an empty partition from my disk to get some space)

Được hỏi bởi Martin Heywang 3 ngày trước

Lần cuối trả lời bởi Martin Heywang 3 ngày trước

Speedometer2.1 My Firefox Score: 161 My Chrome Score: 380

Speedometer2.1 My Firefox Score: 161 My Chrome Score: 380 why im missing? its normal? same hardware, no extensions. how can i increase my firefox score? i have Ryzen … (xem thêm)

Speedometer2.1 My Firefox Score: 161 My Chrome Score: 380

why im missing? its normal? same hardware, no extensions.

how can i increase my firefox score?

i have Ryzen 5600 CPU and Radeon 6600 VGA and M2 SSD

Được hỏi bởi moderndefender 14 giờ trước

The pause button on the keyboard doesn't stop the video in Firefox.

When I press the pause button on my keyboard, it doesn't stop the YouTube video like it used to. I'm not sure why it stopped working. I've checked the key, and it works f… (xem thêm)

When I press the pause button on my keyboard, it doesn't stop the YouTube video like it used to. I'm not sure why it stopped working. I've checked the key, and it works fine in Chrome.

Được hỏi bởi Robert Clave 4 ngày trước

Lần cuối trả lời bởi Robert Clave 14 giờ trước

Setting border color for focused URL Bar

Hi All, I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus. The following code works for the se… (xem thêm)

Hi All,

I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus.

The following code works for the search bar, but the url bar is receiving a separate blue border around the gray border, instead of changing the color from gray to blue.

Can someone suggest how I might set the url bar to blue (just a single border, not the double it has now), both when it has focus and when it's expanded?

Thank you!

/* set non-focused url & search bars to gray border */
#urlbar > #urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background, #searchbar { border: 1px solid #a1a6b5 !important; outline: none !important; border-radius: 0px !important; }
/* set focused search bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #searchbar:focus-within { border: 1px solid #0078d7 !important; }
/* set focused url bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #urlbar:focus-within { border: 1px solid #0078d7 !important; }

Được hỏi bởi Slouch 14 giờ trước

Theme

I choose a new theme. After a while, I close Firefox. When I start Firefox again, my chosen theme appears briefly, then the default theme replaces it. Why? FYI: it doesn'… (xem thêm)

I choose a new theme. After a while, I close Firefox. When I start Firefox again, my chosen theme appears briefly, then the default theme replaces it. Why? FYI: it doesn't happen with just one theme.

Được hỏi bởi Iridium.throne 17 giờ trước

Is it normal for bookmarks to take this long to load on startup?

I am using the latest version of firefox nightly. I notice this on another PC that shares the same profile. However one of my PCs doesn't take this long and it uses the… (xem thêm)

I am using the latest version of firefox nightly. I notice this on another PC that shares the same profile. However one of my PCs doesn't take this long and it uses the same profile as well. It also seems that the pinned tabs are not loading correctly because I get errors with those pages too.

https://imgur.com/a/6IIyTJc

Được hỏi bởi gsrgtrdg4565653 17 giờ trước

Instagram page won't load.

Instagram page won't load. Doesn't load in Edge either. The proxy setting is off. It was loading yesterday, then today it won't. No malware detected by Mcafee or Spyhunte… (xem thêm)

Instagram page won't load. Doesn't load in Edge either. The proxy setting is off. It was loading yesterday, then today it won't. No malware detected by Mcafee or Spyhunter. My account is working fine from my phone.

Được hỏi bởi djrutger444 19 giờ trước

Lost personalization of Windows10 and Firefox after a power failure.

Re-booting following a power failure, I entered my pin & received a message something like, "Would you like to sign out? If you continue you risk losing personal data… (xem thêm)

Re-booting following a power failure, I entered my pin & received a message something like, "Would you like to sign out? If you continue you risk losing personal data. You can protect your data by signing out, then signing in again". So I signed out, then signed in again and the boot proceeded but it was like a brand new installation. Desktop background was Windows blue, about half my desktop icons gone, all default apps reset, in Firefox all my plug-ins/extensions gone, all my bookmarks gone. And Windows Settings now won't let me set Firefox as the default browser and when FF offers to set itself as the default browser, that doesn't work either.

I've got the feeling this is some kind of identity issue gone awry but I don't know how to fix it. Hoping someone on this forum recognizes the problem, and knows a solution. Thanks for any help offered.

Được hỏi bởi vimy100 19 giờ trước

Sync Not working

Sync just does NOT work. I installed FF on my Mac brand new and fresh... brand new machine. Signed into Sync. NOTHING. After 6-7 HOURS... nothing. It just gets NOTHING A… (xem thêm)

Sync just does NOT work. I installed FF on my Mac brand new and fresh... brand new machine. Signed into Sync. NOTHING. After 6-7 HOURS... nothing. It just gets NOTHING AT ALL from my Windows Desktop.

I've signed out of ALL Firefox/Mozilla sync sessions... signed in clean- all browsers are up to date. And the about:sync-log page shows a LONG streak of errors... NON STOP ERRORS.

Why?! Why can't we just sync extensions to install and bookmarks across machines? How is this that hard for Mozilla?!

The sync-log page list: File:error-sync-1714085057059.txt 6 KB 4/25/2024 17:44:17 File:error-sync-1714088658041.txt 18 KB 4/25/2024 18:44:18 File:error-sync-1714189161327.txt 6 KB 4/26/2024 22:39:21 File:error-sync-1714498425099.txt 13 KB 4/30/2024 12:33:45 File:error-sync-1714588968223.txt 10 KB 5/1/2024 13:42:48 File:error-sync-1714589121080.txt 9 KB 5/1/2024 13:45:21 File:error-sync-1714600674960.txt 7 KB 5/1/2024 16:57:55 File:error-sync-1714604277834.txt 24 KB 5/1/2024 17:57:57 File:error-sync-1714838021899.txt 24 KB 5/4/2024 10:53:41 File:error-sync-1714839602488.txt 11 KB 5/4/2024 11:20:02 File:error-sync-1714839613709.txt 10 KB 5/4/2024 11:20:13 File:error-sync-1714844303035.txt 16 KB 5/4/2024 12:38:23 File:error-sync-1714844919123.txt 15 KB 5/4/2024 12:48:39 File:error-sync-1714846872373.txt 17 KB 5/4/2024 13:21:12 File:error-sync-1714846956569.txt 12 KB 5/4/2024 13:22:36 File:error-sync-1714941772713.txt 15 KB 5/5/2024 15:42:52 File:error-sync-1714941774043.txt 14 KB 5/5/2024 15:42:54 File:error-sync-1714941849730.txt 14 KB 5/5/2024 15:44:09 File:error-sync-1714942633097.txt 14 KB 5/5/2024 15:57:13 File:error-sync-1714942674714.txt 48 KB 5/5/2024 15:57:54

Day after day and attempt after attempt of failures for a basic function of the browser.

Here is the text of the latest log and showing constant connection errors- mind you NOTHING is breaking on my internet as I'm often streaming things and watching stuff while surfing, or others in the house are. Our connection, and Firefox getting online, are all working fine. I am at a loss. I don't understand how this is so terribly broken out of the box that you can't just sign in and let it talk to their servers. I know Google has billions behind Chrome, but this shouldn't be so 1990's bad by comparison to Chrome sync.

1714081299909 Sync.SyncScheduler DEBUG Next sync in 3600000 ms. (why=schedule) 1714081300746 Sync.SyncScheduler DEBUG Network link status changed to "changed". Offline?: false 1714082945349 Sync.SyncScheduler DEBUG Network link status changed to "changed". Offline?: false 1714082945373 Sync.SyncScheduler DEBUG Network link status changed to "down". Offline?: false 1714082945373 Sync.SyncScheduler DEBUG Clearing sync triggers and the global score. 1714082945374 Sync.SyncScheduler DEBUG Next sync in 3600000 ms. (why=schedule) 1714085055761 Sync.SyncScheduler DEBUG Woke from sleep. 1714085056643 Sync.SyncScheduler DEBUG Network link status changed to "changed". Offline?: false 1714085056786 Sync.SyncScheduler DEBUG Network link status changed to "up". Offline?: false 1714085056786 Sync.SyncScheduler DEBUG Network link looks up. Syncing. 1714085056899 Sync.SyncScheduler DEBUG Network link status changed to "changed". Offline?: false 1714085056902 Sync.Service DEBUG User-Agent: Firefox/125.0.2 (Windows NT 10.0; Win64; x64) FxSync/1.127.0.20240419144423.desktop 1714085056902 Sync.Service INFO Starting sync at 2024-04-25 17:44:16 in browser session V0xN5aUmAS9A 1714085056902 Sync.SyncScheduler DEBUG Clearing sync triggers and the global score. 1714085056904 Sync.Status INFO Resetting Status. 1714085056904 Sync.Status DEBUG Status.service: success.status_ok => success.status_ok 1714085056904 FirefoxAccounts DEBUG FxAccountsProfileClient: Requested profile 1714085056904 FirefoxAccounts DEBUG getOAuthToken enter 1714085056905 FirefoxAccounts TRACE getCachedToken returning cached token 1714085056905 FirefoxAccounts DEBUG getOAuthToken returning a cached token 1714085056905 Services.Common.RESTRequest DEBUG GET request to https://profile.accounts.firefox.com/v1/profile 1714085056905 Sync.SyncAuthManager INFO Getting sync key 1714085056905 FirefoxAccounts DEBUG getOAuthToken enter 1714085056905 FirefoxAccounts TRACE getCachedToken returning cached token 1714085056905 FirefoxAccounts DEBUG getOAuthToken returning a cached token 1714085056905 Sync.SyncAuthManager INFO Getting a sync token from: https://token.services.mozilla.com/1.0/sync/1.5 1714085056905 Sync.SyncAuthManager DEBUG Getting a token using OAuth 1714085056905 Services.Common.TokenServerClient DEBUG Beginning OAuth token exchange: https://token.services.mozilla.com/1.0/sync/1.5 1714085056906 Services.Common.RESTRequest DEBUG GET request to https://token.services.mozilla.com/1.0/sync/1.5 1714085057025 Services.Common.RESTRequest DEBUG GET https://profile.accounts.firefox.com/v1/profile failed: 2152398878 - NS_ERROR_UNKNOWN_HOST 1714085057025 FirefoxAccounts ERROR Background refresh of profile failed: {"name":"FxAccountsProfileClientError","code":null,"errno":998,"error":"NETWORK_ERROR","message":"[Exception... \"NS_ERROR_UNKNOWN_HOST\" nsresult: \"0x804b001e (NS_ERROR_UNKNOWN_HOST)\" location: \"JS frame :: resource://services-common/rest.sys.mjs :: onStopRequest :: line 478\" data: no]"} 1714085057031 Services.Common.RESTRequest DEBUG GET https://token.services.mozilla.com/1.0/sync/1.5 failed: 2152398878 - NS_ERROR_UNKNOWN_HOST 1714085057031 Sync.SyncAuthManager ERROR Non-authentication error in _fetchTokenForUser: TokenServerClientNetworkError({"error":{}})(resource://services-common/tokenserverclient.sys.mjs:28:36) JS Stack trace: TokenServerClientNetworkError@tokenserverclient.sys.mjs:51:16 _tokenServerExchangeRequest@tokenserverclient.sys.mjs:235:13 1714085057031 Sync.Status DEBUG Status.login: success.login => error.login.reason.network 1714085057031 Sync.Status DEBUG Status.service: success.status_ok => error.login.failed 1714085057031 Sync.SyncAuthManager ERROR Failed to fetch a token for authentication: TokenServerClientNetworkError({"error":{}})(resource://services-common/tokenserverclient.sys.mjs:28:36) JS Stack trace: TokenServerClientNetworkError@tokenserverclient.sys.mjs:51:16 _tokenServerExchangeRequest@tokenserverclient.sys.mjs:235:13 1714085057032 FirefoxAccounts TRACE not checking freshness of profile as it remains recent 1714085057055 Sync.Resource WARN GET request to https://sync-1-us-west1-g.sync.services.mozilla.com/1.5/209631697/info/collections failed: [Exception... "The lookup of the hostname failed" nsresult: "0x804b001e (NS_ERROR_UNKNOWN_HOST)" location: "<unknown>" data: no] No traceback available 1714085057056 Sync.Status DEBUG Status.sync: success.sync => error.login.reason.network 1714085057056 Sync.Status DEBUG Status.service: error.login.failed => error.sync.failed 1714085057056 Sync.ErrorHandler ERROR Sync encountered an error: [Exception... "The lookup of the hostname failed" nsresult: "0x804b001e (NS_ERROR_UNKNOWN_HOST)" location: "<unknown>" data: no] No traceback available 1714085057056 Sync.SyncScheduler DEBUG Next sync in 3600000 ms. (why=reschedule) 1714085057057 Sync.Telemetry INFO Early submission of sync telemetry due to changed IDs/NodeType 1714085057059 Sync.Service DEBUG Exception calling anonymous function: [Exception... "The lookup of the hostname failed" nsresult: "0x804b001e (NS_ERROR_UNKNOWN_HOST)" location: "<unknown>" data: no] No traceback available

Được hỏi bởi Zor 23 giờ trước

Lần cuối trả lời bởi Zor 21 giờ trước

SIGN_IN ID

My sign-in ID is aaaan email that has been cancelled. As long as they don't asl me to retrieve any codes oranything it works of course. If anything is sent to that email … (xem thêm)

My sign-in ID is aaaan email that has been cancelled. As long as they don't asl me to retrieve any codes oranything it works of course. If anything is sent to that email I can not retrieve it. Usually kepping me out of Fire fox. I need to see if amyonr know how to change your sign-in ID>

Thanks Paul

Được hỏi bởi Paul Ellis 21 giờ trước

firefox webpage ie very slow changing to other wepages & gettin worse & slide bar dont go to the top when changing pages

when i amon a webpage& click to go to home screen takes about 10 minutes & i have hi speed inernet & th slide bar on side dont go to top when changing pages g… (xem thêm)

when i amon a webpage& click to go to home screen takes about 10 minutes & i have hi speed inernet & th slide bar on side dont go to top when changing pages getting worse please fix it

Được hỏi bởi raledj 22 giờ trước

Selecting long-saved bookmarks in Firefox.com or DudkDuckGo.com causes the pages to hang up and not display

Why are my bookmarks all of a sudden not working anymore. Selecting the saved bookmark from DudkDuckGo or Firefox does not load the page. Did i change a setting acciden… (xem thêm)

Why are my bookmarks all of a sudden not working anymore.

Selecting the saved bookmark from DudkDuckGo or Firefox does not load the page.

Did i change a setting accidentally/

Did Mozilla change the functionality?

What's going on?

Thanks for your help.

Note: I can access the page by going directly to its URL ... but what's the point of bookmarks if that is necessary?

Thx. again.

Rob Kuhn

Được hỏi bởi robkuhnjr 22 giờ trước

Hacked?

Hello, I recently find products added to check out from various sites to purchase. I use all my pcs and other devices. They are all password protected. No one uses my dev… (xem thêm)

Hello, I recently find products added to check out from various sites to purchase. I use all my pcs and other devices. They are all password protected. No one uses my devices. I think some one got my account. I changed the password. Can you help me about this topic Kind regards sami

Được hỏi bởi smu.uludgn 23 giờ trước

Unable to access `community.signalusers.org`

Error raised, Secure Connection Failed An error occurred during a connection to community.signalusers.org. The OCSP response does not include a status for the certifica… (xem thêm)

Error raised,

Secure Connection Failed

An error occurred during a connection to community.signalusers.org. The OCSP response does not include a status for the certificate being verified.

Error code: MOZILLA_PKIX_ERROR_OCSP_RESPONSE_FOR_CERT_MISSING

   The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
   Please contact the website owners to inform them of this problem.

Learn more…

There's also no way to add an exception? Just completely broken at the moment. I have to disable OCSP stapling to get it to work at all, which is less then ideal.

Currently using 125.0.3 (64-bit). I checked for newer versions of firefox and it's not saying anything. Chrome and Edge work fine. Encountered this on an android tablet with firefox, and went to desktop and hit the same thing.

Được hỏi bởi tswaters 23 giờ trước