8

如何在 select2 下拉列表中实现 input-lg 类?我不希望我的下拉列表与具有 input-lg 类的输入元素具有相同的大小,这就是我到目前为止所拥有的

<div class="col-sm-4">
     <label for="mobile" class="control-label"><span class="text-danger">*</span> Nationality</label>
     <input type="text" id="nationality" name="nationality" class="form-control input-lg" />
</div>

<div class="col-sm-4 padding-minimum">
     <label for="mobile" class="control-label"><span class="text-danger">*</span> Gender</label>
     <select name="gender" id="gender" class="form-control select2-container input-lg step2-select" data-placeholder="Select Gender">
         <option></option>
         <option value="1">Male</option>
         <option value="0">Female</option>
     </select>
</div>

这是我的脚本

<script>
  $(document).ready(function(){
    $('select').select2();
  });
</script>

但似乎一旦初始化,下拉列表的大小与具有 input-lg 类的输入字段的大小不同,尽管我在我的选择元素上放置了一个 input-lg 类。关于如何实现这一点的任何想法?我只希望 select2 与输入字段具有相同的高度

我正在使用 select2 4.0.0 版,我认为 css 是 3.5.2 版

4

5 回答 5

7

我发现这个专用的 CSS (select2-bootstrap-theme) 工作得很好。

bower install select2-bootstrap-theme
<link rel="stylesheet" href="select2.css">
<link rel="stylesheet" href="select2-bootstrap.css">
$( "#dropdown" ).select2({
    theme: "bootstrap"
});

select2.full.js告知需要能够管理尺寸,但我似乎在没有“完整”版本的情况下让它工作

于 2016-08-24T12:52:18.410 回答
6

要使select输入的高度相等,请在 CSS 中进行以下更改并从中删除input-lg选择器,<select>这是不必要的,也没有使用它

$(document).ready(function () {
	$('select').select2();
});
.select2-container--default .select2-selection--single {
    height: 46px !important;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 85% !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 26px !important;
}
.select2-container--default .select2-selection--single {
    border: 1px solid #CCC !important;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/js/select2.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/css/select2.css" />
<div class="col-sm-4">
    <label for="mobile" class="control-label"><span class="text-danger">*</span> Nationality</label>
    <input type="text" id="nationality" name="nationality" class="form-control input-lg" />
</div>
<div class="col-sm-4 padding-minimum">
    <label for="mobile" class="control-label"><span class="text-danger">*</span> Gender</label>
    <select name="gender" id="gender" class="form-control select2-container step2-select" data-placeholder="Select Gender">
        <option></option>
        <option value="1">Male</option>
        <option value="0">Female</option>
    </select>
</div>

小提琴

于 2015-10-28T07:32:02.693 回答
0

在您的 css 中,在您对 .select2-container 进行分类之前放置 input-lg+ 示例:`

.input-lg+.select2-container--default .select2-selection--single {
    height: 46px !important;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
}
.input-lg+.select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 85% !important;
}
.input-lg+.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 26px !important;
}
.input-lg+.select2-container--default .select2-selection--single {
    border: 1px solid #CCC !important;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

` 使用@Shehary 示例

于 2018-04-07T21:41:45.317 回答
0

您只需通过下载 select2 附加 CSS 将 select2 设置为使用引导主题

https://github.com/select2/select2-bootstrap-theme

<link href="js/select2-bootstrap-theme/dist/select2-bootstrap.min.css" rel="stylesheet">

然后在JS部分

$('.select2').select2({
    theme: "bootstrap"
});

(没有引导主题)

在此处输入图像描述

(带有引导主题) 在此处输入图像描述

于 2018-06-10T07:11:26.173 回答
0

虽然 select2-bootstrap-theme 适用于 Bootstrap v3,但您可以将其用于Bootstrap v4

安装

$ npm install @ttskch/select2-bootstrap4-theme

用法

<link rel="stylesheet" href="/path/to/select2.css">
<link rel="stylesheet" href="/path/to/select2-bootstrap4.css">

$('select').select2({
   theme: 'bootstrap4',
});

这是它的演示

于 2019-11-01T21:07:54.973 回答