引导选择上的蓝色轮廓

时间:2014-08-17 17:20:04

标签: css twitter-bootstrap bootstrap-select

我已经安装了bootstrap-select并且一切正常,但蓝色边框出现在2个实例中:

1)在下拉菜单中

enter image description here

2)选择新值时

enter image description here

有人可以帮忙解决一下吗?我已经调整了一些东西。

.bootstrap-select .btn {
  height: 43px;
  color: rgba(0, 0, 0, 0.5);
  background-color: white;
  border-radius: 3px;
}
.bootstrap-select .btn:focus {
  outline: none !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}

6 个答案:

答案 0 :(得分:2)

在所有其他css样式之后应用这两个css规则

.bootstrap-select .dropdown-toggle:focus {
    outline: none!important;
}
:focus {
  outline: none!important;
}

答案 1 :(得分:1)

outline: 0;

如果您定位正确的项目,应该修复它。

答案 2 :(得分:1)

添加css

mywebsite.ru/en/

答案 3 :(得分:0)

尝试将此添加到您的css:

:focus {
  outline: none;
}

答案 4 :(得分:0)

删除元素周围的蓝色轮廓及其内部的项目:

<style>
    .bootstrap-select .btn:focus {
        outline: none !important;
    }

    .selectpicker a {
        outline: 0;
    }
</style>

在Chrome,Firefox和Opera上测试过。

答案 5 :(得分:0)

将其添加到HTML的最底部是最终在Chrome上对我有效的方法:

rand()

我认为关键是设置CSS之后我正在加载Bootstrap和其他库。