搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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

  • 3 个回答
  • 21 人有此问题
  • 2 次查看
  • 最后回复者为 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.

所有回复 (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.

由UFQuack于修改

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; }