@oat-sa/tao-core-ui 1.58.2 → 1.59.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 (75) hide show
  1. package/package.json +1 -1
  2. package/scss/.DS_Store +0 -0
  3. package/scss/ckeditor/.DS_Store +0 -0
  4. package/scss/ckeditor/skins/.DS_Store +0 -0
  5. package/scss/ckeditor/skins/tao/.DS_Store +0 -0
  6. package/scss/ckeditor/skins/tao/scss/editor.scss +17 -0
  7. package/scss/ckeditor/skins/tao/scss/inc/_menu.scss +1 -6
  8. package/src/.DS_Store +0 -0
  9. package/src/css/basic.css +7835 -0
  10. package/src/css/basic.css.map +1 -0
  11. package/src/css/ckeditor/skins/tao/css/dialog.css +950 -0
  12. package/src/css/ckeditor/skins/tao/css/dialog.css.map +1 -0
  13. package/src/css/ckeditor/skins/tao/css/editor.css +1850 -0
  14. package/src/css/ckeditor/skins/tao/css/editor.css.map +1 -0
  15. package/src/scss/.DS_Store +0 -0
  16. package/src/scss/basic.scss +16 -0
  17. package/src/scss/ckeditor/skins/tao/scss/dialog.scss +763 -0
  18. package/src/scss/ckeditor/skins/tao/scss/editor.scss +111 -0
  19. package/src/scss/ckeditor/skins/tao/scss/inc/_ck-icons.scss +59 -0
  20. package/src/scss/ckeditor/skins/tao/scss/inc/_colorpanel.scss +118 -0
  21. package/src/scss/ckeditor/skins/tao/scss/inc/_elementspath.scss +69 -0
  22. package/src/scss/ckeditor/skins/tao/scss/inc/_mainui.scss +194 -0
  23. package/src/scss/ckeditor/skins/tao/scss/inc/_menu.scss +181 -0
  24. package/src/scss/ckeditor/skins/tao/scss/inc/_panel.scss +200 -0
  25. package/src/scss/ckeditor/skins/tao/scss/inc/_presets.scss +32 -0
  26. package/src/scss/ckeditor/skins/tao/scss/inc/_reset.scss +101 -0
  27. package/src/scss/ckeditor/skins/tao/scss/inc/_richcombo.scss +213 -0
  28. package/src/scss/ckeditor/skins/tao/scss/inc/_tao.scss +59 -0
  29. package/src/scss/ckeditor/skins/tao/scss/inc/_toolbar.scss +301 -0
  30. package/src/scss/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  31. package/src/scss/font/source-sans-pro/source-sans-pro-italic.eot.b64 +1 -0
  32. package/src/scss/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  33. package/src/scss/font/source-sans-pro/source-sans-pro-italic.woff.b64 +1 -0
  34. package/src/scss/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  35. package/src/scss/font/source-sans-pro/source-sans-pro-regular.eot.b64 +1 -0
  36. package/src/scss/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  37. package/src/scss/font/source-sans-pro/source-sans-pro-regular.woff.b64 +1 -0
  38. package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.eot +0 -0
  39. package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.eot.b64 +1 -0
  40. package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.woff +0 -0
  41. package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.woff.b64 +1 -0
  42. package/src/scss/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  43. package/src/scss/font/source-sans-pro/source-sans-pro-semibold.eot.b64 +1 -0
  44. package/src/scss/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  45. package/src/scss/font/source-sans-pro/source-sans-pro-semibold.woff.b64 +1 -0
  46. package/src/scss/font/tao/tao.eot +0 -0
  47. package/src/scss/font/tao/tao.svg +235 -0
  48. package/src/scss/font/tao/tao.ttf +0 -0
  49. package/src/scss/font/tao/tao.woff +0 -0
  50. package/src/scss/inc/_base.scss +496 -0
  51. package/src/scss/inc/_bootstrap.scss +6 -0
  52. package/src/scss/inc/_buttons.scss +114 -0
  53. package/src/scss/inc/_colors.scss +88 -0
  54. package/src/scss/inc/_feedback.scss +150 -0
  55. package/src/scss/inc/_flex-grid.scss +15 -0
  56. package/src/scss/inc/_fonts.scss +4 -0
  57. package/src/scss/inc/_forms.scss +827 -0
  58. package/src/scss/inc/_functions.scss +283 -0
  59. package/src/scss/inc/_grid.scss +66 -0
  60. package/src/scss/inc/_jquery.nouislider.scss +254 -0
  61. package/src/scss/inc/_normalize.scss +528 -0
  62. package/src/scss/inc/_report.scss +68 -0
  63. package/src/scss/inc/_secondary-properties.scss +89 -0
  64. package/src/scss/inc/_select2.scss +634 -0
  65. package/src/scss/inc/_toolbars.scss +155 -0
  66. package/src/scss/inc/_tooltip.scss +312 -0
  67. package/src/scss/inc/_variables.scss +21 -0
  68. package/src/scss/inc/base/_highlight.scss +5 -0
  69. package/src/scss/inc/base/_list-style.scss +59 -0
  70. package/src/scss/inc/base/_svg.scss +3 -0
  71. package/src/scss/inc/base/_table.scss +63 -0
  72. package/src/scss/inc/fonts/_source-sans-pro.scss +29 -0
  73. package/src/scss/inc/fonts/_tao-icon-classes.scss +226 -0
  74. package/src/scss/inc/fonts/_tao-icon-def.scss +12 -0
  75. package/src/scss/inc/fonts/_tao-icon-vars.scss +240 -0
@@ -0,0 +1,634 @@
1
+ @import 'inc/bootstrap';
2
+
3
+ .select2-container * {
4
+ text-decoration: none !important
5
+ }
6
+
7
+ .select2-drop {
8
+
9
+ font-family: $regularFont;
10
+ font-weight: 400;
11
+ //@include font-size(12);
12
+
13
+ [data-symbol]:before {
14
+ content: attr(data-symbol);
15
+ display: inline-block;
16
+ width: 20px;
17
+ line-height: 20px;
18
+ margin-right: 4px;
19
+ text-align: center;
20
+ color: $textColor;
21
+ }
22
+ }
23
+
24
+ .select2-container {
25
+
26
+ margin: 0;
27
+ position: relative;
28
+ display: inline-block;
29
+ /* inline-block for ie7 */
30
+ zoom: 1;
31
+ *display: inline;
32
+ vertical-align: middle;
33
+ }
34
+
35
+ .select2-container,
36
+ .select2-drop,
37
+ .select2-search,
38
+ .select2-search input {
39
+ /*
40
+ Force border-box so that % widths fit the parent
41
+ container without overlap because of margin/padding.
42
+
43
+ More Info : http://www.quirksmode.org/css/box.html
44
+ */
45
+ -webkit-box-sizing: border-box; /* webkit */
46
+ -moz-box-sizing: border-box; /* firefox */
47
+ box-sizing: border-box; /* css3 */
48
+ }
49
+
50
+ .select2-container .select2-choice {
51
+ display: block;
52
+ height: 26px;
53
+ padding: 0 0 0 8px;
54
+ overflow: hidden;
55
+
56
+ @include simple-border();
57
+ @include border-radius(1);
58
+ white-space: nowrap;
59
+ line-height: 23px;
60
+ color: $textColor;
61
+ text-decoration: none;
62
+
63
+ background-clip: padding-box;
64
+
65
+ -webkit-touch-callout: none;
66
+ -webkit-user-select: none;
67
+ -moz-user-select: none;
68
+ -ms-user-select: none;
69
+ user-select: none;
70
+
71
+ background-color: $uiGeneralContentBg;
72
+ }
73
+
74
+ .select2-container.select2-drop-above .select2-choice {
75
+ }
76
+
77
+ .select2-container.select2-allowclear .select2-choice .select2-chosen {
78
+ margin-right: 42px;
79
+ }
80
+
81
+ .select2-container .select2-choice > .select2-chosen {
82
+ margin-right: 26px;
83
+ display: block;
84
+ overflow: hidden;
85
+
86
+ white-space: nowrap;
87
+
88
+ text-overflow: ellipsis;
89
+ }
90
+
91
+ .select2-container .select2-choice abbr {
92
+ display: none;
93
+ width: 12px;
94
+ height: 12px;
95
+ position: absolute;
96
+ right: 24px;
97
+ top: 8px;
98
+
99
+ font-size: 1px;
100
+ text-decoration: none;
101
+
102
+ border: 0;
103
+ background-position: right top;
104
+ cursor: pointer;
105
+ outline: 0;
106
+ }
107
+
108
+ .select2-container.select2-allowclear .select2-choice abbr {
109
+ display: inline-block;
110
+ top: 5px;
111
+ }
112
+
113
+ .select2-container .select2-choice abbr:hover {
114
+ background-position: right -11px;
115
+ cursor: pointer;
116
+ }
117
+
118
+ .select2-drop-mask {
119
+ border: 0;
120
+ margin: 0;
121
+ padding: 0;
122
+ position: fixed;
123
+ left: 0;
124
+ top: 0;
125
+ min-height: 100%;
126
+ min-width: 100%;
127
+ height: auto;
128
+ width: auto;
129
+ opacity: 0;
130
+ z-index: 109998;
131
+ /* styles required for IE to work */
132
+ background-color: $uiClickableDefaultBg;
133
+ filter: alpha(opacity=0);
134
+ }
135
+
136
+ .select2-drop {
137
+ width: 100%;
138
+ margin-top: -1px;
139
+ position: absolute;
140
+ z-index: 109999;
141
+ top: 100%;
142
+
143
+ background: $uiGeneralContentBg;
144
+ color: $textColor;
145
+ @include simple-border();
146
+ border-top: 0;
147
+
148
+ border-radius: 0 0 2px 2px;
149
+
150
+ &.rtl {
151
+ direction: rtl;
152
+ }
153
+ &.ltr {
154
+ direction: ltr;
155
+ }
156
+ }
157
+
158
+ .select2-drop-auto-width {
159
+ border-top: 1px solid $uiGeneralContentBorder;
160
+ width: auto;
161
+ }
162
+
163
+ .select2-drop-auto-width .select2-search {
164
+ padding-top: 4px;
165
+ }
166
+
167
+ .select2-drop.select2-drop-above {
168
+ margin-top: 1px;
169
+ border-top: 1px solid $uiGeneralContentBorder;
170
+ border-bottom: 0;
171
+
172
+ border-radius: 2px 2px 0 0;
173
+ }
174
+
175
+ .select2-drop-active {
176
+ @include simple-border();
177
+ border-top: none;
178
+ }
179
+
180
+ .select2-drop.select2-drop-above.select2-drop-active {
181
+ }
182
+
183
+ .select2-container .select2-choice .select2-arrow {
184
+ display: inline-block;
185
+ width: 18px;
186
+ height: 100%;
187
+ position: absolute;
188
+ right: 0;
189
+ top: 0;
190
+ background-clip: padding-box;
191
+ }
192
+
193
+ .select2-container .select2-choice .select2-arrow b {
194
+ display: block;
195
+ width: 100%;
196
+ height: 100%;
197
+ font-family: 'tao';
198
+ speak: none;
199
+ font-style: normal;
200
+ font-weight: normal;
201
+ font-variant: normal;
202
+ text-transform: none;
203
+ font-size: 1.05rem;
204
+ @include font-size(10.5);
205
+ line-height: 2.3;
206
+ text-align: center;
207
+ /* Better Font Rendering =========== */
208
+ -webkit-font-smoothing: antialiased;
209
+ -moz-osx-font-smoothing: grayscale;
210
+ &:before {
211
+ @include icon-down;
212
+ }
213
+ &:hover {
214
+ background-color: $uiClickableHoverBg;
215
+ color: $textHighlight;
216
+ }
217
+ }
218
+
219
+ .select2-search {
220
+ display: inline-block;
221
+ width: 100%;
222
+ min-height: 26px;
223
+ margin: 0;
224
+ padding: 4px 4px 0 4px;
225
+
226
+ position: relative;
227
+ z-index: 100000;
228
+
229
+ white-space: nowrap;
230
+ }
231
+
232
+ .select2-search input {
233
+ width: 100%;
234
+ height: auto !important;
235
+ min-height: 26px;
236
+ padding: 4px 20px 4px 5px;
237
+ margin: 0;
238
+
239
+ outline: 0;
240
+ font-family: sans-serif;
241
+ font-size: 1em;
242
+
243
+ border: 1px solid $uiGeneralContentBorder;
244
+ border-radius: 0;
245
+
246
+ -webkit-box-shadow: none;
247
+ box-shadow: none;
248
+
249
+ background-color: $uiGeneralContentBg;
250
+ background-position: 100% -22px;
251
+ }
252
+
253
+ .select2-drop.select2-drop-above .select2-search input {
254
+ margin-top: 4px;
255
+ }
256
+
257
+ .select2-search input.select2-active {
258
+ background: $uiGeneralContentBg
259
+ }
260
+
261
+ .select2-container-active .select2-choice,
262
+ .select2-container-active .select2-choices {
263
+ border: 1px solid $uiClickableActiveBg;
264
+ outline: none;
265
+ }
266
+
267
+ .select2-dropdown-open .select2-choice {
268
+ }
269
+
270
+ .select2-dropdown-open.select2-drop-above .select2-choice,
271
+ .select2-dropdown-open.select2-drop-above .select2-choices {
272
+ }
273
+
274
+ .select2-dropdown-open .select2-choice .select2-arrow {
275
+ background: transparent;
276
+ border-left: none;
277
+ filter: none;
278
+ }
279
+
280
+ .select2-dropdown-open .select2-choice .select2-arrow b {
281
+ background-position: -18px 1px;
282
+ }
283
+
284
+ /* results */
285
+ .select2-results {
286
+ max-height: 200px;
287
+ padding: 0 !important;
288
+ margin: 4px 0 4px 0;
289
+ position: relative;
290
+ overflow-x: hidden;
291
+ overflow-y: auto;
292
+ font-size: inherit
293
+ }
294
+
295
+ .select2-results ul.select2-result-sub {
296
+ margin: 0;
297
+ padding-left: 0;
298
+ }
299
+
300
+ .select2-results ul.select2-result-sub > li .select2-result-label {
301
+ padding-left: 20px
302
+ }
303
+
304
+ .select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
305
+ padding-left: 40px
306
+ }
307
+
308
+ .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
309
+ padding-left: 60px
310
+ }
311
+
312
+ .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
313
+ padding-left: 80px
314
+ }
315
+
316
+ .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
317
+ padding-left: 100px
318
+ }
319
+
320
+ .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
321
+ padding-left: 110px
322
+ }
323
+
324
+ .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
325
+ padding-left: 120px
326
+ }
327
+
328
+ .select2-results li {
329
+ list-style: none;
330
+ display: list-item;
331
+ background-image: none;
332
+ }
333
+
334
+ .select2-results li.select2-result-with-children > .select2-result-label {
335
+ font-weight: bold;
336
+ }
337
+
338
+ .select2-results .select2-result-label {
339
+ padding: 3px 7px 4px;
340
+ margin: 0;
341
+ cursor: pointer;
342
+
343
+ min-height: 1em;
344
+
345
+ -webkit-touch-callout: none;
346
+ -webkit-user-select: none;
347
+ -moz-user-select: none;
348
+ -ms-user-select: none;
349
+ user-select: none;
350
+ }
351
+
352
+ .select2-results .select2-highlighted {
353
+ background: $uiClickableHoverBg;
354
+ color: $textHighlight;
355
+ }
356
+
357
+ .select2-results li em {
358
+ background: $uiGeneralContentBg;
359
+ font-style: normal;
360
+ }
361
+
362
+ .select2-results .select2-highlighted em {
363
+ background: transparent;
364
+ }
365
+
366
+ .select2-results .select2-highlighted ul {
367
+ background: $uiGeneralContentBg;
368
+ color: $textColor;
369
+ }
370
+
371
+ .select2-results .select2-no-results,
372
+ .select2-results .select2-searching,
373
+ .select2-results .select2-selection-limit {
374
+ background: $uiClickableDefaultBg;
375
+ display: list-item;
376
+ }
377
+
378
+ .select2-results .select2-no-results {
379
+ padding-left: 7px;
380
+ }
381
+
382
+ .select2-hidden-accessible {
383
+ display: none;
384
+ }
385
+
386
+ /*
387
+ disabled look for disabled choices in the results dropdown
388
+ */
389
+ .select2-results .select2-disabled.select2-highlighted {
390
+ color: #999;
391
+ display: list-item;
392
+ cursor: default;
393
+ }
394
+
395
+ .select2-results .select2-disabled .select2-result-label {
396
+ cursor: default;
397
+ }
398
+
399
+ .select2-results .select2-disabled {
400
+ display: list-item;
401
+ cursor: default;
402
+ color: #999;
403
+ }
404
+
405
+ .select2-results .select2-selected {
406
+ display: none;
407
+ }
408
+
409
+ .select2-more-results.select2-active {
410
+ background: $uiClickableDefaultBg url('img/select2/select2-spinner.gif') no-repeat 100%;
411
+ }
412
+
413
+ .select2-more-results {
414
+ background: $uiClickableDefaultBg;
415
+ display: list-item;
416
+ }
417
+
418
+ /* disabled styles */
419
+
420
+ .select2-container.select2-container-disabled .select2-choice {
421
+ background-color: $uiClickableDefaultBg;
422
+ background-image: none;
423
+ border: 1px solid $uiGeneralContentBorder;
424
+ cursor: default;
425
+ }
426
+
427
+ .select2-container.select2-container-disabled .select2-choice .select2-arrow {
428
+ background-color: $uiClickableDefaultBg;
429
+ background-image: none;
430
+ border-left: 0;
431
+ }
432
+
433
+ .select2-container.select2-container-disabled .select2-choice abbr {
434
+ display: none;
435
+ }
436
+
437
+ /* multiselect */
438
+
439
+ .select2-container-multi .select2-choices {
440
+ height: auto !important;
441
+ height: 1%;
442
+ margin: 0;
443
+ padding: 0;
444
+ position: relative;
445
+
446
+ border: 1px solid $uiGeneralContentBorder;
447
+ cursor: text;
448
+ overflow: hidden;
449
+
450
+ background-color: $uiGeneralContentBg;
451
+ }
452
+
453
+ .select2-locked {
454
+ padding: 3px 5px 3px 5px !important;
455
+ }
456
+
457
+ .select2-container-multi .select2-choices {
458
+ min-height: 26px;
459
+ }
460
+
461
+ .select2-container-multi.select2-container-active .select2-choices {
462
+ border: 1px solid $uiGeneralContentBorder;
463
+ outline: none;
464
+
465
+ }
466
+
467
+ .select2-container-multi .select2-choices li {
468
+ float: left;
469
+ list-style: none;
470
+ }
471
+
472
+ .select2-container-multi .select2-choices .select2-search-field {
473
+ margin: 0;
474
+ padding: 0;
475
+ white-space: nowrap;
476
+ }
477
+
478
+ .select2-container-multi .select2-choices .select2-search-field input {
479
+ padding: 5px;
480
+ margin: 1px 0;
481
+
482
+ font-family: sans-serif;
483
+ font-size: 100%;
484
+ color: #666;
485
+ outline: 0;
486
+ border: 0;
487
+ -webkit-box-shadow: none;
488
+ box-shadow: none;
489
+ background: transparent !important;
490
+ }
491
+
492
+ .select2-container-multi .select2-choices .select2-search-field input.select2-active {
493
+ background: $uiGeneralContentBg url('img/select2/select2-spinner.gif') no-repeat 100% !important;
494
+ }
495
+
496
+ .select2-default {
497
+ color: #999 !important;
498
+ }
499
+
500
+ .select2-container-multi .select2-choices .select2-search-choice {
501
+ padding: 3px 5px 3px 18px;
502
+ margin: 3px 0 3px 5px;
503
+ position: relative;
504
+
505
+ line-height: 13px;
506
+ color: $textColor;
507
+ cursor: default;
508
+ border: 1px solid $uiGeneralContentBorder;
509
+
510
+ border-radius: 1px;
511
+
512
+ background-clip: padding-box;
513
+
514
+ -webkit-touch-callout: none;
515
+ -webkit-user-select: none;
516
+ -moz-user-select: none;
517
+ -ms-user-select: none;
518
+ user-select: none;
519
+
520
+ background-color: blacken($uiClickableDefaultBg, .1);
521
+
522
+ &.partial {
523
+ background-color: whiten($uiClickableDefaultBg, .6);
524
+ }
525
+ }
526
+
527
+ .select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
528
+ cursor: default;
529
+ }
530
+
531
+ .select2-container-multi .select2-choices .select2-search-choice-focus {
532
+ background: #d4d4d4;
533
+ }
534
+
535
+ .select2-search-choice-close {
536
+ display: block;
537
+ width: 12px;
538
+ height: 13px;
539
+ position: absolute;
540
+ right: 3px;
541
+ top: 4px;
542
+
543
+ font-size: 1px;
544
+ outline: none;
545
+ background-position: right top;
546
+ }
547
+
548
+ .select2-search-choice-close,
549
+ .select2-container .select2-choice abbr,
550
+ .select2-search input {
551
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAoCAYAAACiu5n/AAACLElEQVR42u3Zz0sUYRzH8bUISoyF1i5iXSooyYgOEXapZNYNojwU/aAfUAT9A4YhUgdxt1To0KFIBCMIvEcUEXntUtivpYuUhYFIdDBMmD69he/hObgsbSnb13ngdZjZhX3eO8/MDrMpSctKErwsg//HUSgU7uNYsB3hHla4CybqEoRPaMJGFCEMewxuxnsIk5iALPqg1yVdj9eQGUdjiuE1eAs+QOYztrsMJqwFk8EyHguW95klD+ZD08gsYvBFCBPYgHXBOT1UNpg3ncQpnAicRbrCCQ3j8SIf5QvYEWxvxnlb0mWDr0MIvcOaCiayC78gRKmlH+WDbaIjkJnDzgq/+VHIvMWqag3ehBkIAxXGdkAIDVRlsE24H9//4ty9hju4Hej710c5m83WYging32HMYjMnwSvx75UlQ+iOiDEaEMLZiA8dPc7TFQDnkGYxQ8Iz9Hs8k4riqIa4l5ApojVbm8tiduPL5CZRs5lMGFH8DNYxo+C5d3tMfgohJeow0qMQujxuqRb0RBsZ3DA2ZIuP5LgJDgJToKr4ZHOWjTOy+fzNa6DiezCFGReod1lMGF3IYzjMm5B5rirYIJyEJ4iHezfjW+YRr2n4EHE2LrAa1cg5DwFj2DWLlKljn67p+B+CIdKPAaOsddTcBOEKbTZvjp0Qvjo8Sp9DjJFfIVMjBsef4f34AHeYAxX0VfqMbDnfw97IXMTta6DLbobcxBa3Qdb9BPE2LZQ8G98530ecQi/2QAAAABJRU5ErkJggg==);
552
+ background-repeat: no-repeat;
553
+ min-width: inherit;
554
+ }
555
+
556
+ .select2-container-multi .select2-search-choice-close {
557
+ left: 3px;
558
+ }
559
+
560
+ .select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
561
+ background-position: right -11px;
562
+ }
563
+
564
+ .select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
565
+ background-position: right -11px;
566
+ }
567
+
568
+ /* disabled styles */
569
+ .select2-container-multi.select2-container-disabled .select2-choices {
570
+ background-color: $uiClickableDefaultBg;
571
+ background-image: none;
572
+ border: 1px solid $uiGeneralContentBorder;
573
+ cursor: default;
574
+ }
575
+
576
+ .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
577
+ padding: 3px 5px 3px 5px;
578
+ border: 1px solid $uiGeneralContentBorder;
579
+ background-image: none;
580
+ background-color: $uiClickableDefaultBg;
581
+ }
582
+
583
+ .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
584
+ display: none;
585
+ background: none;
586
+ }
587
+
588
+ /* end multiselect */
589
+
590
+ .select2-offscreen, .select2-offscreen:focus {
591
+ clip: rect(0 0 0 0) !important;
592
+ width: 1px !important;
593
+ height: 1px !important;
594
+ border: 0 !important;
595
+ margin: 0 !important;
596
+ padding: 0 !important;
597
+ overflow: hidden !important;
598
+ position: fixed !important;
599
+ outline: 0 !important;
600
+ left: 0px !important;
601
+ top: 0px !important;
602
+ }
603
+
604
+ .select2-display-none {
605
+ display: none;
606
+ }
607
+
608
+ .select2-measure-scrollbar {
609
+ position: absolute;
610
+ top: -10000px;
611
+ left: -10000px;
612
+ width: 100px;
613
+ height: 100px;
614
+ overflow: scroll;
615
+ }
616
+
617
+ .form_radlst[disabled] {
618
+ .select2-container {
619
+ pointer-events: none;
620
+ cursor: default;
621
+ color: $textColor;
622
+ opacity: .55 !important;
623
+
624
+ .select2-search-field,
625
+ .select2-search-choice-close,
626
+ .select2-arrow {
627
+ display: none;
628
+ }
629
+ .select2-search-choice {
630
+ cursor: default;
631
+ padding-left: 5px;
632
+ }
633
+ }
634
+ }