请查看我的实时站点http://mozzor.com并将鼠标悬停在顶部的圆圈图标上。请注意仅在 Firefox 中出现的两种效果(我使用的是 FF23):
1) 工具提示文本中添加了蓝色下划线
2)文本在悬停时呈现,然后过了一会儿,似乎模糊了自己。
我在使用 Firebug 进行调试时遇到了麻烦……我找不到与这些效果中的任何一个相对应的 css 元素。
以防万一,这里有一些关于我如何设置工具提示样式的相关代码:
// Variable currentSelect corresponds to hex color value
// selected in the jQuery widget seen at the top left side of the page
$('#notebookIcon,#pencilIcon,#headphoneIcon').tooltip().on("mouseover", function () {
var tooltip = $(this).next(".tooltip");
//Box
tooltip.find(".tooltip-inner").css({
backgroundColor: "#fff",
color: currentSelect,
borderColor: currentSelect,
borderWidth: "1px",
borderStyle: "solid"
});
//Arrow
tooltip.find(".tooltip-arrow").css({
//borderTopColor: currentSelect,
//borderLeftColor: currentSelect,
//borderRightColor: currentSelect,
borderBottomColor: currentSelect
});
});
编辑:第二个问题似乎在 Firefox 中缓慢处理字体别名。尝试几种不同的字体后问题仍然存在。有关更多信息,请参见下文:
Github 问题:https ://github.com/twbs/bootstrap/issues/10218
Bugzilla 问题:https ://bugzilla.mozilla.org/show_bug.cgi?id=909814