bootstrap4-select-rails 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/CHANGELOG.md +9 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE +46 -0
  6. data/README.md +40 -0
  7. data/Rakefile +32 -0
  8. data/bootstrap4-select-rails.gemspec +23 -0
  9. data/lib/bootstrap4-select-rails.rb +14 -0
  10. data/lib/bootstrap4-select-rails/engine.rb +8 -0
  11. data/lib/bootstrap4-select-rails/railtie.rb +7 -0
  12. data/lib/bootstrap4-select-rails/version.rb +7 -0
  13. data/vendor/assets/javascripts/.jshintrc +15 -0
  14. data/vendor/assets/javascripts/bootstrap-select.js +1860 -0
  15. data/vendor/assets/javascripts/bootstrap-select.min.js +7 -0
  16. data/vendor/assets/javascripts/i18n/defaults-ar_AR.js +49 -0
  17. data/vendor/assets/javascripts/i18n/defaults-ar_AR.min.js +12 -0
  18. data/vendor/assets/javascripts/i18n/defaults-bg_BG.js +44 -0
  19. data/vendor/assets/javascripts/i18n/defaults-bg_BG.min.js +7 -0
  20. data/vendor/assets/javascripts/i18n/defaults-cro_CRO.js +44 -0
  21. data/vendor/assets/javascripts/i18n/defaults-cro_CRO.min.js +7 -0
  22. data/vendor/assets/javascripts/i18n/defaults-cs_CZ.js +35 -0
  23. data/vendor/assets/javascripts/i18n/defaults-cs_CZ.min.js +7 -0
  24. data/vendor/assets/javascripts/i18n/defaults-da_DK.js +44 -0
  25. data/vendor/assets/javascripts/i18n/defaults-da_DK.min.js +7 -0
  26. data/vendor/assets/javascripts/i18n/defaults-de_DE.js +44 -0
  27. data/vendor/assets/javascripts/i18n/defaults-de_DE.min.js +7 -0
  28. data/vendor/assets/javascripts/i18n/defaults-en_US.js +44 -0
  29. data/vendor/assets/javascripts/i18n/defaults-en_US.min.js +7 -0
  30. data/vendor/assets/javascripts/i18n/defaults-es_CL.js +37 -0
  31. data/vendor/assets/javascripts/i18n/defaults-es_CL.min.js +7 -0
  32. data/vendor/assets/javascripts/i18n/defaults-es_ES.js +37 -0
  33. data/vendor/assets/javascripts/i18n/defaults-es_ES.min.js +7 -0
  34. data/vendor/assets/javascripts/i18n/defaults-et_EE.js +23 -0
  35. data/vendor/assets/javascripts/i18n/defaults-eu.js +35 -0
  36. data/vendor/assets/javascripts/i18n/defaults-eu.min.js +7 -0
  37. data/vendor/assets/javascripts/i18n/defaults-fa_IR.js +37 -0
  38. data/vendor/assets/javascripts/i18n/defaults-fa_IR.min.js +7 -0
  39. data/vendor/assets/javascripts/i18n/defaults-fi_FI.js +44 -0
  40. data/vendor/assets/javascripts/i18n/defaults-fi_FI.min.js +7 -0
  41. data/vendor/assets/javascripts/i18n/defaults-fr_FR.js +44 -0
  42. data/vendor/assets/javascripts/i18n/defaults-fr_FR.min.js +7 -0
  43. data/vendor/assets/javascripts/i18n/defaults-hu_HU.js +44 -0
  44. data/vendor/assets/javascripts/i18n/defaults-hu_HU.min.js +7 -0
  45. data/vendor/assets/javascripts/i18n/defaults-id_ID.js +37 -0
  46. data/vendor/assets/javascripts/i18n/defaults-id_ID.min.js +7 -0
  47. data/vendor/assets/javascripts/i18n/defaults-it_IT.js +39 -0
  48. data/vendor/assets/javascripts/i18n/defaults-it_IT.min.js +7 -0
  49. data/vendor/assets/javascripts/i18n/defaults-ko_KR.js +44 -0
  50. data/vendor/assets/javascripts/i18n/defaults-ko_KR.min.js +7 -0
  51. data/vendor/assets/javascripts/i18n/defaults-lt_LT.js +44 -0
  52. data/vendor/assets/javascripts/i18n/defaults-lt_LT.min.js +7 -0
  53. data/vendor/assets/javascripts/i18n/defaults-nb_NO.js +44 -0
  54. data/vendor/assets/javascripts/i18n/defaults-nb_NO.min.js +7 -0
  55. data/vendor/assets/javascripts/i18n/defaults-nl_NL.js +37 -0
  56. data/vendor/assets/javascripts/i18n/defaults-nl_NL.min.js +7 -0
  57. data/vendor/assets/javascripts/i18n/defaults-pl_PL.js +37 -0
  58. data/vendor/assets/javascripts/i18n/defaults-pl_PL.min.js +7 -0
  59. data/vendor/assets/javascripts/i18n/defaults-pt_BR.js +35 -0
  60. data/vendor/assets/javascripts/i18n/defaults-pt_BR.min.js +7 -0
  61. data/vendor/assets/javascripts/i18n/defaults-pt_PT.js +35 -0
  62. data/vendor/assets/javascripts/i18n/defaults-pt_PT.min.js +7 -0
  63. data/vendor/assets/javascripts/i18n/defaults-ro_RO.js +35 -0
  64. data/vendor/assets/javascripts/i18n/defaults-ro_RO.min.js +7 -0
  65. data/vendor/assets/javascripts/i18n/defaults-ru_RU.js +38 -0
  66. data/vendor/assets/javascripts/i18n/defaults-ru_RU.min.js +7 -0
  67. data/vendor/assets/javascripts/i18n/defaults-sk_SK.js +37 -0
  68. data/vendor/assets/javascripts/i18n/defaults-sk_SK.min.js +7 -0
  69. data/vendor/assets/javascripts/i18n/defaults-sl_SI.js +44 -0
  70. data/vendor/assets/javascripts/i18n/defaults-sl_SI.min.js +7 -0
  71. data/vendor/assets/javascripts/i18n/defaults-sv_SE.js +44 -0
  72. data/vendor/assets/javascripts/i18n/defaults-sv_SE.min.js +7 -0
  73. data/vendor/assets/javascripts/i18n/defaults-tr_TR.js +44 -0
  74. data/vendor/assets/javascripts/i18n/defaults-tr_TR.min.js +7 -0
  75. data/vendor/assets/javascripts/i18n/defaults-ua_UA.js +35 -0
  76. data/vendor/assets/javascripts/i18n/defaults-ua_UA.min.js +7 -0
  77. data/vendor/assets/javascripts/i18n/defaults-zh_CN.js +35 -0
  78. data/vendor/assets/javascripts/i18n/defaults-zh_CN.min.js +7 -0
  79. data/vendor/assets/javascripts/i18n/defaults-zh_TW.js +37 -0
  80. data/vendor/assets/javascripts/i18n/defaults-zh_TW.min.js +7 -0
  81. data/vendor/assets/stylesheets/bootstrap-select.css.map +7 -0
  82. data/vendor/assets/stylesheets/bootstrap-select.scss +421 -0
  83. data/vendor/assets/stylesheets/variables.scss +9 -0
  84. data/version.txt +1 -0
  85. metadata +155 -0
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Inget valt",noneResultsText:"Inget sökresultat matchar {0}",countSelectedText:function(a,b){return 1===a?"{0} alternativ valt":"{0} alternativ valda"},maxOptionsText:function(a,b){return["Gräns uppnåd (max {n} alternativ)","Gräns uppnåd (max {n} gruppalternativ)"]},selectAllText:"Markera alla",deselectAllText:"Avmarkera alla",multipleSeparator:", "}}(a)});
@@ -0,0 +1,44 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
8
+ (function (root, factory) {
9
+ if (typeof define === 'function' && define.amd) {
10
+ // AMD. Register as an anonymous module unless amdModuleId is set
11
+ define(["jquery"], function (a0) {
12
+ return (factory(a0));
13
+ });
14
+ } else if (typeof module === 'object' && module.exports) {
15
+ // Node. Does not work with strict CommonJS, but
16
+ // only CommonJS-like environments that support module.exports,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: 'Hiçbiri seçilmedi',
27
+ noneResultsText: 'Hiçbir sonuç bulunamadı {0}',
28
+ countSelectedText: function (numSelected, numTotal) {
29
+ return (numSelected == 1) ? "{0} öğe seçildi" : "{0} öğe seçildi";
30
+ },
31
+ maxOptionsText: function (numAll, numGroup) {
32
+ return [
33
+ (numAll == 1) ? 'Limit aşıldı (maksimum {n} sayıda öğe )' : 'Limit aşıldı (maksimum {n} sayıda öğe)',
34
+ (numGroup == 1) ? 'Grup limiti aşıldı (maksimum {n} sayıda öğe)' : 'Grup limiti aşıldı (maksimum {n} sayıda öğe)'
35
+ ];
36
+ },
37
+ selectAllText: 'Tümünü Seç',
38
+ deselectAllText: 'Seçiniz',
39
+ multipleSeparator: ', '
40
+ };
41
+ })(jQuery);
42
+
43
+
44
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Hiçbiri seçilmedi",noneResultsText:"Hiçbir sonuç bulunamadı {0}",countSelectedText:function(a,b){return"{0} öğe seçildi"},maxOptionsText:function(a,b){return[1==a?"Limit aşıldı (maksimum {n} sayıda öğe )":"Limit aşıldı (maksimum {n} sayıda öğe)","Grup limiti aşıldı (maksimum {n} sayıda öğe)"]},selectAllText:"Tümünü Seç",deselectAllText:"Seçiniz",multipleSeparator:", "}}(a)});
@@ -0,0 +1,35 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
8
+ (function (root, factory) {
9
+ if (typeof define === 'function' && define.amd) {
10
+ // AMD. Register as an anonymous module unless amdModuleId is set
11
+ define(["jquery"], function (a0) {
12
+ return (factory(a0));
13
+ });
14
+ } else if (typeof module === 'object' && module.exports) {
15
+ // Node. Does not work with strict CommonJS, but
16
+ // only CommonJS-like environments that support module.exports,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: 'Нічого не вибрано',
27
+ noneResultsText: 'Збігів не знайдено {0}',
28
+ countSelectedText: 'Вибрано {0} із {1}',
29
+ maxOptionsText: ['Досягнута межа ({n} {var} максимум)', 'Досягнута межа в групі ({n} {var} максимум)', ['items', 'item']],
30
+ multipleSeparator: ', '
31
+ };
32
+ })(jQuery);
33
+
34
+
35
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Нічого не вибрано",noneResultsText:"Збігів не знайдено {0}",countSelectedText:"Вибрано {0} із {1}",maxOptionsText:["Досягнута межа ({n} {var} максимум)","Досягнута межа в групі ({n} {var} максимум)",["items","item"]],multipleSeparator:", "}}(a)});
@@ -0,0 +1,35 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
8
+ (function (root, factory) {
9
+ if (typeof define === 'function' && define.amd) {
10
+ // AMD. Register as an anonymous module unless amdModuleId is set
11
+ define(["jquery"], function (a0) {
12
+ return (factory(a0));
13
+ });
14
+ } else if (typeof module === 'object' && module.exports) {
15
+ // Node. Does not work with strict CommonJS, but
16
+ // only CommonJS-like environments that support module.exports,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: '没有选中任何项',
27
+ noneResultsText: '没有找到匹配项',
28
+ countSelectedText: '选中{1}中的{0}项',
29
+ maxOptionsText: ['超出限制 (最多选择{n}项)', '组选择超出限制(最多选择{n}组)'],
30
+ multipleSeparator: ', '
31
+ };
32
+ })(jQuery);
33
+
34
+
35
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"没有选中任何项",noneResultsText:"没有找到匹配项",countSelectedText:"选中{1}中的{0}项",maxOptionsText:["超出限制 (最多选择{n}项)","组选择超出限制(最多选择{n}组)"],multipleSeparator:", "}}(a)});
@@ -0,0 +1,37 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+
8
+ (function (root, factory) {
9
+ if (typeof define === 'function' && define.amd) {
10
+ // AMD. Register as an anonymous module unless amdModuleId is set
11
+ define(["jquery"], function (a0) {
12
+ return (factory(a0));
13
+ });
14
+ } else if (typeof module === 'object' && module.exports) {
15
+ // Node. Does not work with strict CommonJS, but
16
+ // only CommonJS-like environments that support module.exports,
17
+ // like Node.
18
+ module.exports = factory(require("jquery"));
19
+ } else {
20
+ factory(root["jQuery"]);
21
+ }
22
+ }(this, function (jQuery) {
23
+
24
+ (function ($) {
25
+ $.fn.selectpicker.defaults = {
26
+ noneSelectedText: '沒有選取任何項目',
27
+ noneResultsText: '沒有找到符合的結果',
28
+ countSelectedText: '已經選取{0}個項目',
29
+ maxOptionsText: ['超過限制 (最多選擇{n}項)', '超過限制(最多選擇{n}組)'],
30
+ selectAllText: '選取全部',
31
+ deselectAllText: '全部取消',
32
+ multipleSeparator: ', '
33
+ };
34
+ })(jQuery);
35
+
36
+
37
+ }));
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
3
+ *
4
+ * Copyright 2013-2017 bootstrap-select
5
+ * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
+ */
7
+ !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"沒有選取任何項目",noneResultsText:"沒有找到符合的結果",countSelectedText:"已經選取{0}個項目",maxOptionsText:["超過限制 (最多選擇{n}項)","超過限制(最多選擇{n}組)"],selectAllText:"選取全部",deselectAllText:"全部取消",multipleSeparator:", "}}(a)});
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "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",
4
+ "sources": ["../../../../www/assets/bootstrap-select/sass/bootstrap-select.scss","../../../../www/assets/bootstrap-select/sass/variables.scss"],
5
+ "names": [],
6
+ "file": "bootstrap-select.css"
7
+ }
@@ -0,0 +1,421 @@
1
+ @import "variables";
2
+
3
+ // Mixins
4
+ @mixin cursor-disabled() {
5
+ cursor: not-allowed;
6
+ }
7
+
8
+ @mixin box-sizing($fmt) {
9
+ -webkit-box-sizing: $fmt;
10
+ -moz-box-sizing: $fmt;
11
+ box-sizing: $fmt;
12
+ }
13
+
14
+ @mixin box-shadow($fmt) {
15
+ -webkit-box-shadow: $fmt;
16
+ box-shadow: $fmt;
17
+ }
18
+
19
+ @function fade($color, $amnt) {
20
+ @if $amnt > 1 {
21
+ $amnt: $amnt / 100; // convert to percentage if int
22
+ }
23
+ @return rgba($color, $amnt);
24
+ }
25
+
26
+ // Rules
27
+ select.bs-select-hidden,
28
+ select.selectpicker {
29
+ display: none !important;
30
+ }
31
+
32
+ .bootstrap-select {
33
+ width: 220px \0
34
+ ; /*IE9 and below*/
35
+
36
+ &.btn-group {
37
+ > .dropdown-toggle {
38
+ height: 100%;
39
+ }
40
+ }
41
+
42
+ // The selectpicker button
43
+ > .dropdown-toggle {
44
+ width: 100%;
45
+ padding-right: 25px;
46
+ z-index: 1;
47
+
48
+ &.bs-placeholder,
49
+ &.bs-placeholder:hover,
50
+ &.bs-placeholder:focus,
51
+ &.bs-placeholder:active {
52
+ color: $input-color-placeholder;
53
+ }
54
+ }
55
+
56
+ > select {
57
+ position: absolute !important;
58
+ bottom: 0;
59
+ left: 50%;
60
+ display: block !important;
61
+ width: 0.5px !important;
62
+ height: 100% !important;
63
+ padding: 0 !important;
64
+ opacity: 0 !important;
65
+ border: none;
66
+
67
+ &.mobile-device {
68
+ top: 0;
69
+ left: 0;
70
+ display: block !important;
71
+ width: 100% !important;
72
+ z-index: 2;
73
+ }
74
+ }
75
+
76
+ // Error display
77
+ .has-error & .dropdown-toggle,
78
+ .error & .dropdown-toggle {
79
+ border-color: $color-red-error;
80
+ }
81
+
82
+ &.fit-width {
83
+ width: auto !important;
84
+ }
85
+
86
+ &:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
87
+ width: $width-default;
88
+ }
89
+
90
+ .dropdown-toggle:focus {
91
+ outline: thin dotted #333333 !important;
92
+ outline: 5px auto -webkit-focus-ring-color !important;
93
+ outline-offset: -2px;
94
+ }
95
+ }
96
+
97
+ .bootstrap-select.form-control {
98
+ margin-bottom: 0;
99
+ padding: 0;
100
+ border: none;
101
+
102
+ &:not([class*="col-"]) {
103
+ width: 100%;
104
+ }
105
+
106
+ &.input-group-btn {
107
+ z-index: auto;
108
+
109
+ &:not(:first-child):not(:last-child) {
110
+ > .btn {
111
+ border-radius: 0;
112
+ }
113
+ }
114
+ }
115
+ }
116
+
117
+ // The selectpicker components
118
+ .bootstrap-select.btn-group {
119
+ &:not(.input-group-btn),
120
+ &[class*="col-"] {
121
+ float: none;
122
+ display: inline-block;
123
+ margin-left: 0;
124
+ }
125
+
126
+ // Forces the pull to the right, if necessary
127
+ &,
128
+ &[class*="col-"],
129
+ .row &[class*="col-"] {
130
+ &.dropdown-menu-right {
131
+ float: right;
132
+ }
133
+ }
134
+
135
+ .form-inline &,
136
+ .form-horizontal &,
137
+ .form-group & {
138
+ margin-bottom: 0;
139
+ }
140
+
141
+ .form-group-lg &.form-control,
142
+ .form-group-sm &.form-control {
143
+ padding: 0;
144
+
145
+ .dropdown-toggle {
146
+ height: 100%;
147
+ font-size: inherit;
148
+ line-height: inherit;
149
+ border-radius: inherit;
150
+ }
151
+ }
152
+
153
+ // Set the width of the live search (and any other form control within an inline form)
154
+ // see https://github.com/silviomoreto/bootstrap-select/issues/685
155
+ .form-inline & .form-control {
156
+ width: 100%;
157
+ }
158
+
159
+ &.disabled,
160
+ > .disabled {
161
+ @include cursor-disabled();
162
+
163
+ &:focus {
164
+ outline: none !important;
165
+ }
166
+ }
167
+
168
+ &.bs-container {
169
+ position: absolute;
170
+ height: 0 !important;
171
+ padding: 0 !important;
172
+
173
+ .dropdown-menu {
174
+ z-index: $zindex-select-dropdown;
175
+ }
176
+ }
177
+
178
+ // The selectpicker button
179
+ .dropdown-toggle {
180
+ .filter-option {
181
+ display: inline-block;
182
+ overflow: hidden;
183
+ width: 100%;
184
+ text-align: left;
185
+ }
186
+
187
+ .caret {
188
+ position: absolute;
189
+ top: 50%;
190
+ right: 12px;
191
+ margin-top: -2px;
192
+ vertical-align: middle;
193
+ }
194
+ }
195
+
196
+ &[class*="col-"] .dropdown-toggle {
197
+ width: 100%;
198
+ }
199
+
200
+ // The selectpicker dropdown
201
+ .dropdown-menu {
202
+ min-width: 100%;
203
+ @include box-sizing(border-box);
204
+
205
+ &.inner {
206
+ display: block; // hotfix for Bootstrap v4.0.0-alpha6
207
+ position: static;
208
+ float: none;
209
+ border: 0;
210
+ padding: 0;
211
+ margin: 0;
212
+ border-radius: 0;
213
+ box-shadow: none;
214
+ }
215
+
216
+ a.dropdown-item {
217
+ position: relative;
218
+ cursor: pointer;
219
+ user-select: none;
220
+
221
+ &.active small {
222
+ color: #fff;
223
+ }
224
+
225
+ &.disabled a {
226
+ @include cursor-disabled();
227
+ }
228
+
229
+ &.hidden {
230
+ display: none;
231
+ }
232
+
233
+ span.dropdown-item-inner {
234
+ display: block;
235
+
236
+ &.opt {
237
+ position: relative;
238
+ padding-left: 2.25em;
239
+ }
240
+
241
+ span.check-mark {
242
+ display: none;
243
+ }
244
+
245
+ span.text {
246
+ display: inline-block;
247
+ }
248
+ }
249
+
250
+ small {
251
+ padding-left: 0.5em;
252
+ }
253
+ }
254
+
255
+ // bootstrap 4 adjustments
256
+ .dropdown-item {
257
+ .span.check-mark {
258
+ display: none;
259
+ }
260
+
261
+ .span.text {
262
+ display: inline-block;
263
+ }
264
+ }
265
+
266
+ .notify {
267
+ position: absolute;
268
+ bottom: 5px;
269
+ width: 96%;
270
+ margin: 0 2%;
271
+ min-height: 26px;
272
+ padding: 3px 5px;
273
+ background: rgb(245, 245, 245);
274
+ border: 1px solid rgb(227, 227, 227);
275
+ @include box-shadow(inset 0 1px 1px fade(rgb(0, 0, 0), 5));
276
+ pointer-events: none;
277
+ opacity: 0.9;
278
+ @include box-sizing(border-box);
279
+ }
280
+ }
281
+
282
+ .no-results {
283
+ padding: 3px;
284
+ background: #f5f5f5;
285
+ margin: 0 5px;
286
+ white-space: nowrap;
287
+ }
288
+
289
+ &.fit-width .dropdown-toggle {
290
+ .filter-option {
291
+ position: static;
292
+ }
293
+
294
+ .caret {
295
+ position: static;
296
+ top: auto;
297
+ margin-top: -1px;
298
+ }
299
+ }
300
+
301
+ &.show-tick .dropdown-menu a {
302
+ &.selected span.dropdown-item-inner span.check-mark {
303
+ position: absolute;
304
+ display: inline-block;
305
+ right: 15px;
306
+ margin-top: 5px;
307
+ }
308
+
309
+ a span.text {
310
+ margin-right: 34px;
311
+ }
312
+ }
313
+ }
314
+
315
+ .bootstrap-select.show-menu-arrow {
316
+ &.open > .dropdown-toggle {
317
+ z-index: ($zindex-select-dropdown + 1);
318
+ }
319
+
320
+ .dropdown-toggle {
321
+ &:before {
322
+ content: '';
323
+ border-left: 7px solid transparent;
324
+ border-right: 7px solid transparent;
325
+ border-bottom: 7px solid $color-grey-arrow;
326
+ position: absolute;
327
+ bottom: -4px;
328
+ left: 9px;
329
+ display: none;
330
+ }
331
+
332
+ &:after {
333
+ content: '';
334
+ border-left: 6px solid transparent;
335
+ border-right: 6px solid transparent;
336
+ border-bottom: 6px solid white;
337
+ position: absolute;
338
+ bottom: -4px;
339
+ left: 10px;
340
+ display: none;
341
+ }
342
+ }
343
+
344
+ &.dropup .dropdown-toggle {
345
+ &:before {
346
+ bottom: auto;
347
+ top: -3px;
348
+ border-top: 7px solid $color-grey-arrow;
349
+ border-bottom: 0;
350
+ }
351
+
352
+ &:after {
353
+ bottom: auto;
354
+ top: -3px;
355
+ border-top: 6px solid white;
356
+ border-bottom: 0;
357
+ }
358
+ }
359
+
360
+ &.pull-right .dropdown-toggle {
361
+ &:before {
362
+ right: 12px;
363
+ left: auto;
364
+ }
365
+
366
+ &:after {
367
+ right: 13px;
368
+ left: auto;
369
+ }
370
+ }
371
+
372
+ &.open > .dropdown-toggle {
373
+ &:before,
374
+ &:after {
375
+ display: block;
376
+ }
377
+ }
378
+ }
379
+
380
+ .bs-searchbox,
381
+ .bs-actionsbox,
382
+ .bs-donebutton {
383
+ padding: 4px 8px;
384
+ }
385
+
386
+ .bs-actionsbox {
387
+ width: 100%;
388
+ @include box-sizing(border-box);
389
+
390
+ & .btn-group button {
391
+ width: 50%;
392
+ }
393
+ }
394
+
395
+ .bs-donebutton {
396
+ float: left;
397
+ width: 100%;
398
+ @include box-sizing(border-box);
399
+
400
+ & .btn-group button {
401
+ width: 100%;
402
+ }
403
+ }
404
+
405
+ .bs-searchbox {
406
+ & + .bs-actionsbox {
407
+ padding: 0 8px 4px;
408
+ }
409
+
410
+ & .form-control {
411
+ margin-bottom: 0;
412
+ width: 100%;
413
+ float: none;
414
+ }
415
+
416
+ .input-group & {
417
+ .form-control {
418
+ width: 100%;
419
+ }
420
+ }
421
+ }