@syncfusion/ej2-dropdowns 27.2.5 → 28.1.35

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 (224) hide show
  1. package/README.md +2 -2
  2. package/dist/ej2-dropdowns.min.js +3 -3
  3. package/dist/ej2-dropdowns.umd.min.js +3 -3
  4. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-dropdowns.es2015.js +511 -40
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +510 -38
  8. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  9. package/dist/global/ej2-dropdowns.min.js +3 -3
  10. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  11. package/dist/global/index.d.ts +2 -2
  12. package/package.json +13 -13
  13. package/src/auto-complete/auto-complete.js +5 -2
  14. package/src/combo-box/combo-box.js +2 -1
  15. package/src/common/incremental-search.d.ts +1 -1
  16. package/src/common/incremental-search.js +5 -1
  17. package/src/common/virtual-scroll.js +2 -1
  18. package/src/drop-down-base/drop-down-base.js +14 -2
  19. package/src/drop-down-list/drop-down-list-model.d.ts +31 -0
  20. package/src/drop-down-list/drop-down-list.d.ts +45 -1
  21. package/src/drop-down-list/drop-down-list.js +213 -13
  22. package/src/drop-down-tree/drop-down-tree.d.ts +1 -0
  23. package/src/drop-down-tree/drop-down-tree.js +4 -3
  24. package/src/list-box/list-box.d.ts +4 -0
  25. package/src/list-box/list-box.js +9 -4
  26. package/src/mention/mention.js +6 -1
  27. package/src/multi-select/multi-select-model.d.ts +31 -0
  28. package/src/multi-select/multi-select.d.ts +45 -0
  29. package/src/multi-select/multi-select.js +250 -10
  30. package/styles/auto-complete/_tailwind3-definition.scss +2 -0
  31. package/styles/auto-complete/bds.css +75 -0
  32. package/styles/auto-complete/bds.scss +4 -0
  33. package/styles/auto-complete/highcontrast.css +1 -1
  34. package/styles/auto-complete/tailwind3.css +101 -0
  35. package/styles/auto-complete/tailwind3.scss +4 -0
  36. package/styles/bds-lite.css +3013 -0
  37. package/styles/bds-lite.scss +28 -0
  38. package/styles/bds.css +3855 -0
  39. package/styles/bds.scss +33 -0
  40. package/styles/bootstrap-dark-lite.css +41 -2
  41. package/styles/bootstrap-dark.css +41 -2
  42. package/styles/bootstrap-lite.css +30 -1
  43. package/styles/bootstrap.css +30 -1
  44. package/styles/bootstrap4-lite.css +30 -0
  45. package/styles/bootstrap4.css +30 -0
  46. package/styles/bootstrap5-dark-lite.css +31 -0
  47. package/styles/bootstrap5-dark.css +31 -0
  48. package/styles/bootstrap5-lite.css +31 -0
  49. package/styles/bootstrap5.3-lite.css +31 -3
  50. package/styles/bootstrap5.3.css +31 -3
  51. package/styles/bootstrap5.css +31 -0
  52. package/styles/combo-box/_tailwind3-definition.scss +2 -0
  53. package/styles/combo-box/bds.css +75 -0
  54. package/styles/combo-box/bds.scss +4 -0
  55. package/styles/combo-box/highcontrast.css +1 -1
  56. package/styles/combo-box/tailwind3.css +101 -0
  57. package/styles/combo-box/tailwind3.scss +4 -0
  58. package/styles/drop-down-base/_bigger.scss +3 -0
  59. package/styles/drop-down-base/_layout.scss +7 -0
  60. package/styles/drop-down-base/_tailwind3-definition.scss +98 -0
  61. package/styles/drop-down-base/bds.css +496 -0
  62. package/styles/drop-down-base/bds.scss +4 -0
  63. package/styles/drop-down-base/bootstrap-dark.css +4 -0
  64. package/styles/drop-down-base/bootstrap.css +4 -0
  65. package/styles/drop-down-base/bootstrap4.css +4 -0
  66. package/styles/drop-down-base/bootstrap5-dark.css +4 -0
  67. package/styles/drop-down-base/bootstrap5.3.css +4 -0
  68. package/styles/drop-down-base/bootstrap5.css +4 -0
  69. package/styles/drop-down-base/fabric-dark.css +4 -0
  70. package/styles/drop-down-base/fabric.css +4 -0
  71. package/styles/drop-down-base/fluent-dark.css +4 -0
  72. package/styles/drop-down-base/fluent.css +4 -0
  73. package/styles/drop-down-base/fluent2.css +9 -5
  74. package/styles/drop-down-base/highcontrast-light.css +4 -0
  75. package/styles/drop-down-base/highcontrast.css +4 -0
  76. package/styles/drop-down-base/material-dark.css +4 -0
  77. package/styles/drop-down-base/material.css +4 -0
  78. package/styles/drop-down-base/material3-dark.css +4 -0
  79. package/styles/drop-down-base/material3.css +4 -0
  80. package/styles/drop-down-base/tailwind-dark.css +4 -0
  81. package/styles/drop-down-base/tailwind.css +4 -0
  82. package/styles/drop-down-base/tailwind3.css +392 -0
  83. package/styles/drop-down-base/tailwind3.scss +4 -0
  84. package/styles/drop-down-list/_highcontrast-definition.scss +1 -1
  85. package/styles/drop-down-list/_layout.scss +18 -2
  86. package/styles/drop-down-list/_tailwind3-definition.scss +135 -0
  87. package/styles/drop-down-list/_theme.scss +3 -1
  88. package/styles/drop-down-list/bds.css +609 -0
  89. package/styles/drop-down-list/bds.scss +10 -0
  90. package/styles/drop-down-list/bootstrap-dark.css +18 -1
  91. package/styles/drop-down-list/bootstrap.css +13 -1
  92. package/styles/drop-down-list/bootstrap4.css +13 -0
  93. package/styles/drop-down-list/bootstrap5-dark.css +13 -0
  94. package/styles/drop-down-list/bootstrap5.3.css +13 -0
  95. package/styles/drop-down-list/bootstrap5.css +13 -0
  96. package/styles/drop-down-list/fabric-dark.css +18 -1
  97. package/styles/drop-down-list/fabric.css +13 -1
  98. package/styles/drop-down-list/fluent-dark.css +13 -1
  99. package/styles/drop-down-list/fluent.css +13 -1
  100. package/styles/drop-down-list/fluent2.css +13 -1
  101. package/styles/drop-down-list/highcontrast-light.css +9 -1
  102. package/styles/drop-down-list/highcontrast.css +19 -1
  103. package/styles/drop-down-list/icons/_bootstrap-dark.scss +4 -0
  104. package/styles/drop-down-list/icons/_bootstrap.scss +4 -0
  105. package/styles/drop-down-list/icons/_bootstrap4.scss +4 -0
  106. package/styles/drop-down-list/icons/_bootstrap5.3.scss +4 -0
  107. package/styles/drop-down-list/icons/_bootstrap5.scss +4 -0
  108. package/styles/drop-down-list/icons/_fabric-dark.scss +4 -0
  109. package/styles/drop-down-list/icons/_fabric.scss +4 -0
  110. package/styles/drop-down-list/icons/_fluent.scss +4 -0
  111. package/styles/drop-down-list/icons/_fluent2.scss +4 -0
  112. package/styles/drop-down-list/icons/_highcontrast.scss +4 -0
  113. package/styles/drop-down-list/icons/_material-dark.scss +4 -0
  114. package/styles/drop-down-list/icons/_material.scss +4 -0
  115. package/styles/drop-down-list/icons/_material3.scss +4 -0
  116. package/styles/drop-down-list/icons/_tailwind.scss +4 -0
  117. package/styles/drop-down-list/icons/_tailwind3.scss +14 -0
  118. package/styles/drop-down-list/material-dark.css +18 -1
  119. package/styles/drop-down-list/material.css +13 -1
  120. package/styles/drop-down-list/material3-dark.css +13 -1
  121. package/styles/drop-down-list/material3.css +13 -1
  122. package/styles/drop-down-list/tailwind-dark.css +13 -1
  123. package/styles/drop-down-list/tailwind.css +13 -1
  124. package/styles/drop-down-list/tailwind3.css +456 -0
  125. package/styles/drop-down-list/tailwind3.scss +10 -0
  126. package/styles/drop-down-tree/_bigger.scss +41 -7
  127. package/styles/drop-down-tree/_layout.scss +34 -10
  128. package/styles/drop-down-tree/_tailwind3-definition.scss +67 -0
  129. package/styles/drop-down-tree/_theme.scss +3 -3
  130. package/styles/drop-down-tree/bds.css +712 -0
  131. package/styles/drop-down-tree/bds.scss +10 -0
  132. package/styles/drop-down-tree/bootstrap5.3.css +0 -3
  133. package/styles/drop-down-tree/icons/_tailwind3.scss +11 -0
  134. package/styles/drop-down-tree/tailwind3.css +512 -0
  135. package/styles/drop-down-tree/tailwind3.scss +10 -0
  136. package/styles/fabric-dark-lite.css +40 -1
  137. package/styles/fabric-dark.css +40 -1
  138. package/styles/fabric-lite.css +30 -1
  139. package/styles/fabric.css +30 -1
  140. package/styles/fluent-dark-lite.css +31 -1
  141. package/styles/fluent-dark.css +31 -1
  142. package/styles/fluent-lite.css +31 -1
  143. package/styles/fluent.css +31 -1
  144. package/styles/fluent2-lite.css +45 -12
  145. package/styles/fluent2.css +45 -12
  146. package/styles/highcontrast-light-lite.css +22 -1
  147. package/styles/highcontrast-light.css +22 -1
  148. package/styles/highcontrast-lite.css +41 -1
  149. package/styles/highcontrast.css +41 -1
  150. package/styles/list-box/_bigger.scss +18 -1
  151. package/styles/list-box/_layout.scss +29 -3
  152. package/styles/list-box/_tailwind3-definition.scss +123 -0
  153. package/styles/list-box/_theme.scss +11 -0
  154. package/styles/list-box/bds.css +971 -0
  155. package/styles/list-box/bds.scss +6 -0
  156. package/styles/list-box/fluent2.css +1 -1
  157. package/styles/list-box/icons/_tailwind3.scss +25 -0
  158. package/styles/list-box/tailwind3.css +991 -0
  159. package/styles/list-box/tailwind3.scss +6 -0
  160. package/styles/material-dark-lite.css +40 -1
  161. package/styles/material-dark.css +40 -1
  162. package/styles/material-lite.css +30 -1
  163. package/styles/material.css +30 -1
  164. package/styles/material3-dark-lite.css +32 -5
  165. package/styles/material3-dark.css +32 -5
  166. package/styles/material3-lite.css +32 -5
  167. package/styles/material3.css +32 -5
  168. package/styles/mention/_tailwind3-definition.scss +1 -0
  169. package/styles/mention/bds.css +78 -0
  170. package/styles/mention/bds.scss +6 -0
  171. package/styles/mention/tailwind3.css +67 -0
  172. package/styles/mention/tailwind3.scss +6 -0
  173. package/styles/multi-select/_bigger.scss +2 -2
  174. package/styles/multi-select/_bootstrap-dark-definition.scss +1 -1
  175. package/styles/multi-select/_layout.scss +28 -5
  176. package/styles/multi-select/_material3-definition.scss +1 -1
  177. package/styles/multi-select/_tailwind3-definition.scss +227 -0
  178. package/styles/multi-select/_theme.scss +1 -1
  179. package/styles/multi-select/bds.css +1575 -0
  180. package/styles/multi-select/bds.scss +10 -0
  181. package/styles/multi-select/bootstrap-dark.css +19 -1
  182. package/styles/multi-select/bootstrap.css +13 -0
  183. package/styles/multi-select/bootstrap4.css +13 -0
  184. package/styles/multi-select/bootstrap5-dark.css +14 -0
  185. package/styles/multi-select/bootstrap5.3.css +14 -0
  186. package/styles/multi-select/bootstrap5.css +14 -0
  187. package/styles/multi-select/fabric-dark.css +18 -0
  188. package/styles/multi-select/fabric.css +13 -0
  189. package/styles/multi-select/fluent-dark.css +14 -0
  190. package/styles/multi-select/fluent.css +14 -0
  191. package/styles/multi-select/fluent2.css +22 -5
  192. package/styles/multi-select/highcontrast-light.css +9 -0
  193. package/styles/multi-select/highcontrast.css +18 -0
  194. package/styles/multi-select/icons/_bootstrap-dark.scss +4 -0
  195. package/styles/multi-select/icons/_bootstrap.scss +4 -0
  196. package/styles/multi-select/icons/_bootstrap4.scss +4 -0
  197. package/styles/multi-select/icons/_bootstrap5.3.scss +4 -0
  198. package/styles/multi-select/icons/_bootstrap5.scss +4 -0
  199. package/styles/multi-select/icons/_fabric-dark.scss +4 -0
  200. package/styles/multi-select/icons/_fabric.scss +4 -0
  201. package/styles/multi-select/icons/_fluent.scss +4 -0
  202. package/styles/multi-select/icons/_fluent2.scss +4 -0
  203. package/styles/multi-select/icons/_highcontrast.scss +4 -0
  204. package/styles/multi-select/icons/_material-dark.scss +4 -0
  205. package/styles/multi-select/icons/_material.scss +4 -0
  206. package/styles/multi-select/icons/_material3.scss +4 -0
  207. package/styles/multi-select/icons/_tailwind.scss +4 -0
  208. package/styles/multi-select/icons/_tailwind3.scss +26 -0
  209. package/styles/multi-select/material-dark.css +18 -0
  210. package/styles/multi-select/material.css +13 -0
  211. package/styles/multi-select/material3-dark.css +15 -4
  212. package/styles/multi-select/material3.css +15 -4
  213. package/styles/multi-select/tailwind-dark.css +13 -0
  214. package/styles/multi-select/tailwind.css +13 -0
  215. package/styles/multi-select/tailwind3.css +1398 -0
  216. package/styles/multi-select/tailwind3.scss +10 -0
  217. package/styles/tailwind-dark-lite.css +30 -1
  218. package/styles/tailwind-dark.css +30 -1
  219. package/styles/tailwind-lite.css +30 -1
  220. package/styles/tailwind.css +30 -1
  221. package/styles/tailwind3-lite.css +2890 -0
  222. package/styles/tailwind3-lite.scss +28 -0
  223. package/styles/tailwind3.css +3551 -0
  224. package/styles/tailwind3.scss +33 -0
@@ -0,0 +1,609 @@
1
+
2
+
3
+
4
+
5
+ /* stylelint-disable property-no-vendor-prefix */
6
+ /* stylelint-disable */
7
+ .e-input:focus:not(.e-success):not(.e-warning).e-error,
8
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
9
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
10
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
11
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
12
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input,
13
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input {
14
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
15
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
16
+ }
17
+
18
+ .e-input:focus:not(.e-error):not(.e-warning).e-success,
19
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
20
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
21
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
22
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
23
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input,
24
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input {
25
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
26
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
27
+ }
28
+
29
+ .e-input:focus:not(.e-success):not(.e-error).e-warning,
30
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
31
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
32
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
33
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
34
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input,
35
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input {
36
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
37
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
38
+ }
39
+
40
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning).e-error,
41
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning).e-error {
42
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
43
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
44
+ }
45
+
46
+ .e-input-group.e-input-focus:not(.e-error):not(.e-warning).e-success,
47
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-error):not(.e-warning).e-success {
48
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
49
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
50
+ }
51
+
52
+ .e-input-group.e-input-focus:not(.e-success):not(.e-error).e-warning,
53
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-error).e-warning {
54
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
55
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
56
+ }
57
+
58
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error,
59
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error {
60
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
61
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(240, 68, 55, 0.24) !important;
62
+ }
63
+
64
+ .e-input-group:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success,
65
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success {
66
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
67
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(23, 177, 105, 0.24) !important;
68
+ }
69
+
70
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning,
71
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning {
72
+ -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
73
+ box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(247, 143, 8, 0.24) !important;
74
+ }
75
+
76
+ .e-float-input.e-error label.e-float-text,
77
+ .e-float-input.e-control-wrapper.e-error label.e-float-text,
78
+ .e-float-input.e-error input:focus ~ label.e-float-text,
79
+ .e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
80
+ .e-float-input.e-error.e-input-focus input ~ label.e-float-text,
81
+ .e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
82
+ .e-float-input.e-error textarea:focus ~ label.e-float-text,
83
+ .e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text {
84
+ color: var(--color-sf-utility-danger) !important;
85
+ }
86
+
87
+ .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
88
+ .e-outline.e-float-input.e-input-group.e-error.e-valid-input label.e-label-top.e-float-text,
89
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input:focus ~ label.e-float-text,
90
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
91
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input:focus ~ label.e-float-text,
92
+ .e-small .e-outline.e-float-input.e-error input:focus ~ label.e-float-text,
93
+ .e-outline.e-float-input.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
94
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
95
+ .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
96
+ .e-outline.e-float-input.e-bigger.e-error textarea:focus ~ label.e-float-text,
97
+ .e-bigger .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
98
+ .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
99
+ .e-small .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
100
+ .e-outline.e-float-input.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
101
+ .e-bigger .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
102
+ .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
103
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error input:focus ~ label.e-float-text,
104
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
105
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
106
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
107
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
108
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
109
+ .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
110
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error textarea:focus ~ label.e-float-text,
111
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
112
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
113
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
114
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
115
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
116
+ .e-outline.e-float-input.e-error label.e-float-text.e-label-top,
117
+ .e-outline.e-float-input.e-input-group.e-error label.e-float-text.e-label-top,
118
+ .e-outline.e-float-input.e-control-wrapper.e-error label.e-float-text.e-label-top,
119
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
120
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-error:not(.e-input-focus) input:focus ~ label.e-float-text.e-label-top,
121
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
122
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-error:not(.e-input-focus) textarea:focus ~ label.e-float-text.e-label-top,
123
+ .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
124
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
125
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
126
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input ~ label.e-float-text,
127
+ .e-small .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
128
+ .e-outline.e-float-input.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
129
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
130
+ .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
131
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
132
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
133
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text,
134
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
135
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
136
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text {
137
+ color: var(--color-sf-utility-danger) !important;
138
+ }
139
+
140
+ .e-filled.e-float-input.e-error label.e-float-text,
141
+ .e-filled.e-float-input.e-control-wrapper.e-error label.e-float-text,
142
+ .e-filled.e-float-input.e-error input:focus ~ label.e-float-text,
143
+ .e-filled.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
144
+ .e-filled.e-float-input.e-error textarea:focus ~ label.e-float-text,
145
+ .e-filled.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
146
+ .e-filled.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
147
+ .e-filled.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text {
148
+ color: var(--color-sf-utility-danger) !important;
149
+ }
150
+
151
+ /* stylelint-disable-line no-empty-source */
152
+ /* stylelint-disable property-no-vendor-prefix */
153
+ @-webkit-keyframes material-spinner-rotate {
154
+ 0% {
155
+ -webkit-transform: rotate(0);
156
+ transform: rotate(0);
157
+ }
158
+ 100% {
159
+ -webkit-transform: rotate(360deg);
160
+ transform: rotate(360deg);
161
+ }
162
+ }
163
+ @keyframes material-spinner-rotate {
164
+ 0% {
165
+ -webkit-transform: rotate(0);
166
+ transform: rotate(0);
167
+ }
168
+ 100% {
169
+ -webkit-transform: rotate(360deg);
170
+ transform: rotate(360deg);
171
+ }
172
+ }
173
+ @-webkit-keyframes fabric-spinner-rotate {
174
+ 0% {
175
+ -webkit-transform: rotate(0);
176
+ transform: rotate(0);
177
+ }
178
+ 100% {
179
+ -webkit-transform: rotate(360deg);
180
+ transform: rotate(360deg);
181
+ }
182
+ }
183
+ @keyframes fabric-spinner-rotate {
184
+ 0% {
185
+ -webkit-transform: rotate(0);
186
+ transform: rotate(0);
187
+ }
188
+ 100% {
189
+ -webkit-transform: rotate(360deg);
190
+ transform: rotate(360deg);
191
+ }
192
+ }
193
+ .e-dropdownbase .e-list-item.e-active,
194
+ .e-dropdownbase .e-list-item.e-active.e-hover {
195
+ font-weight: 500;
196
+ }
197
+
198
+ .e-dropdownbase .e-list-group-item,
199
+ .e-fixed-head {
200
+ font-size: 12px;
201
+ text-transform: uppercase;
202
+ }
203
+
204
+ .e-small .e-dropdownbase .e-list-group-item,
205
+ .e-small .e-fixed-head,
206
+ .e-small.e-dropdownbase .e-list-group-item,
207
+ .e-small.e-fixed-head {
208
+ font-size: 10px;
209
+ }
210
+
211
+ .e-dropdownbase .e-list-item .e-list-icon {
212
+ padding: 0 8px 0 0;
213
+ }
214
+
215
+ .e-small .e-dropdownbase .e-list-item .e-list-icon {
216
+ padding: 0 4px 0 0;
217
+ }
218
+
219
+ /* stylelint-disable */
220
+ .e-dropdownbase .e-list-item {
221
+ border-radius: 6px !important;
222
+ }
223
+
224
+ .e-ddl.e-control-wrapper .e-ddl-icon::before {
225
+ -webkit-transform: rotate(0deg);
226
+ transform: rotate(0deg);
227
+ -webkit-transition: -webkit-transform 300ms ease;
228
+ transition: -webkit-transform 300ms ease;
229
+ transition: transform 300ms ease;
230
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
231
+ }
232
+
233
+ .e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
234
+ -webkit-transform: rotate(180deg);
235
+ transform: rotate(180deg);
236
+ -webkit-transition: -webkit-transform 300ms ease;
237
+ transition: -webkit-transform 300ms ease;
238
+ transition: transform 300ms ease;
239
+ transition: transform 300ms ease, -webkit-transform 300ms ease;
240
+ }
241
+
242
+ .e-dropdownbase .e-list-item.e-active.e-hover {
243
+ color: var(--color-sf-text-primary);
244
+ }
245
+
246
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
247
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
248
+ .e-input-group:not(.e-disabled) .e-back-icon:active,
249
+ .e-input-group:not(.e-disabled) .e-back-icon:hover,
250
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:active,
251
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:hover {
252
+ background: transparent;
253
+ }
254
+
255
+ .e-input-group .e-ddl-icon:not(:active)::after {
256
+ -webkit-animation: none;
257
+ animation: none;
258
+ }
259
+
260
+ .e-ddl.e-popup {
261
+ border: 0;
262
+ border-radius: 8px;
263
+ -webkit-box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.05);
264
+ box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.05);
265
+ margin-top: 4px;
266
+ }
267
+
268
+ .e-small .e-ddl.e-popup,
269
+ .e-small.e-ddl.e-popup {
270
+ border-radius: 4px;
271
+ margin-top: 2px;
272
+ }
273
+
274
+ .e-popup.e-ddl .e-dropdownbase {
275
+ min-height: 26px;
276
+ padding: 4px 6px;
277
+ }
278
+
279
+ .e-input-group.e-ddl,
280
+ .e-input-group.e-ddl .e-input,
281
+ .e-input-group.e-ddl .e-ddl-icon {
282
+ background: var(--color-sf-bg-primary);
283
+ }
284
+
285
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group:hover:not(.e-disabled):not(.e-float-icon-left),
286
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group.e-control-wrapper:hover:not(.e-disabled):not(.e-float-icon-left) {
287
+ border-bottom-width: 0;
288
+ }
289
+
290
+ .e-ddl.e-popup.e-outline .e-filter-parent {
291
+ padding: 4px 8px;
292
+ }
293
+
294
+ .e-ddl .e-search-icon::before {
295
+ content: "\e754";
296
+ }
297
+
298
+ .e-ddl .e-back-icon::before {
299
+ content: "\e773";
300
+ }
301
+
302
+ .e-ddl.e-input-group.e-control-wrapper .e-ddl-icon::before {
303
+ content: "\e729";
304
+ font-family: "e-icons";
305
+ }
306
+
307
+ .e-popup.e-wide-popup.e-ddl-device.e-popup-close {
308
+ display: block;
309
+ visibility: hidden;
310
+ }
311
+
312
+ .e-popup-full-page {
313
+ bottom: 0;
314
+ left: 0;
315
+ margin: 0;
316
+ overflow: hidden;
317
+ padding: 0;
318
+ right: 0;
319
+ top: 0;
320
+ }
321
+ .e-popup-full-page .e-popup-full-page.e-ddl.e-popup.e-ddl-device-filter {
322
+ margin: 0;
323
+ }
324
+
325
+ .e-ddl.e-control-wrapper .e-ddl-disable-icon {
326
+ position: relative;
327
+ }
328
+
329
+ .e-ddl.e-control-wrapper .e-ddl-disable-icon::before {
330
+ content: "";
331
+ }
332
+
333
+ .e-ddl-device-filter .e-filter-parent {
334
+ background-color: var(--color-sf-bg-primary-alt);
335
+ }
336
+
337
+ /* stylelint-disable property-no-vendor-prefix */
338
+ .e-ddl input.e-input::-webkit-contacts-auto-fill-button {
339
+ display: none;
340
+ pointer-events: none;
341
+ position: absolute;
342
+ right: 0;
343
+ visibility: hidden;
344
+ }
345
+
346
+ /* stylelint-enable property-no-vendor-prefix */
347
+ .e-filter-parent {
348
+ border: 0;
349
+ border-top-width: 0;
350
+ -webkit-box-shadow: 0 1.5px 5px -2px rgba(0, 0, 0, 0.3);
351
+ box-shadow: 0 1.5px 5px -2px rgba(0, 0, 0, 0.3);
352
+ display: block;
353
+ padding: 6px;
354
+ }
355
+
356
+ .e-ddl.e-input-group:not(.e-disabled) {
357
+ cursor: pointer;
358
+ }
359
+
360
+ .e-ddl.e-popup.e-ddl-device-filter .e-input-group.e-input-focus::before, .e-ddl.e-popup.e-ddl-device-filter .e-input-group.e-input-focus::after {
361
+ width: 0;
362
+ }
363
+
364
+ .e-ddl.e-popup {
365
+ background: var(--color-sf-bg-primary-alt);
366
+ border: 1px solid var(--color-sf-border-secondary);
367
+ position: absolute;
368
+ }
369
+ .e-ddl.e-popup .e-search-icon {
370
+ margin: 0;
371
+ opacity: 0.57;
372
+ padding: 12px 8px 8px;
373
+ }
374
+
375
+ .e-ddl.e-popup .e-filter-parent .e-back-icon {
376
+ padding: 0 8px;
377
+ }
378
+
379
+ .e-ddl.e-popup .e-input-group {
380
+ margin-bottom: 0;
381
+ }
382
+
383
+ .e-ddl.e-popup .e-ddl-footer, .e-ddl.e-popup .e-ddl-header {
384
+ cursor: default;
385
+ }
386
+
387
+ /* stylelint-disable property-no-vendor-prefix */
388
+ .e-ddl.e-input-group .e-ddl-hidden,
389
+ .e-ddl.e-float-input .e-ddl-hidden {
390
+ -webkit-appearance: initial;
391
+ border: 0;
392
+ height: 0;
393
+ padding: 0;
394
+ visibility: hidden;
395
+ width: 0;
396
+ }
397
+
398
+ .e-ddl.e-input-group,
399
+ .e-ddl.e-input-group.e-input-focus:focus {
400
+ outline: none;
401
+ }
402
+
403
+ .e-dropdownbase .e-list-item .e-highlight {
404
+ display: inline;
405
+ font-weight: bold;
406
+ vertical-align: baseline;
407
+ }
408
+
409
+ .e-ddl.e-input-group input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide),
410
+ .e-float-input input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide),
411
+ .e-float-input.e-input-group input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide) {
412
+ opacity: 1;
413
+ }
414
+
415
+ .e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon,
416
+ .e-input-group input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon,
417
+ .e-input-group.e-control-wrapper input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon,
418
+ .e-float-input input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon,
419
+ .e-float-input.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon,
420
+ .e-float-input.e-input-group input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon,
421
+ .e-float-input.e-input-group.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon {
422
+ display: -webkit-box;
423
+ display: -ms-flexbox;
424
+ display: flex;
425
+ }
426
+
427
+ .e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
428
+ .e-input-group input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
429
+ .e-input-group.e-control-wrapper input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
430
+ .e-float-input input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
431
+ .e-float-input.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
432
+ .e-float-input.e-input-group input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
433
+ .e-float-input.e-input-group.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide {
434
+ display: none;
435
+ }
436
+
437
+ .e-input-group.e-static-clear input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
438
+ .e-input-group.e-static-clear.e-control-wrapper input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
439
+ .e-float-input.e-static-clear input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
440
+ .e-float-input.e-static-clear.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
441
+ .e-float-input.e-static-clear.e-input-group input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
442
+ .e-float-input.e-static-clear.e-input-group.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide {
443
+ cursor: pointer;
444
+ display: -webkit-box;
445
+ display: -ms-flexbox;
446
+ display: flex;
447
+ }
448
+
449
+ .e-ddl.e-input-group .e-input-value,
450
+ .e-ddl.e-input-group .e-input-value:focus {
451
+ font-family: inherit;
452
+ font-size: 14px;
453
+ height: auto;
454
+ margin: 0;
455
+ outline: none;
456
+ width: 100%;
457
+ overflow: hidden;
458
+ }
459
+ .e-ddl.e-input-group input[readonly].e-input,
460
+ .e-ddl.e-input-group input[readonly],
461
+ .e-ddl.e-input-group .e-dropdownlist {
462
+ pointer-events: none;
463
+ }
464
+
465
+ .e-ddl.e-popup.e-popup-open .e-list-item.e-disabled {
466
+ opacity: 0.7;
467
+ pointer-events: none;
468
+ }
469
+
470
+ ejs-autocomplete,
471
+ ejs-combobox,
472
+ ejs-dropdownlist {
473
+ display: block;
474
+ }
475
+
476
+ .e-small .e-ddl.e-popup .e-list-item,
477
+ .e-input-group.e-ddl.e-small .e-list-item {
478
+ font-size: 12px;
479
+ }
480
+ .e-small.e-ddl.e-popup .e-list-item,
481
+ .e-input-group.e-ddl.e-small .e-list-item {
482
+ font-size: 12px;
483
+ }
484
+ .e-content-placeholder.e-ddl.e-placeholder-ddl,
485
+ .e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
486
+ .e-content-placeholder.e-combobox.e-placeholder-combobox {
487
+ background-size: 300px 33px;
488
+ min-height: 33px;
489
+ }
490
+
491
+ .e-ddl.e-popup.e-resize .e-resizer-right {
492
+ bottom: 0;
493
+ right: 0;
494
+ cursor: nwse-resize;
495
+ height: 15px;
496
+ position: absolute;
497
+ width: 15px;
498
+ }
499
+
500
+ .e-popup {
501
+ border-color: var(--color-sf-border-secondary);
502
+ }
503
+
504
+ .e-float-input.e-input-group.e-ddl.e-control.e-icon-anim > .e-float-text,
505
+ .e-float-input.e-input-focus.e-input-group.e-ddl.e-control.e-keyboard > .e-float-text {
506
+ color: var(--color-sf-text-primary);
507
+ }
508
+
509
+ .e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
510
+ border-color: transparent;
511
+ }
512
+
513
+ .e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
514
+ margin-left: -20px;
515
+ }
516
+
517
+ .e-bigger .e-ddl.e-popup .e-list-item {
518
+ font-size: 16px;
519
+ }
520
+ .e-bigger.e-ddl.e-popup .e-list-item {
521
+ font-size: 16px;
522
+ }
523
+ .e-bigger.e-small .e-ddl.e-popup .e-list-item,
524
+ .e-bigger .e-input-group.e-ddl.e-small .e-list-item {
525
+ font-size: 14px;
526
+ }
527
+ .e-bigger.e-small.e-ddl.e-popup .e-list-item,
528
+ .e-bigger .e-input-group.e-ddl.e-small .e-list-item {
529
+ font-size: 14px;
530
+ }
531
+ .e-bigger .e-content-placeholder.e-ddl.e-placeholder-ddl,
532
+ .e-bigger.e-content-placeholder.e-ddl.e-placeholder-ddl,
533
+ .e-bigger .e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
534
+ .e-bigger.e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
535
+ .e-bigger .e-content-placeholder.e-combobox.e-placeholder-combobox,
536
+ .e-bigger.e-content-placeholder.e-combobox.e-placeholder-combobox {
537
+ background-size: 300px 40px;
538
+ min-height: 40px;
539
+ }
540
+
541
+ .e-bigger .e-ddl.e-popup,
542
+ .e-bigger.e-ddl.e-popup {
543
+ border-radius: 8px;
544
+ margin-top: 8px;
545
+ }
546
+
547
+ .e-bigger.e-small .e-ddl.e-popup,
548
+ .e-small.e-bigger.e-ddl.e-popup {
549
+ border-radius: 8px;
550
+ margin-top: 6px;
551
+ }
552
+
553
+ .e-bigger .e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
554
+ border-color: var(--color-sf-border-secondary);
555
+ }
556
+
557
+ .e-bigger .e-popup.e-ddl-device-filter {
558
+ margin-top: 0;
559
+ }
560
+
561
+ .e-bigger .e-ddl-device .e-input-group,
562
+ .e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
563
+ background: var(--color-sf-bg-primary-alt);
564
+ border-width: 0;
565
+ -webkit-box-shadow: none;
566
+ box-shadow: none;
567
+ margin-bottom: 0;
568
+ }
569
+
570
+ .e-bigger .e-ddl-device .e-input-group .e-back-icon,
571
+ .e-bigger .e-ddl-device .e-input-group input.e-input,
572
+ .e-bigger .e-ddl-device .e-input-group .e-clear-icon {
573
+ background-color: var(--color-sf-bg-primary-alt);
574
+ }
575
+
576
+ .e-bigger .e-ddl.e-popup,
577
+ .e-bigger.e-ddl.e-popup {
578
+ border-radius: 6px;
579
+ margin-top: 8px;
580
+ }
581
+
582
+ .e-bigger.e-small .e-ddl.e-popup,
583
+ .e-small.e-bigger.e-ddl.e-popup {
584
+ border-radius: 4px;
585
+ margin-top: 6px;
586
+ }
587
+
588
+ .e-bigger .e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
589
+ border-color: var(--color-sf-border-secondary);
590
+ }
591
+
592
+ .e-bigger .e-popup.e-ddl-device-filter {
593
+ margin-top: 0;
594
+ }
595
+
596
+ .e-bigger .e-ddl-device .e-input-group,
597
+ .e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
598
+ background: var(--color-sf-bg-primary-alt);
599
+ border-width: 0;
600
+ -webkit-box-shadow: none;
601
+ box-shadow: none;
602
+ margin-bottom: 0;
603
+ }
604
+
605
+ .e-bigger .e-ddl-device .e-input-group .e-back-icon,
606
+ .e-bigger .e-ddl-device .e-input-group input.e-input,
607
+ .e-bigger .e-ddl-device .e-input-group .e-clear-icon {
608
+ background-color: var(--color-sf-bg-primary-alt);
609
+ }
@@ -0,0 +1,10 @@
1
+ @import 'ej2-base/styles/definition/bds.scss';
2
+ @import 'ej2-inputs/styles/input/bds-definition.scss';
3
+ @import 'ej2-popups/styles/popup/bds-definition.scss';
4
+ @import 'ej2-popups/styles/spinner/bds-definition.scss';
5
+ @import 'ej2-notifications/styles/skeleton/bds-definition.scss';
6
+ @import '../drop-down-base/bds-definition.scss';
7
+ @import 'bds-definition.scss';
8
+ @import 'icons/bds.scss';
9
+ @import 'all.scss';
10
+ @import 'bigger.scss';
@@ -119,6 +119,10 @@
119
119
  font-family: "e-icons";
120
120
  }
121
121
 
122
+ .e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
123
+ content: "\eb08";
124
+ }
125
+
122
126
  .e-popup.e-wide-popup.e-ddl-device.e-popup-close {
123
127
  display: block;
124
128
  visibility: hidden;
@@ -317,6 +321,20 @@ ejs-dropdownlist {
317
321
  min-height: 33px;
318
322
  }
319
323
 
324
+ .e-ddl.e-popup.e-resize .e-resizer-right {
325
+ bottom: 0;
326
+ right: 0;
327
+ cursor: nwse-resize;
328
+ height: 15px;
329
+ position: absolute;
330
+ width: 15px;
331
+ }
332
+
333
+ .e-ddl.e-popup.e-resize .e-resizer-right {
334
+ background: transparent;
335
+ color: rgb(221, 218, 218);
336
+ }
337
+
320
338
  .e-popup {
321
339
  border-color: #414141;
322
340
  }
@@ -328,7 +346,6 @@ ejs-dropdownlist {
328
346
 
329
347
  .e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
330
348
  border-color: transparent;
331
- background: none;
332
349
  }
333
350
 
334
351
  .e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
@@ -119,6 +119,10 @@
119
119
  font-family: "e-icons";
120
120
  }
121
121
 
122
+ .e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
123
+ content: "\eb08";
124
+ }
125
+
122
126
  .e-popup.e-wide-popup.e-ddl-device.e-popup-close {
123
127
  display: block;
124
128
  visibility: hidden;
@@ -317,6 +321,15 @@ ejs-dropdownlist {
317
321
  min-height: 33px;
318
322
  }
319
323
 
324
+ .e-ddl.e-popup.e-resize .e-resizer-right {
325
+ bottom: 0;
326
+ right: 0;
327
+ cursor: nwse-resize;
328
+ height: 15px;
329
+ position: absolute;
330
+ width: 15px;
331
+ }
332
+
320
333
  .e-popup {
321
334
  border-color: #ccc;
322
335
  }
@@ -328,7 +341,6 @@ ejs-dropdownlist {
328
341
 
329
342
  .e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
330
343
  border-color: transparent;
331
- background: none;
332
344
  }
333
345
 
334
346
  .e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {