Joomla 3.2.2中的Bootstrap 3工具提示消失了

时间:2014-03-05 14:02:32

标签: twitter-bootstrap-3 tooltip joomla3.0

我使用的是Joomla 3.2.2和我的Template Bootstrap 3.1.1。如果我用鼠标悬停在工具提示上,那么就消失了。例如,这在注册表格中发生。使用Joomla 3.2.1,这已经奏效了。有谁知道这个问题?我该如何解决这个问题?

5 个答案:

答案 0 :(得分:2)

好的,使用以下css代码我可以暂时解决问题。将此代码写在您自己的模板中。

label
{
    display : inline !important;
}

问题在于将鼠标悬停在以下代码中的标签上...

display : none;

这是Bootstrap 3的Bug吗?

答案 1 :(得分:0)

Joomla今天发布了3.2.3版,或者看起来工具提示错误已经在错误修复列表中。

答案 2 :(得分:0)

这是Bootstrap 3而不是Joomla 3.2.x的问题

为了证明这一点,我删除了从我的网站加载Bootstrap的脚本代码,工具提示仍然存在(连同标签)。

答案 3 :(得分:0)

有点晚了,但实际上,问题在于Mootools。如果您意识到,只有在工具提示元素消失的页面上加载了Joomla的Mootools时才会发生这种情况。修复很简单:

    jQuery(document).ready(function($) {
        $('.hasTooltip').each(function(){this.show = null; this.hide = null;});
    });

答案 4 :(得分:-1)

同时添加

.hasTooltip {
    display: inline !important;
}

到您模板的css文件中。