Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

As of Firefox 21,pressing Ctrl+F slides in the find bar into view.What should I change in about:config to revert it back and make it popup instantaneously?

  • 1 reply
  • 2 have this problem
  • 5 views
  • Last reply by cor-el

more options

The question pretty much sums up what I want to ask. Thank you very much for any and all help.

I know this is not the place to rant but I think this needs to be said - Why do you(firefox devs) guys keep on changing things that were perfectly fine in the first place? For example, making the find bar slide in and out of view may "look cool" but it consumes more system resources(albeit very very little) than making it appear instantaneously(the way it was previously).

The question pretty much sums up what I want to ask. Thank you very much for any and all help. I know this is not the place to rant but I think this needs to be said - Why do you(firefox devs) guys keep on changing things that were perfectly fine in the first place? For example, making the find bar slide in and out of view may "look cool" but it consumes more system resources(albeit very very little) than making it appear instantaneously(the way it was previously).

All Replies (1)

more options

This is done via CSS transitions: chrome://global/skin/findBar.css

Add code to the userChrome.css file below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

findbar { transition-property: none !important; }