如何禁用引导按钮组上的活动切换

时间:2015-10-18 18:46:52

标签: twitter-bootstrap-3 buttongroup

我喜欢自举按钮组样式,我不喜欢主动切换。除非我点击按钮,否则我无法禁用活动状态。

如何禁用按钮切换?

can't find active class

<div class="btn-group" aria-label="..." style="margin-bottom: 20px;">
    <button type="button" class="btn btn-primary" onclick="import_all_db(this)">import_all_db</button>
    <button type="button" class="btn btn-primary" onclick="import_all_qcloud(this)">import_all_qcloud</button>
    <button type="button" class="btn btn-primary" onclick="import_all(this)">import_all</button>
</div>

1 个答案:

答案 0 :(得分:0)

您要查找的CSS声明为.focus:focus

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}
如果你想改变它,那么

否决它 - 如例子中所示 - &gt; http://jsfiddle.net/w7rzqLz3/ - 您可以将其设置为与其他状态具有相同的background-colorborder-color