Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Ďalšie informácie

Go to a Website no longer disappears when cursor in blank field

  • 3 odpovede
  • 21 má tento problém
  • 2 zobrazenia
  • Posledná odpoveď od cor-el

more options

Normal windows standards dictate that an empty field show blank when a cursor is put in it. However, starting with FF15, the Go to a Website verbiage does not disappear. Is there a config to make this go away? Confusing, because your never sure quickly if the cursor went into the field.

Normal windows standards dictate that an empty field show blank when a cursor is put in it. However, starting with FF15, the Go to a Website verbiage does not disappear. Is there a config to make this go away? Confusing, because your never sure quickly if the cursor went into the field.

Všetky odpovede (3)

more options

Firefox 15+ will still display the grayed placeholder text if you click an input field.

The placeholder will only disappear after you have typed at least one character.

  • [/questions/935617] Installed Firefox 15 Cursor will go only to beginning of text boxes
more options

"The placeholder will only disappear after you have typed at least one character." What?! Are you kidding me?!! This is not acceptable!

I restored my computer just to go back to Firefox 14.0.1, and then I shut off updates. And it's going to stay like that permanently until this is solved.

Upravil(a) UFQuack dňa

more options

You can see in the above posted thread link that you can revert that change easily with some code in the userChrome.css file.

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 user profile folder.

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.


*:-moz-placeholder:focus { color: transparent !important; }
*[autofocus]:-moz-placeholder:focus { color: graytext !important; }