inertia-bootstrap-forms 1.0.8 → 1.0.10

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.
@@ -1,374 +1,374 @@
1
- /* purgecss start ignore */
2
- .choices {
3
- color: var(--bs-body-color);
4
- position: relative;
5
- overflow: hidden;
6
- margin-bottom: 24px;
7
- font-size: var(--bs-body-font-size)
8
- }
9
-
10
- .choices:focus {
11
- outline: 0
12
- }
13
-
14
- .choices:last-child {
15
- margin-bottom: 0
16
- }
17
-
18
- .choices.is-open {
19
- overflow: visible
20
- }
21
-
22
- .choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
23
- background-color: #eaeaea;
24
- cursor: not-allowed;
25
- -webkit-user-select: none;
26
- user-select: none
27
- }
28
-
29
- .choices.is-disabled .choices__item {
30
- cursor: not-allowed
31
- }
32
-
33
- .choices [hidden] {
34
- display: none !important
35
- }
36
-
37
- .choices[data-type*=select-one] {
38
- cursor: pointer
39
- }
40
-
41
- /**
42
- //.choices[data-type*=select-one] .choices__inner {
43
- // padding-bottom: 7.5px
44
- //}*/
45
-
46
- .choices[data-type*=select-one] .choices__input {
47
- display: block;
48
- width: 100%;
49
- padding: 10px;
50
- border-bottom: 1px solid #ddd;
51
- background-color: #fff;
52
- margin: 0
53
- }
54
-
55
- .choices[data-type*=select-one] .choices__button {
56
- background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
57
- padding: 0;
58
- background-size: 8px;
59
- position: absolute;
60
- top: 50%;
61
- right: 0;
62
- margin-top: -10px;
63
- margin-right: 25px;
64
- height: 20px;
65
- width: 20px;
66
- border-radius: 10em;
67
- opacity: .25
68
- }
69
-
70
- .choices[data-type*=select-one] .choices__button:focus, .choices[data-type*=select-one] .choices__button:hover {
71
- opacity: 1
72
- }
73
-
74
- .choices[data-type*=select-one] .choices__button:focus {
75
- box-shadow: 0 0 0 2px #005f75
76
- }
77
-
78
- .choices[data-type*=select-one] .choices__item[data-placeholder] .choices__button {
79
- display: none
80
- }
81
-
82
- .choices[data-type*=select-one]::after {
83
- content: "";
84
- height: 0;
85
- width: 0;
86
- border-style: solid;
87
- border-color: #333 transparent transparent;
88
- border-width: 5px;
89
- position: absolute;
90
- right: 11.5px;
91
- top: 50%;
92
- margin-top: -2.5px;
93
- pointer-events: none
94
- }
95
-
96
- .choices[data-type*=select-one].is-open::after {
97
- border-color: transparent transparent #333;
98
- margin-top: -7.5px
99
- }
100
-
101
- .choices[data-type*=select-one][dir=rtl]::after {
102
- left: 11.5px;
103
- right: auto
104
- }
105
-
106
- .choices[data-type*=select-one][dir=rtl] .choices__button {
107
- right: auto;
108
- left: 0;
109
- margin-left: 25px;
110
- margin-right: 0
111
- }
112
-
113
- .choices[data-type*=select-multiple] .choices__inner, .choices[data-type*=text] .choices__inner {
114
- cursor: text
115
- }
116
-
117
- .choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
118
- position: relative;
119
- display: inline-block;
120
- margin: 0-4px 0 8px;
121
- padding-left: .8rem;
122
- background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
123
- background-size: 8px;
124
- width: 8px;
125
- line-height: 1;
126
- opacity: .75;
127
- border-radius: 0
128
- }
129
-
130
- .choices[data-type*=select-multiple] .choices__button:focus, .choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=text] .choices__button:focus, .choices[data-type*=text] .choices__button:hover {
131
- opacity: 1
132
- }
133
-
134
- .choices__inner {
135
- display: inline-block;
136
- vertical-align: top;
137
- width: 100%;
138
- background-color: var(--bs-body-bg, #ffffff);
139
- padding: calc(.5rem - 4px) .75rem calc(.5rem - 4px) .75rem;
140
- border: 1px solid #ddd;
141
- border-radius: var(--bs-border-radius);
142
- font-size: var(--bs-body-font-size);
143
- min-height: 44px;
144
- overflow: hidden
145
- }
146
-
147
- .is-focused .choices__inner, .is-open .choices__inner {
148
- border-color: #b7b7b7
149
- }
150
-
151
- .is-open .choices__inner {
152
- border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0
153
- }
154
-
155
- .is-flipped.is-open .choices__inner {
156
- border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius)
157
- }
158
-
159
- .choices__list {
160
- margin: 0;
161
- padding-left: 0;
162
- list-style: none
163
- }
164
-
165
- .choices__list--single {
166
- display: inline-block;
167
- padding: 4px 16px 4px 4px;
168
- width: 100%
169
- }
170
-
171
- [dir=rtl] .choices__list--single {
172
- padding-right: 4px;
173
- padding-left: 16px
174
- }
175
-
176
- .choices__list--single .choices__item {
177
- width: 100%
178
- }
179
-
180
- .choices__list--multiple {
181
- display: inline
182
- }
183
-
184
- .choices__list--multiple .choices__item {
185
- display: inline-block;
186
- vertical-align: middle;
187
- border-radius: var(--bs-border-radius);
188
- padding: 2px 10px;
189
- line-height:2;
190
- font-size: .8rem;
191
- font-weight: 500;
192
- margin-right: 3.75px;
193
- margin-bottom: 3.75px;
194
- background-color: #999999;
195
- border: 1px solid #999999;
196
- color: #fff;
197
- word-break: break-all;
198
- box-sizing: border-box
199
- }
200
-
201
- .choices__list--multiple .choices__item[data-deletable] {
202
- padding-right: 5px
203
- }
204
-
205
- [dir=rtl] .choices__list--multiple .choices__item {
206
- margin-right: 0;
207
- margin-left: 3.75px
208
- }
209
-
210
- .choices__list--multiple .choices__item.is-highlighted {
211
- background-color: #004a5c;
212
- border: 1px solid #003642
213
- }
214
-
215
- .is-disabled .choices__list--multiple .choices__item {
216
- background-color: #aaa;
217
- border: 1px solid #919191
218
- }
219
-
220
- .choices__list--dropdown, .choices__list[aria-expanded] {
221
- display: none;
222
- z-index: 3;
223
- position: absolute;
224
- width: 100%;
225
- background-color: #fff;
226
- border: 1px solid #ddd;
227
- top: 100%;
228
- margin-top: -1px;
229
- border-bottom-left-radius: var(--bs-border-radius);
230
- border-bottom-right-radius: var(--bs-border-radius);
231
- overflow: hidden;
232
- word-break: break-all
233
- }
234
-
235
- .is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
236
- display: block
237
- }
238
-
239
- .is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
240
- border-color: #b7b7b7
241
- }
242
-
243
- .is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
244
- top: auto;
245
- bottom: 100%;
246
- margin-top: 0;
247
- margin-bottom: -1px;
248
- border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0
249
- }
250
-
251
- .choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
252
- position: relative;
253
- max-height: 300px;
254
- overflow: auto;
255
- -webkit-overflow-scrolling: touch;
256
- will-change: scroll-position
257
- }
258
-
259
- .choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
260
- position: relative;
261
- padding: 10px;
262
- font-size: 14px
263
- }
264
-
265
- [dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
266
- text-align: right
267
- }
268
-
269
- @media (min-width: 640px) {
270
- .choices__list--dropdown .choices__item--selectable[data-select-text], .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
271
- padding-right: 100px
272
- }
273
- .choices__list--dropdown .choices__item--selectable[data-select-text]::after, .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
274
- content: attr(data-select-text);
275
- font-size: 12px;
276
- opacity: 0;
277
- position: absolute;
278
- right: 10px;
279
- top: 50%;
280
- transform: translateY(-50%)
281
- }
282
- [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text], [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
283
- text-align: right;
284
- padding-left: 100px;
285
- padding-right: 10px
286
- }
287
- [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text]::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
288
- right: auto;
289
- left: 10px
290
- }
291
- }
292
-
293
- .choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
294
- background-color: #f2f2f2
295
- }
296
-
297
- .choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
298
- opacity: .5
299
- }
300
-
301
- .choices__item {
302
- cursor: default
303
- }
304
-
305
- .choices__item.has-no-choices {
306
- font-style: italic;
307
- background-color: var(--bs-tertiary-bg, #f7f7f7);
308
- color: var(--bs-secondary-color, #666666);
309
- }
310
-
311
- .choices__item--selectable {
312
- cursor: pointer
313
- }
314
-
315
- .choices__item--disabled {
316
- cursor: not-allowed;
317
- -webkit-user-select: none;
318
- user-select: none;
319
- opacity: .5
320
- }
321
-
322
- .choices__heading {
323
- font-weight: 600;
324
- font-size: 12px;
325
- padding: 10px;
326
- border-bottom: 1px solid #f7f7f7;
327
- color: gray
328
- }
329
-
330
- .choices__button {
331
- text-indent: -9999px;
332
- appearance: none;
333
- border: 0;
334
- background-color: transparent;
335
- background-repeat: no-repeat;
336
- background-position: center;
337
- cursor: pointer
338
- }
339
-
340
- .choices__button:focus, .choices__input:focus {
341
- outline: 0
342
- }
343
-
344
- .choices__input {
345
- display: inline-block;
346
- vertical-align: baseline;
347
- background-color: #f9f9f9;
348
- font-size: var(--bs-body-font-size);
349
- border: 0;
350
- border-radius: 0;
351
- max-width: 100%;
352
- padding: 4px 0 4px 2px
353
- }
354
-
355
- .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-decoration, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
356
- display: none
357
- }
358
-
359
- .choices__input::-ms-clear, .choices__input::-ms-reveal {
360
- display: none;
361
- width: 0;
362
- height: 0
363
- }
364
-
365
- [dir=rtl] .choices__input {
366
- padding-right: 2px;
367
- padding-left: 0
368
- }
369
-
370
- .choices__placeholder {
371
- opacity: .5
372
- }
373
-
374
- /* purgecss end ignore */
1
+ /* purgecss start ignore */
2
+ .choices {
3
+ color: var(--bs-body-color);
4
+ position: relative;
5
+ overflow: hidden;
6
+ margin-bottom: 24px;
7
+ font-size: var(--bs-body-font-size)
8
+ }
9
+
10
+ .choices:focus {
11
+ outline: 0
12
+ }
13
+
14
+ .choices:last-child {
15
+ margin-bottom: 0
16
+ }
17
+
18
+ .choices.is-open {
19
+ overflow: visible
20
+ }
21
+
22
+ .choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
23
+ background-color: #eaeaea;
24
+ cursor: not-allowed;
25
+ -webkit-user-select: none;
26
+ user-select: none
27
+ }
28
+
29
+ .choices.is-disabled .choices__item {
30
+ cursor: not-allowed
31
+ }
32
+
33
+ .choices [hidden] {
34
+ display: none !important
35
+ }
36
+
37
+ .choices[data-type*=select-one] {
38
+ cursor: pointer
39
+ }
40
+
41
+ /**
42
+ //.choices[data-type*=select-one] .choices__inner {
43
+ // padding-bottom: 7.5px
44
+ //}*/
45
+
46
+ .choices[data-type*=select-one] .choices__input {
47
+ display: block;
48
+ width: 100%;
49
+ padding: 10px;
50
+ border-bottom: 1px solid #ddd;
51
+ background-color: #fff;
52
+ margin: 0
53
+ }
54
+
55
+ .choices[data-type*=select-one] .choices__button {
56
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
57
+ padding: 0;
58
+ background-size: 8px;
59
+ position: absolute;
60
+ top: 50%;
61
+ right: 0;
62
+ margin-top: -10px;
63
+ margin-right: 25px;
64
+ height: 20px;
65
+ width: 20px;
66
+ border-radius: 10em;
67
+ opacity: .25
68
+ }
69
+
70
+ .choices[data-type*=select-one] .choices__button:focus, .choices[data-type*=select-one] .choices__button:hover {
71
+ opacity: 1
72
+ }
73
+
74
+ .choices[data-type*=select-one] .choices__button:focus {
75
+ box-shadow: 0 0 0 2px #005f75
76
+ }
77
+
78
+ .choices[data-type*=select-one] .choices__item[data-placeholder] .choices__button {
79
+ display: none
80
+ }
81
+
82
+ .choices[data-type*=select-one]::after {
83
+ content: "";
84
+ height: 0;
85
+ width: 0;
86
+ border-style: solid;
87
+ border-color: #333 transparent transparent;
88
+ border-width: 5px;
89
+ position: absolute;
90
+ right: 11.5px;
91
+ top: 50%;
92
+ margin-top: -2.5px;
93
+ pointer-events: none
94
+ }
95
+
96
+ .choices[data-type*=select-one].is-open::after {
97
+ border-color: transparent transparent #333;
98
+ margin-top: -7.5px
99
+ }
100
+
101
+ .choices[data-type*=select-one][dir=rtl]::after {
102
+ left: 11.5px;
103
+ right: auto
104
+ }
105
+
106
+ .choices[data-type*=select-one][dir=rtl] .choices__button {
107
+ right: auto;
108
+ left: 0;
109
+ margin-left: 25px;
110
+ margin-right: 0
111
+ }
112
+
113
+ .choices[data-type*=select-multiple] .choices__inner, .choices[data-type*=text] .choices__inner {
114
+ cursor: text
115
+ }
116
+
117
+ .choices[data-type*=select-multiple] .choices__button, .choices[data-type*=text] .choices__button {
118
+ position: relative;
119
+ display: inline-block;
120
+ margin: 0-4px 0 8px;
121
+ padding-left: .8rem;
122
+ background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
123
+ background-size: 8px;
124
+ width: 8px;
125
+ line-height: 1;
126
+ opacity: .75;
127
+ border-radius: 0
128
+ }
129
+
130
+ .choices[data-type*=select-multiple] .choices__button:focus, .choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=text] .choices__button:focus, .choices[data-type*=text] .choices__button:hover {
131
+ opacity: 1
132
+ }
133
+
134
+ .choices__inner {
135
+ display: inline-block;
136
+ vertical-align: top;
137
+ width: 100%;
138
+ background-color: var(--bs-body-bg, #ffffff);
139
+ padding: calc(.5rem - 4px) .75rem calc(.5rem - 4px) .75rem;
140
+ border: 1px solid #ddd;
141
+ border-radius: var(--bs-border-radius);
142
+ font-size: var(--bs-body-font-size);
143
+ min-height: 44px;
144
+ overflow: hidden
145
+ }
146
+
147
+ .is-focused .choices__inner, .is-open .choices__inner {
148
+ border-color: #b7b7b7
149
+ }
150
+
151
+ .is-open .choices__inner {
152
+ border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0
153
+ }
154
+
155
+ .is-flipped.is-open .choices__inner {
156
+ border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius)
157
+ }
158
+
159
+ .choices__list {
160
+ margin: 0;
161
+ padding-left: 0;
162
+ list-style: none
163
+ }
164
+
165
+ .choices__list--single {
166
+ display: inline-block;
167
+ padding: 4px 16px 4px 4px;
168
+ width: 100%
169
+ }
170
+
171
+ [dir=rtl] .choices__list--single {
172
+ padding-right: 4px;
173
+ padding-left: 16px
174
+ }
175
+
176
+ .choices__list--single .choices__item {
177
+ width: 100%
178
+ }
179
+
180
+ .choices__list--multiple {
181
+ display: inline
182
+ }
183
+
184
+ .choices__list--multiple .choices__item {
185
+ display: inline-block;
186
+ vertical-align: middle;
187
+ border-radius: var(--bs-border-radius);
188
+ padding: 2px 10px;
189
+ line-height:2;
190
+ font-size: .8rem;
191
+ font-weight: 500;
192
+ margin-right: 3.75px;
193
+ margin-bottom: 3.75px;
194
+ background-color: #999999;
195
+ border: 1px solid #999999;
196
+ color: #fff;
197
+ word-break: break-all;
198
+ box-sizing: border-box
199
+ }
200
+
201
+ .choices__list--multiple .choices__item[data-deletable] {
202
+ padding-right: 5px
203
+ }
204
+
205
+ [dir=rtl] .choices__list--multiple .choices__item {
206
+ margin-right: 0;
207
+ margin-left: 3.75px
208
+ }
209
+
210
+ .choices__list--multiple .choices__item.is-highlighted {
211
+ background-color: #004a5c;
212
+ border: 1px solid #003642
213
+ }
214
+
215
+ .is-disabled .choices__list--multiple .choices__item {
216
+ background-color: #aaa;
217
+ border: 1px solid #919191
218
+ }
219
+
220
+ .choices__list--dropdown, .choices__list[aria-expanded] {
221
+ display: none;
222
+ z-index: 3;
223
+ position: absolute;
224
+ width: 100%;
225
+ background-color: #fff;
226
+ border: 1px solid #ddd;
227
+ top: 100%;
228
+ margin-top: -1px;
229
+ border-bottom-left-radius: var(--bs-border-radius);
230
+ border-bottom-right-radius: var(--bs-border-radius);
231
+ overflow: hidden;
232
+ word-break: break-all
233
+ }
234
+
235
+ .is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
236
+ display: block
237
+ }
238
+
239
+ .is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
240
+ border-color: #b7b7b7
241
+ }
242
+
243
+ .is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
244
+ top: auto;
245
+ bottom: 100%;
246
+ margin-top: 0;
247
+ margin-bottom: -1px;
248
+ border-radius: var(--bs-border-radius) var(--bs-border-radius) 0 0
249
+ }
250
+
251
+ .choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
252
+ position: relative;
253
+ max-height: 300px;
254
+ overflow: auto;
255
+ -webkit-overflow-scrolling: touch;
256
+ will-change: scroll-position
257
+ }
258
+
259
+ .choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
260
+ position: relative;
261
+ padding: 10px;
262
+ font-size: 14px
263
+ }
264
+
265
+ [dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
266
+ text-align: right
267
+ }
268
+
269
+ @media (min-width: 640px) {
270
+ .choices__list--dropdown .choices__item--selectable[data-select-text], .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
271
+ padding-right: 100px
272
+ }
273
+ .choices__list--dropdown .choices__item--selectable[data-select-text]::after, .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
274
+ content: attr(data-select-text);
275
+ font-size: 12px;
276
+ opacity: 0;
277
+ position: absolute;
278
+ right: 10px;
279
+ top: 50%;
280
+ transform: translateY(-50%)
281
+ }
282
+ [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text], [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text] {
283
+ text-align: right;
284
+ padding-left: 100px;
285
+ padding-right: 10px
286
+ }
287
+ [dir=rtl] .choices__list--dropdown .choices__item--selectable[data-select-text]::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable[data-select-text]::after {
288
+ right: auto;
289
+ left: 10px
290
+ }
291
+ }
292
+
293
+ .choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
294
+ background-color: #f2f2f2
295
+ }
296
+
297
+ .choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
298
+ opacity: .5
299
+ }
300
+
301
+ .choices__item {
302
+ cursor: default
303
+ }
304
+
305
+ .choices__item.has-no-choices {
306
+ font-style: italic;
307
+ background-color: var(--bs-tertiary-bg, #f7f7f7);
308
+ color: var(--bs-secondary-color, #666666);
309
+ }
310
+
311
+ .choices__item--selectable {
312
+ cursor: pointer
313
+ }
314
+
315
+ .choices__item--disabled {
316
+ cursor: not-allowed;
317
+ -webkit-user-select: none;
318
+ user-select: none;
319
+ opacity: .5
320
+ }
321
+
322
+ .choices__heading {
323
+ font-weight: 600;
324
+ font-size: 12px;
325
+ padding: 10px;
326
+ border-bottom: 1px solid #f7f7f7;
327
+ color: gray
328
+ }
329
+
330
+ .choices__button {
331
+ text-indent: -9999px;
332
+ appearance: none;
333
+ border: 0;
334
+ background-color: transparent;
335
+ background-repeat: no-repeat;
336
+ background-position: center;
337
+ cursor: pointer
338
+ }
339
+
340
+ .choices__button:focus, .choices__input:focus {
341
+ outline: 0
342
+ }
343
+
344
+ .choices__input {
345
+ display: inline-block;
346
+ vertical-align: baseline;
347
+ background-color: #f9f9f9;
348
+ font-size: var(--bs-body-font-size);
349
+ border: 0;
350
+ border-radius: 0;
351
+ max-width: 100%;
352
+ padding: 4px 0 4px 2px
353
+ }
354
+
355
+ .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-decoration, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
356
+ display: none
357
+ }
358
+
359
+ .choices__input::-ms-clear, .choices__input::-ms-reveal {
360
+ display: none;
361
+ width: 0;
362
+ height: 0
363
+ }
364
+
365
+ [dir=rtl] .choices__input {
366
+ padding-right: 2px;
367
+ padding-left: 0
368
+ }
369
+
370
+ .choices__placeholder {
371
+ opacity: .5
372
+ }
373
+
374
+ /* purgecss end ignore */