我正在使用selected.js v1.0并在我的Bootstrap 3项目中使用它,但我的选择框的样式根本不符合bootstrap 3样式。
我做错了吗?我只是使用
来调用选择框
$('#select-input').chosen();
对吧?
答案 0 :(得分:50)
实际上,有人为Chosen创建了Bootstrap 3.0 CSS主题。
有些屏幕:
修改强>
我使用与正式选择的文档页面相同的HTML创建了a Fiddle,其中应用了Bootstrap主题。 (已将form-control
添加到所有选择并删除了style="width:350px;"
)
而且,我将在这个要点中保持主题:https://gist.github.com/koenpunt/6424137
答案 1 :(得分:13)
答案 2 :(得分:6)
答案 3 :(得分:0)
Chosen.js(chosen.css)和bootstrap css都为你的输入添加CSS样式(选择)。尝试在bootstrap.css之后加载chosen.css:
<link rel="stylesheet" href="bootstrap3/bootstrap-3.0.0-wip/dist/css/bootstrap.css">
<link rel="stylesheet" href="docsupport/style.css">
<link rel="stylesheet" href="docsupport/prism.css">
<link rel="stylesheet" href="chosen.css">
<style type="text/css" media="all">
/* fix rtl for demo */
.chosen-rtl .chosen-drop { left: -9000px; }
</style>
执行此操作后,请参阅:Right border of the AddThis counter missing with Twitter's Bootstrap 3。似乎CSS的通用选择器将盒子大小设置为边框也造成了大部分麻烦。
要解决此问题,请重置所选元素的大小调整大小():
如果是$('#select-input').chosen();
,您还可以设置:
#select-input
{
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
NB默认情况下,selected.js捆绑了旧版本的jQuery。 Twitter Bootstrap(javascript)需要最新版本(&lt; 2)的jQuery
答案 4 :(得分:0)
如果您想要更改选择框大小以便响应,您可以使用:
[class*="col-"] .chosen-container {
width:98%!important;
}
[class*="col-"] .chosen-container .chosen-search input[type="text"] {
padding:2px 4%!important;
width:90%!important;
margin:5px 2%;
}
[class*="col-"] .chosen-container .chosen-drop {
width: 100%!important;
}