Firefox 中的指针形状

Mat*_*iva 3 firefox

当指针从箭头变为手时,是否可以进行配置?我说的是界面,而不是网页。例如,当鼠标悬停在 Firebug 的图标上时,指针会变成一只手,但在油脂猴、时尚和 gmail 管理器上,它保持箭头形状。

我希望它在所有活动的地方变成手: - 插件迷你图标 - 标签 - 个人书签工具栏中的书签按钮

这可能吗?

Ste*_*nov 5

将以下内容放入您的 userChrome.css 文件中:

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

toolbarbutton,
.tabbrowser-tabs *,
statusbarpanel image,
.statusbarpanel-menu-iconic {
    cursor: pointer !important;
}
Run Code Online (Sandbox Code Playgroud)

您可以YourProfileDir/chrome/userChrome.css在 YourProfileDir 表示的位置找到您的 userChrome.css 文件:

  • %APPDATA%/Mozilla/Firefox/Profiles/[profile name]/ 适用于 Windows
  • ~/Library/Application Support/Firefox/Profiles/[random string].default/ 对于 Mac OS X
  • ~/.mozilla/[Linux Login Name]/[random string].slt/ 适用于 Linux

如果文件不存在,请创建它。