selectize-rails 0.8.1 → 0.8.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,448 +1,448 @@
1
- /**
2
- * selectize.bootstrap3.css (v0.8.1) - Bootstrap 3 Theme
3
- * Copyright (c) 2013 Brian Reavis & contributors
4
- *
5
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
6
- * file except in compliance with the License. You may obtain a copy of the License at:
7
- * http://www.apache.org/licenses/LICENSE-2.0
8
- *
9
- * Unless required by applicable law or agreed to in writing, software distributed under
10
- * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
- * ANY KIND, either express or implied. See the License for the specific language
12
- * governing permissions and limitations under the License.
13
- *
14
- * @author Brian Reavis <brian@thirdroute.com>
15
- */
16
-
17
- .selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
18
- background: #f2f2f2 !important;
19
- background: rgba(0, 0, 0, 0.06) !important;
20
- border: 0 none !important;
21
- visibility: visible !important;
22
- -webkit-box-shadow: inset 0 0 12px 4px #ffffff;
23
- box-shadow: inset 0 0 12px 4px #ffffff;
24
- }
25
-
26
- .selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
27
- content: '!';
28
- visibility: hidden;
29
- }
30
-
31
- .selectize-control.plugin-drag_drop .ui-sortable-helper {
32
- -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
33
- box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
34
- }
35
-
36
- .selectize-dropdown-header {
37
- position: relative;
38
- padding: 3px 12px;
39
- background: #f8f8f8;
40
- border-bottom: 1px solid #d0d0d0;
41
- -webkit-border-radius: 4px 4px 0 0;
42
- -moz-border-radius: 4px 4px 0 0;
43
- border-radius: 4px 4px 0 0;
44
- }
45
-
46
- .selectize-dropdown-header-close {
47
- position: absolute;
48
- top: 50%;
49
- right: 12px;
50
- margin-top: -12px;
51
- font-size: 20px !important;
52
- line-height: 20px;
53
- color: #333333;
54
- opacity: 0.4;
55
- }
56
-
57
- .selectize-dropdown-header-close:hover {
58
- color: #000000;
59
- }
60
-
61
- .selectize-dropdown.plugin-optgroup_columns .optgroup {
62
- float: left;
63
- border-top: 0 none;
64
- border-right: 1px solid #f2f2f2;
65
- -webkit-box-sizing: border-box;
66
- -moz-box-sizing: border-box;
67
- box-sizing: border-box;
68
- }
69
-
70
- .selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
71
- border-right: 0 none;
72
- }
73
-
74
- .selectize-dropdown.plugin-optgroup_columns .optgroup:before {
75
- display: none;
76
- }
77
-
78
- .selectize-dropdown.plugin-optgroup_columns .optgroup-header {
79
- border-top: 0 none;
80
- }
81
-
82
- .selectize-control.plugin-remove_button [data-value] {
83
- position: relative;
84
- padding-right: 24px !important;
85
- }
86
-
87
- .selectize-control.plugin-remove_button [data-value] .remove {
88
- position: absolute;
89
- top: 0;
90
- right: 0;
91
- bottom: 0;
92
- display: inline-block;
93
- width: 17px;
94
- padding: 1px 0 0 0;
95
- font-size: 12px;
96
- font-weight: bold;
97
- color: inherit;
98
- text-align: center;
99
- text-decoration: none;
100
- vertical-align: middle;
101
- border-left: 1px solid rgba(0, 0, 0, 0);
102
- -webkit-border-radius: 0 2px 2px 0;
103
- -moz-border-radius: 0 2px 2px 0;
104
- border-radius: 0 2px 2px 0;
105
- -webkit-box-sizing: border-box;
106
- -moz-box-sizing: border-box;
107
- box-sizing: border-box;
108
- }
109
-
110
- .selectize-control.plugin-remove_button [data-value] .remove:hover {
111
- background: rgba(0, 0, 0, 0.05);
112
- }
113
-
114
- .selectize-control.plugin-remove_button [data-value].active .remove {
115
- border-left-color: rgba(0, 0, 0, 0);
116
- }
117
-
118
- .selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
119
- background: none;
120
- }
121
-
122
- .selectize-control.plugin-remove_button .disabled [data-value] .remove {
123
- border-left-color: rgba(77, 77, 77, 0);
124
- }
125
-
126
- .selectize-control {
127
- position: relative;
128
- }
129
-
130
- .selectize-dropdown,
131
- .selectize-input,
132
- .selectize-input input {
133
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
134
- font-size: 14px;
135
- -webkit-font-smoothing: inherit;
136
- line-height: 20px;
137
- color: #333333;
138
- }
139
-
140
- .selectize-input,
141
- .selectize-control.single .selectize-input.input-active {
142
- display: inline-block;
143
- cursor: text;
144
- background: #ffffff;
145
- }
146
-
147
- .selectize-input {
148
- position: relative;
149
- z-index: 1;
150
- display: inline-block;
151
- width: 100%;
152
- padding: 6px 12px;
153
- overflow: hidden;
154
- border: 1px solid #cccccc;
155
- -webkit-border-radius: 4px;
156
- -moz-border-radius: 4px;
157
- border-radius: 4px;
158
- -webkit-box-shadow: none;
159
- box-shadow: none;
160
- -webkit-box-sizing: border-box;
161
- -moz-box-sizing: border-box;
162
- box-sizing: border-box;
163
- }
164
-
165
- .selectize-control.multi .selectize-input.has-items {
166
- padding: 5px 12px 2px;
167
- }
168
-
169
- .selectize-input.full {
170
- background-color: #ffffff;
171
- }
172
-
173
- .selectize-input.disabled,
174
- .selectize-input.disabled * {
175
- cursor: default !important;
176
- }
177
-
178
- .selectize-input.focus {
179
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
180
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
181
- }
182
-
183
- .selectize-input.dropdown-active {
184
- -webkit-border-radius: 4px 4px 0 0;
185
- -moz-border-radius: 4px 4px 0 0;
186
- border-radius: 4px 4px 0 0;
187
- }
188
-
189
- .selectize-input > * {
190
- display: -moz-inline-stack;
191
- display: inline-block;
192
- *display: inline;
193
- vertical-align: baseline;
194
- zoom: 1;
195
- }
196
-
197
- .selectize-control.multi .selectize-input > div {
198
- padding: 1px 3px;
199
- margin: 0 3px 3px 0;
200
- color: #333333;
201
- cursor: pointer;
202
- background: #efefef;
203
- border: 0 solid rgba(0, 0, 0, 0);
204
- }
205
-
206
- .selectize-control.multi .selectize-input > div.active {
207
- color: #ffffff;
208
- background: #428bca;
209
- border: 0 solid rgba(0, 0, 0, 0);
210
- }
211
-
212
- .selectize-control.multi .selectize-input.disabled > div,
213
- .selectize-control.multi .selectize-input.disabled > div.active {
214
- color: #808080;
215
- background: #ffffff;
216
- border: 0 solid rgba(77, 77, 77, 0);
217
- }
218
-
219
- .selectize-input > input {
220
- max-width: 100% !important;
221
- max-height: none !important;
222
- min-height: 0 !important;
223
- padding: 0 !important;
224
- margin: 0 !important;
225
- line-height: inherit !important;
226
- text-indent: 0 !important;
227
- background: none !important;
228
- border: 0 none !important;
229
- -webkit-box-shadow: none !important;
230
- box-shadow: none !important;
231
- -webkit-user-select: auto !important;
232
- }
233
-
234
- .selectize-input > input:focus {
235
- outline: none !important;
236
- }
237
-
238
- .selectize-input::after {
239
- display: block;
240
- clear: left;
241
- content: ' ';
242
- }
243
-
244
- .selectize-input.dropdown-active::before {
245
- position: absolute;
246
- right: 0;
247
- bottom: 0;
248
- left: 0;
249
- display: block;
250
- height: 1px;
251
- background: #ffffff;
252
- content: ' ';
253
- }
254
-
255
- .selectize-dropdown {
256
- position: absolute;
257
- z-index: 10;
258
- margin: -1px 0 0 0;
259
- background: #ffffff;
260
- border: 1px solid #cccccc;
261
- border-top: 0 none;
262
- -webkit-border-radius: 0 0 4px 4px;
263
- -moz-border-radius: 0 0 4px 4px;
264
- border-radius: 0 0 4px 4px;
265
- -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
266
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
267
- -webkit-box-sizing: border-box;
268
- -moz-box-sizing: border-box;
269
- box-sizing: border-box;
270
- }
271
-
272
- .selectize-dropdown [data-selectable] {
273
- overflow: hidden;
274
- cursor: pointer;
275
- }
276
-
277
- .selectize-dropdown [data-selectable] .highlight {
278
- background: rgba(255, 237, 40, 0.4);
279
- -webkit-border-radius: 1px;
280
- -moz-border-radius: 1px;
281
- border-radius: 1px;
282
- }
283
-
284
- .selectize-dropdown [data-selectable],
285
- .selectize-dropdown .optgroup-header {
286
- padding: 3px 12px;
287
- }
288
-
289
- .selectize-dropdown .optgroup:first-child .optgroup-header {
290
- border-top: 0 none;
291
- }
292
-
293
- .selectize-dropdown .optgroup-header {
294
- color: #999999;
295
- cursor: default;
296
- background: #ffffff;
297
- }
298
-
299
- .selectize-dropdown .active {
300
- color: #ffffff;
301
- background-color: #428bca;
302
- }
303
-
304
- .selectize-dropdown .active.create {
305
- color: #ffffff;
306
- }
307
-
308
- .selectize-dropdown .create {
309
- color: rgba(51, 51, 51, 0.5);
310
- }
311
-
312
- .selectize-dropdown-content {
313
- max-height: 200px;
314
- overflow-x: hidden;
315
- overflow-y: auto;
316
- }
317
-
318
- .selectize-control.single .selectize-input,
319
- .selectize-control.single .selectize-input input {
320
- cursor: pointer;
321
- }
322
-
323
- .selectize-control.single .selectize-input.input-active,
324
- .selectize-control.single .selectize-input.input-active input {
325
- cursor: text;
326
- }
327
-
328
- .selectize-control.single .selectize-input:after {
329
- position: absolute;
330
- top: 50%;
331
- right: 17px;
332
- display: block;
333
- width: 0;
334
- height: 0;
335
- margin-top: -3px;
336
- border-color: #000000 transparent transparent transparent;
337
- border-style: solid;
338
- border-width: 5px 5px 0 5px;
339
- content: ' ';
340
- }
341
-
342
- .selectize-control.single .selectize-input.dropdown-active:after {
343
- margin-top: -4px;
344
- border-color: transparent transparent #000000 transparent;
345
- border-width: 0 5px 5px 5px;
346
- }
347
-
348
- .selectize-control.rtl.single .selectize-input:after {
349
- right: auto;
350
- left: 17px;
351
- }
352
-
353
- .selectize-control.rtl .selectize-input > input {
354
- margin: 0 4px 0 -2px !important;
355
- }
356
-
357
- .selectize-control .selectize-input.disabled {
358
- background-color: #ffffff;
359
- opacity: 0.5;
360
- }
361
-
362
- .selectize-dropdown,
363
- .selectize-dropdown.form-control {
364
- z-index: 1000;
365
- height: auto;
366
- padding: 0;
367
- margin: 2px 0 0 0;
368
- background: #ffffff;
369
- border: 1px solid #cccccc;
370
- border: 1px solid rgba(0, 0, 0, 0.15);
371
- -webkit-border-radius: 4px;
372
- -moz-border-radius: 4px;
373
- border-radius: 4px;
374
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
375
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
376
- }
377
-
378
- .selectize-dropdown .optgroup-header {
379
- font-size: 12px;
380
- line-height: 1.428571429;
381
- }
382
-
383
- .selectize-dropdown .optgroup:first-child:before {
384
- display: none;
385
- }
386
-
387
- .selectize-dropdown .optgroup:before {
388
- display: block;
389
- height: 1px;
390
- margin: 9px 0;
391
- margin-right: -12px;
392
- margin-left: -12px;
393
- overflow: hidden;
394
- background-color: #e5e5e5;
395
- content: ' ';
396
- }
397
-
398
- .selectize-dropdown-content {
399
- padding: 5px 0;
400
- }
401
-
402
- .selectize-dropdown-header {
403
- padding: 6px 12px;
404
- }
405
-
406
- .selectize-input {
407
- min-height: 34px;
408
- }
409
-
410
- .selectize-input.dropdown-active {
411
- -webkit-border-radius: 4px;
412
- -moz-border-radius: 4px;
413
- border-radius: 4px;
414
- }
415
-
416
- .selectize-input.dropdown-active::before {
417
- display: none;
418
- }
419
-
420
- .selectize-input.focus {
421
- border-color: #66afe9;
422
- outline: 0;
423
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
424
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
425
- }
426
-
427
- .selectize-control.multi .selectize-input.has-items {
428
- padding-right: 9px;
429
- padding-left: 9px;
430
- }
431
-
432
- .selectize-control.multi .selectize-input > div {
433
- -webkit-border-radius: 3px;
434
- -moz-border-radius: 3px;
435
- border-radius: 3px;
436
- }
437
-
438
- .form-control.selectize-control {
439
- height: auto;
440
- padding: 0;
441
- background: none;
442
- border: none;
443
- -webkit-border-radius: 0;
444
- -moz-border-radius: 0;
445
- border-radius: 0;
446
- -webkit-box-shadow: none;
447
- box-shadow: none;
1
+ /**
2
+ * selectize.bootstrap3.css (v0.8.3) - Bootstrap 3 Theme
3
+ * Copyright (c) 2013 Brian Reavis & contributors
4
+ *
5
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
6
+ * file except in compliance with the License. You may obtain a copy of the License at:
7
+ * http://www.apache.org/licenses/LICENSE-2.0
8
+ *
9
+ * Unless required by applicable law or agreed to in writing, software distributed under
10
+ * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
11
+ * ANY KIND, either express or implied. See the License for the specific language
12
+ * governing permissions and limitations under the License.
13
+ *
14
+ * @author Brian Reavis <brian@thirdroute.com>
15
+ */
16
+
17
+ .selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
18
+ background: #f2f2f2 !important;
19
+ background: rgba(0, 0, 0, 0.06) !important;
20
+ border: 0 none !important;
21
+ visibility: visible !important;
22
+ -webkit-box-shadow: inset 0 0 12px 4px #ffffff;
23
+ box-shadow: inset 0 0 12px 4px #ffffff;
24
+ }
25
+
26
+ .selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
27
+ content: '!';
28
+ visibility: hidden;
29
+ }
30
+
31
+ .selectize-control.plugin-drag_drop .ui-sortable-helper {
32
+ -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
33
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
34
+ }
35
+
36
+ .selectize-dropdown-header {
37
+ position: relative;
38
+ padding: 3px 12px;
39
+ background: #f8f8f8;
40
+ border-bottom: 1px solid #d0d0d0;
41
+ -webkit-border-radius: 4px 4px 0 0;
42
+ -moz-border-radius: 4px 4px 0 0;
43
+ border-radius: 4px 4px 0 0;
44
+ }
45
+
46
+ .selectize-dropdown-header-close {
47
+ position: absolute;
48
+ top: 50%;
49
+ right: 12px;
50
+ margin-top: -12px;
51
+ font-size: 20px !important;
52
+ line-height: 20px;
53
+ color: #333333;
54
+ opacity: 0.4;
55
+ }
56
+
57
+ .selectize-dropdown-header-close:hover {
58
+ color: #000000;
59
+ }
60
+
61
+ .selectize-dropdown.plugin-optgroup_columns .optgroup {
62
+ float: left;
63
+ border-top: 0 none;
64
+ border-right: 1px solid #f2f2f2;
65
+ -webkit-box-sizing: border-box;
66
+ -moz-box-sizing: border-box;
67
+ box-sizing: border-box;
68
+ }
69
+
70
+ .selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
71
+ border-right: 0 none;
72
+ }
73
+
74
+ .selectize-dropdown.plugin-optgroup_columns .optgroup:before {
75
+ display: none;
76
+ }
77
+
78
+ .selectize-dropdown.plugin-optgroup_columns .optgroup-header {
79
+ border-top: 0 none;
80
+ }
81
+
82
+ .selectize-control.plugin-remove_button [data-value] {
83
+ position: relative;
84
+ padding-right: 24px !important;
85
+ }
86
+
87
+ .selectize-control.plugin-remove_button [data-value] .remove {
88
+ position: absolute;
89
+ top: 0;
90
+ right: 0;
91
+ bottom: 0;
92
+ display: inline-block;
93
+ width: 17px;
94
+ padding: 1px 0 0 0;
95
+ font-size: 12px;
96
+ font-weight: bold;
97
+ color: inherit;
98
+ text-align: center;
99
+ text-decoration: none;
100
+ vertical-align: middle;
101
+ border-left: 1px solid rgba(0, 0, 0, 0);
102
+ -webkit-border-radius: 0 2px 2px 0;
103
+ -moz-border-radius: 0 2px 2px 0;
104
+ border-radius: 0 2px 2px 0;
105
+ -webkit-box-sizing: border-box;
106
+ -moz-box-sizing: border-box;
107
+ box-sizing: border-box;
108
+ }
109
+
110
+ .selectize-control.plugin-remove_button [data-value] .remove:hover {
111
+ background: rgba(0, 0, 0, 0.05);
112
+ }
113
+
114
+ .selectize-control.plugin-remove_button [data-value].active .remove {
115
+ border-left-color: rgba(0, 0, 0, 0);
116
+ }
117
+
118
+ .selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
119
+ background: none;
120
+ }
121
+
122
+ .selectize-control.plugin-remove_button .disabled [data-value] .remove {
123
+ border-left-color: rgba(77, 77, 77, 0);
124
+ }
125
+
126
+ .selectize-control {
127
+ position: relative;
128
+ }
129
+
130
+ .selectize-dropdown,
131
+ .selectize-input,
132
+ .selectize-input input {
133
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
134
+ font-size: 14px;
135
+ -webkit-font-smoothing: inherit;
136
+ line-height: 20px;
137
+ color: #333333;
138
+ }
139
+
140
+ .selectize-input,
141
+ .selectize-control.single .selectize-input.input-active {
142
+ display: inline-block;
143
+ cursor: text;
144
+ background: #ffffff;
145
+ }
146
+
147
+ .selectize-input {
148
+ position: relative;
149
+ z-index: 1;
150
+ display: inline-block;
151
+ width: 100%;
152
+ padding: 6px 12px;
153
+ overflow: hidden;
154
+ border: 1px solid #cccccc;
155
+ -webkit-border-radius: 4px;
156
+ -moz-border-radius: 4px;
157
+ border-radius: 4px;
158
+ -webkit-box-shadow: none;
159
+ box-shadow: none;
160
+ -webkit-box-sizing: border-box;
161
+ -moz-box-sizing: border-box;
162
+ box-sizing: border-box;
163
+ }
164
+
165
+ .selectize-control.multi .selectize-input.has-items {
166
+ padding: 5px 12px 2px;
167
+ }
168
+
169
+ .selectize-input.full {
170
+ background-color: #ffffff;
171
+ }
172
+
173
+ .selectize-input.disabled,
174
+ .selectize-input.disabled * {
175
+ cursor: default !important;
176
+ }
177
+
178
+ .selectize-input.focus {
179
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
180
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
181
+ }
182
+
183
+ .selectize-input.dropdown-active {
184
+ -webkit-border-radius: 4px 4px 0 0;
185
+ -moz-border-radius: 4px 4px 0 0;
186
+ border-radius: 4px 4px 0 0;
187
+ }
188
+
189
+ .selectize-input > * {
190
+ display: -moz-inline-stack;
191
+ display: inline-block;
192
+ *display: inline;
193
+ vertical-align: baseline;
194
+ zoom: 1;
195
+ }
196
+
197
+ .selectize-control.multi .selectize-input > div {
198
+ padding: 1px 3px;
199
+ margin: 0 3px 3px 0;
200
+ color: #333333;
201
+ cursor: pointer;
202
+ background: #efefef;
203
+ border: 0 solid rgba(0, 0, 0, 0);
204
+ }
205
+
206
+ .selectize-control.multi .selectize-input > div.active {
207
+ color: #ffffff;
208
+ background: #428bca;
209
+ border: 0 solid rgba(0, 0, 0, 0);
210
+ }
211
+
212
+ .selectize-control.multi .selectize-input.disabled > div,
213
+ .selectize-control.multi .selectize-input.disabled > div.active {
214
+ color: #808080;
215
+ background: #ffffff;
216
+ border: 0 solid rgba(77, 77, 77, 0);
217
+ }
218
+
219
+ .selectize-input > input {
220
+ max-width: 100% !important;
221
+ max-height: none !important;
222
+ min-height: 0 !important;
223
+ padding: 0 !important;
224
+ margin: 0 !important;
225
+ line-height: inherit !important;
226
+ text-indent: 0 !important;
227
+ background: none !important;
228
+ border: 0 none !important;
229
+ -webkit-box-shadow: none !important;
230
+ box-shadow: none !important;
231
+ -webkit-user-select: auto !important;
232
+ }
233
+
234
+ .selectize-input > input:focus {
235
+ outline: none !important;
236
+ }
237
+
238
+ .selectize-input::after {
239
+ display: block;
240
+ clear: left;
241
+ content: ' ';
242
+ }
243
+
244
+ .selectize-input.dropdown-active::before {
245
+ position: absolute;
246
+ right: 0;
247
+ bottom: 0;
248
+ left: 0;
249
+ display: block;
250
+ height: 1px;
251
+ background: #ffffff;
252
+ content: ' ';
253
+ }
254
+
255
+ .selectize-dropdown {
256
+ position: absolute;
257
+ z-index: 10;
258
+ margin: -1px 0 0 0;
259
+ background: #ffffff;
260
+ border: 1px solid #cccccc;
261
+ border-top: 0 none;
262
+ -webkit-border-radius: 0 0 4px 4px;
263
+ -moz-border-radius: 0 0 4px 4px;
264
+ border-radius: 0 0 4px 4px;
265
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
266
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
267
+ -webkit-box-sizing: border-box;
268
+ -moz-box-sizing: border-box;
269
+ box-sizing: border-box;
270
+ }
271
+
272
+ .selectize-dropdown [data-selectable] {
273
+ overflow: hidden;
274
+ cursor: pointer;
275
+ }
276
+
277
+ .selectize-dropdown [data-selectable] .highlight {
278
+ background: rgba(255, 237, 40, 0.4);
279
+ -webkit-border-radius: 1px;
280
+ -moz-border-radius: 1px;
281
+ border-radius: 1px;
282
+ }
283
+
284
+ .selectize-dropdown [data-selectable],
285
+ .selectize-dropdown .optgroup-header {
286
+ padding: 3px 12px;
287
+ }
288
+
289
+ .selectize-dropdown .optgroup:first-child .optgroup-header {
290
+ border-top: 0 none;
291
+ }
292
+
293
+ .selectize-dropdown .optgroup-header {
294
+ color: #999999;
295
+ cursor: default;
296
+ background: #ffffff;
297
+ }
298
+
299
+ .selectize-dropdown .active {
300
+ color: #ffffff;
301
+ background-color: #428bca;
302
+ }
303
+
304
+ .selectize-dropdown .active.create {
305
+ color: #ffffff;
306
+ }
307
+
308
+ .selectize-dropdown .create {
309
+ color: rgba(51, 51, 51, 0.5);
310
+ }
311
+
312
+ .selectize-dropdown-content {
313
+ max-height: 200px;
314
+ overflow-x: hidden;
315
+ overflow-y: auto;
316
+ }
317
+
318
+ .selectize-control.single .selectize-input,
319
+ .selectize-control.single .selectize-input input {
320
+ cursor: pointer;
321
+ }
322
+
323
+ .selectize-control.single .selectize-input.input-active,
324
+ .selectize-control.single .selectize-input.input-active input {
325
+ cursor: text;
326
+ }
327
+
328
+ .selectize-control.single .selectize-input:after {
329
+ position: absolute;
330
+ top: 50%;
331
+ right: 17px;
332
+ display: block;
333
+ width: 0;
334
+ height: 0;
335
+ margin-top: -3px;
336
+ border-color: #000000 transparent transparent transparent;
337
+ border-style: solid;
338
+ border-width: 5px 5px 0 5px;
339
+ content: ' ';
340
+ }
341
+
342
+ .selectize-control.single .selectize-input.dropdown-active:after {
343
+ margin-top: -4px;
344
+ border-color: transparent transparent #000000 transparent;
345
+ border-width: 0 5px 5px 5px;
346
+ }
347
+
348
+ .selectize-control.rtl.single .selectize-input:after {
349
+ right: auto;
350
+ left: 17px;
351
+ }
352
+
353
+ .selectize-control.rtl .selectize-input > input {
354
+ margin: 0 4px 0 -2px !important;
355
+ }
356
+
357
+ .selectize-control .selectize-input.disabled {
358
+ background-color: #ffffff;
359
+ opacity: 0.5;
360
+ }
361
+
362
+ .selectize-dropdown,
363
+ .selectize-dropdown.form-control {
364
+ z-index: 1000;
365
+ height: auto;
366
+ padding: 0;
367
+ margin: 2px 0 0 0;
368
+ background: #ffffff;
369
+ border: 1px solid #cccccc;
370
+ border: 1px solid rgba(0, 0, 0, 0.15);
371
+ -webkit-border-radius: 4px;
372
+ -moz-border-radius: 4px;
373
+ border-radius: 4px;
374
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
375
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
376
+ }
377
+
378
+ .selectize-dropdown .optgroup-header {
379
+ font-size: 12px;
380
+ line-height: 1.428571429;
381
+ }
382
+
383
+ .selectize-dropdown .optgroup:first-child:before {
384
+ display: none;
385
+ }
386
+
387
+ .selectize-dropdown .optgroup:before {
388
+ display: block;
389
+ height: 1px;
390
+ margin: 9px 0;
391
+ margin-right: -12px;
392
+ margin-left: -12px;
393
+ overflow: hidden;
394
+ background-color: #e5e5e5;
395
+ content: ' ';
396
+ }
397
+
398
+ .selectize-dropdown-content {
399
+ padding: 5px 0;
400
+ }
401
+
402
+ .selectize-dropdown-header {
403
+ padding: 6px 12px;
404
+ }
405
+
406
+ .selectize-input {
407
+ min-height: 34px;
408
+ }
409
+
410
+ .selectize-input.dropdown-active {
411
+ -webkit-border-radius: 4px;
412
+ -moz-border-radius: 4px;
413
+ border-radius: 4px;
414
+ }
415
+
416
+ .selectize-input.dropdown-active::before {
417
+ display: none;
418
+ }
419
+
420
+ .selectize-input.focus {
421
+ border-color: #66afe9;
422
+ outline: 0;
423
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
424
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
425
+ }
426
+
427
+ .selectize-control.multi .selectize-input.has-items {
428
+ padding-right: 9px;
429
+ padding-left: 9px;
430
+ }
431
+
432
+ .selectize-control.multi .selectize-input > div {
433
+ -webkit-border-radius: 3px;
434
+ -moz-border-radius: 3px;
435
+ border-radius: 3px;
436
+ }
437
+
438
+ .form-control.selectize-control {
439
+ height: auto;
440
+ padding: 0;
441
+ background: none;
442
+ border: none;
443
+ -webkit-border-radius: 0;
444
+ -moz-border-radius: 0;
445
+ border-radius: 0;
446
+ -webkit-box-shadow: none;
447
+ box-shadow: none;
448
448
  }