是否可以配置指针从箭头变为手形的时间?我说的是界面,而不是网页。例如,当悬停在 Firebug 的图标上时,指针会变成手形,但在 greymonkey、stylish 和 gmail manager 上,它保持箭头形状。
我希望它在所有活动的地方变成手: - 插件迷你图标 - 标签 - 个人书签工具栏中的书签按钮
这可能吗?
答案1
将以下内容放入您的 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;
}
您可以在以下位置找到您的 userChrome.css 文件,YourProfileDir/chrome/userChrome.css
其中 YourProfileDir 表示:
%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
如果该文件不存在,则创建它。