@appscode/design-system 1.1.0-alpha.8 → 1.1.0-beta.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.
Files changed (200) hide show
  1. package/base/_video-player.scss +65 -0
  2. package/base/utilities/_all.scss +6 -5
  3. package/base/utilities/_colors.scss +408 -0
  4. package/base/utilities/_customize-bulma.scss +23 -27
  5. package/base/utilities/_extended.scss +9 -4
  6. package/base/utilities/{_default.scss → _global.scss} +185 -331
  7. package/base/utilities/_layouts.scss +157 -0
  8. package/base/utilities/_mixin.scss +11 -11
  9. package/base/utilities/_spacing.scss +96 -0
  10. package/base/utilities/_typography.scss +56 -24
  11. package/base/utilities/dark-theme.scss +1 -1
  12. package/components/_ac-accordion.scss +117 -117
  13. package/components/_ac-alert-box.scss +205 -263
  14. package/components/_ac-calendar.scss +4 -4
  15. package/components/_ac-card.scss +0 -597
  16. package/components/_ac-code-highlight.scss +6 -6
  17. package/components/_ac-content-layout.scss +165 -165
  18. package/components/_ac-drag.scss +11 -11
  19. package/components/_ac-input.scss +477 -452
  20. package/components/_ac-modal.scss +212 -212
  21. package/components/_ac-multi-select.scss +780 -751
  22. package/components/_ac-options.scss +122 -123
  23. package/components/_ac-select-box.scss +5 -5
  24. package/components/_ac-table.scss +503 -502
  25. package/components/_ac-tabs.scss +39 -38
  26. package/components/_ac-tags.scss +116 -116
  27. package/components/_ac-terminal.scss +95 -51
  28. package/components/_add-card.scss +3 -3
  29. package/components/_all.scss +29 -26
  30. package/components/_app-drawer.scss +0 -134
  31. package/components/_breadcumb.scss +0 -71
  32. package/components/_buttons.scss +779 -779
  33. package/components/_card-body-wrapper.scss +5 -5
  34. package/components/_dashboard-header.scss +0 -115
  35. package/components/_direct-deploy.scss +8 -8
  36. package/components/_go-to-top.scss +1 -1
  37. package/components/_image-upload.scss +5 -5
  38. package/components/_left-sidebar-menu.scss +448 -579
  39. package/components/_monaco-editor.scss +1 -1
  40. package/components/_navbar.scss +786 -752
  41. package/components/_nested-list.scss +1 -1
  42. package/components/_overview-info.scss +7 -7
  43. package/components/_overview-page.scss +4 -4
  44. package/components/_pagination.scss +106 -124
  45. package/components/_payment-card.scss +21 -21
  46. package/components/_preloader.scss +1 -1
  47. package/components/_preview-modal.scss +18 -18
  48. package/components/_pricing-table.scss +10 -10
  49. package/components/_progress-bar.scss +12 -12
  50. package/components/_subscription-card.scss +14 -14
  51. package/components/_table-of-content.scss +4 -4
  52. package/components/_tfa.scss +9 -9
  53. package/components/_widget-menu.scss +247 -247
  54. package/components/_wizard.scss +557 -559
  55. package/components/ac-toaster/_ac-toasted.scss +7 -12
  56. package/components/bbum/_activities-header.scss +1 -1
  57. package/components/bbum/_card-team.scss +12 -12
  58. package/components/bbum/_information-center.scss +13 -13
  59. package/components/bbum/_left-sidebar.scss +8 -8
  60. package/components/bbum/_mobile-desktop.scss +7 -7
  61. package/components/bbum/_post.scss +5 -5
  62. package/components/bbum/_sign-up-notification.scss +10 -10
  63. package/components/bbum/_single-post-preview.scss +21 -21
  64. package/components/bbum/_user-profile.scss +10 -10
  65. package/components/ui-builder/_ui-builder.scss +15 -15
  66. package/components/ui-builder/_vue-open-api.scss +515 -2
  67. package/layouts/_code-preview.scss +11 -11
  68. package/main.scss +26 -10
  69. package/package.json +1 -1
  70. package/plugins/theme.js +11 -9
  71. package/plugins/vue-toaster.js +1 -1
  72. package/vue-components/plugins/time-convert.js +49 -0
  73. package/vue-components/text.vue +1 -0
  74. package/vue-components/types/cluster.ts +6 -0
  75. package/vue-components/types/importFlow.ts +16 -0
  76. package/vue-components/types/longRunningTasks.ts +20 -0
  77. package/vue-components/types/notification.ts +6 -0
  78. package/vue-components/types/previewYaml.ts +8 -0
  79. package/vue-components/types/table.ts +54 -0
  80. package/vue-components/types/theme.ts +10 -0
  81. package/vue-components/types/user.ts +22 -0
  82. package/vue-components/v2/card/Card.vue +1 -1
  83. package/vue-components/v2/card/OverviewCards.vue +17 -2
  84. package/vue-components/v2/editor/FilteredFileEditor.vue +2 -2
  85. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +21 -21
  86. package/vue-components/v2/icons/Ellipsis.vue +2 -1
  87. package/vue-components/v2/modal/Modal.vue +0 -5
  88. package/vue-components/v2/navbar/Appdrawer.vue +37 -12
  89. package/vue-components/v2/navbar/Navbar.vue +3 -3
  90. package/vue-components/v2/navbar/NavbarItem.vue +3 -1
  91. package/vue-components/v2/navbar/NavbarItemContent.vue +1 -1
  92. package/vue-components/v2/navbar/User.vue +5 -22
  93. package/vue-components/v2/pagination/Pagination.vue +66 -0
  94. package/vue-components/v2/sidebar/SidebarItem.vue +10 -7
  95. package/vue-components/v3/accordion/Accordion.vue +151 -0
  96. package/vue-components/v3/alert/Alert.vue +238 -0
  97. package/vue-components/v3/alert/Toast.vue +79 -0
  98. package/vue-components/v3/banner/Banner.vue +10 -0
  99. package/vue-components/v3/breadcrumbs/Breadcrumb.vue +104 -0
  100. package/vue-components/v3/button/Button.vue +839 -58
  101. package/vue-components/v3/button/Buttons.vue +6 -0
  102. package/vue-components/v3/button/DownloadBtn.vue +31 -0
  103. package/vue-components/v3/cards/Card.vue +32 -0
  104. package/vue-components/v3/cards/CardContent.vue +7 -0
  105. package/vue-components/v3/cards/CardHeader.vue +14 -0
  106. package/vue-components/v3/cards/Cards.vue +7 -0
  107. package/vue-components/v3/cards/Cluster.vue +149 -0
  108. package/vue-components/v3/cards/Counter.vue +39 -0
  109. package/vue-components/v3/cards/FeatureCard.vue +71 -0
  110. package/vue-components/v3/cards/FeatureCards.vue +6 -0
  111. package/vue-components/v3/cards/InfoCard.vue +243 -0
  112. package/vue-components/v3/cards/Monitoring.vue +94 -0
  113. package/vue-components/v3/cards/OverviewCard.vue +24 -0
  114. package/vue-components/v3/cards/OverviewCards.vue +31 -0
  115. package/vue-components/v3/cards/Payment.vue +62 -0
  116. package/vue-components/v3/cards/Vendor.vue +85 -0
  117. package/vue-components/v3/content/ContentHeader.vue +39 -30
  118. package/vue-components/v3/content/ContentLayout.vue +20 -0
  119. package/vue-components/v3/content/ContentTable.vue +43 -62
  120. package/vue-components/v3/dropdown/DropdownDivider.vue +2 -0
  121. package/vue-components/v3/dropdown/DropdownItem.vue +2 -0
  122. package/vue-components/v3/dropdown/DropdownMenu.vue +85 -91
  123. package/vue-components/v3/editor/Editor.vue +100 -113
  124. package/vue-components/v3/editor/FilteredFileEditor.vue +317 -127
  125. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +70 -94
  126. package/vue-components/v3/footer/FooterArea.vue +34 -0
  127. package/vue-components/v3/footer/FooterItem.vue +32 -0
  128. package/vue-components/v3/footer/FooterItems.vue +15 -0
  129. package/vue-components/v3/footer/Info.vue +23 -0
  130. package/vue-components/v3/footer/Status.vue +42 -0
  131. package/vue-components/v3/footer/Usage.vue +44 -0
  132. package/vue-components/v3/form/Form.vue +24 -33
  133. package/vue-components/v3/form/FormFooterControl.vue +7 -0
  134. package/vue-components/v3/form/FormFooterControls.vue +7 -0
  135. package/vue-components/v3/form-fields/AcSingleInput.vue +528 -0
  136. package/vue-components/v3/form-fields/Input.vue +19 -14
  137. package/vue-components/v3/header/Header.vue +119 -25
  138. package/vue-components/v3/header/HeaderItem.vue +18 -0
  139. package/vue-components/v3/header/HeaderItems.vue +4 -0
  140. package/vue-components/v3/icons/Ellipsis.vue +2 -0
  141. package/vue-components/v3/loaders/InfoCardLoader.vue +65 -0
  142. package/vue-components/v3/loaders/ResourceLoader.vue +4 -12
  143. package/vue-components/v3/loaders/SidebarLoader.vue +4 -12
  144. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +17 -15
  145. package/vue-components/v3/modal/Modal.vue +292 -96
  146. package/vue-components/v3/modals/DeleteConfirmationModal.vue +37 -50
  147. package/vue-components/v3/modals/JsonShowModal.vue +62 -68
  148. package/vue-components/v3/modals/LongRunningTasksModal.vue +145 -143
  149. package/vue-components/v3/navbar/Appdrawer.vue +196 -51
  150. package/vue-components/v3/navbar/Navbar.vue +298 -0
  151. package/vue-components/v3/navbar/NavbarItem.vue +81 -0
  152. package/vue-components/v3/navbar/NavbarItemContent.vue +284 -0
  153. package/vue-components/v3/navbar/Notification.vue +179 -0
  154. package/vue-components/v3/navbar/ThemeMode.vue +128 -112
  155. package/vue-components/v3/navbar/User.vue +383 -268
  156. package/vue-components/v3/notification/AlertBox.vue +41 -44
  157. package/vue-components/v3/notification/Notification.vue +49 -43
  158. package/vue-components/v3/notification/NotificationItem.vue +51 -19
  159. package/vue-components/v3/option-dots/Options.vue +188 -0
  160. package/vue-components/v3/pagination/Pagination.vue +203 -99
  161. package/vue-components/v3/preloader/Preloader.vue +23 -0
  162. package/vue-components/v3/searchbars/SearchBar.vue +59 -34
  163. package/vue-components/v3/sidebar/AccentColorPicker.vue +97 -0
  164. package/vue-components/v3/sidebar/ClusterSwitcher.vue +835 -81
  165. package/vue-components/v3/sidebar/Sidebar.vue +267 -0
  166. package/vue-components/v3/sidebar/SidebarBody.vue +7 -0
  167. package/vue-components/v3/sidebar/SidebarFooter.vue +80 -0
  168. package/vue-components/v3/sidebar/SidebarHeader.vue +124 -0
  169. package/vue-components/v3/sidebar/SidebarItem.vue +62 -0
  170. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +101 -104
  171. package/vue-components/v3/sidebar/SidebarMenuList.vue +9 -0
  172. package/vue-components/v3/sidebar/Steps.vue +152 -0
  173. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +128 -0
  174. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +29 -0
  175. package/vue-components/v3/sidebar/sidebar-tabs/TabsContent.vue +99 -0
  176. package/vue-components/v3/tab/TabItem.vue +10 -12
  177. package/vue-components/v3/tab/Tabs.vue +9 -0
  178. package/vue-components/v3/tab/TabsBody.vue +7 -0
  179. package/vue-components/v3/table/EmptyTableInfo.vue +8 -0
  180. package/vue-components/v3/table/FakeTableCell.vue +22 -31
  181. package/vue-components/v3/table/InfoTable.vue +89 -61
  182. package/vue-components/v3/table/MultiInfoTable.vue +72 -95
  183. package/vue-components/v3/table/Table.vue +589 -151
  184. package/vue-components/v3/table/TableCell.vue +20 -23
  185. package/vue-components/v3/table/TableContainer.vue +50 -28
  186. package/vue-components/v3/table/TableRow.vue +63 -85
  187. package/vue-components/v3/table/table-cell/ArrayCell.vue +67 -79
  188. package/vue-components/v3/table/table-cell/CellValue.vue +97 -103
  189. package/vue-components/v3/table/table-cell/GenericCell.vue +43 -42
  190. package/vue-components/v3/table/table-cell/ObjectCell.vue +67 -79
  191. package/vue-components/v3/table/table-cell/ValueWithModal.vue +22 -31
  192. package/vue-components/v3/tabs/EditorTabs.vue +18 -24
  193. package/vue-components/v3/tag/Tag.vue +15 -12
  194. package/vue-components/v3/tag/Tags.vue +7 -0
  195. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +26 -23
  196. package/base/utilities/_derived-variables.scss +0 -25
  197. package/base/utilities/_initial-variables.scss +0 -215
  198. package/components/_basic-card.scss +0 -124
  199. package/mixins/stickyContent.js +0 -141
  200. package/plugins/caching.ts +0 -243
@@ -1,751 +1,780 @@
1
- .multiselect {
2
- // margin-top: 3px;
3
- &.cluster-select {
4
- .multiselect__tags {
5
- border: 1px solid $ac-gray-lightest;
6
- background-color: $table-header;
7
-
8
- .multiselect__input {
9
- background-color: $table-header;
10
- }
11
- }
12
- }
13
-
14
- .multiselect__tags {
15
- background-color: $ac-white;
16
- min-height: 45px;
17
- font-weight: 500;
18
- width: 100%;
19
- border-radius: 4px;
20
- border: 1px solid $ac-label-text;
21
- padding: 6px 30px 8px 20px;
22
- font-size: $font-size-small;
23
-
24
- .multiselect__placeholder {
25
- margin: 0;
26
- padding: 0;
27
- padding-top: 2px !important;
28
- font-weight: 400;
29
- font-size: $font-size-small;
30
- }
31
-
32
- .multiselect__tags-wrap {
33
- display: flex;
34
- align-items: center;
35
- }
36
-
37
- .multiselect__tag {
38
- background-color: $dark-bg-light;
39
- margin-top: 4px;
40
- margin-bottom: 0;
41
-
42
- .multiselect__tag-icon {
43
- font-size: 12px;
44
-
45
- &::after {
46
- color: $ac-white;
47
- }
48
-
49
- &:hover {
50
- background-color: hsla(
51
- var(--hsl-hue),
52
- var(--hsl-saturation),
53
- calc(var(--hsl-lightness) - 9%),
54
- 1
55
- );
56
- }
57
- }
58
- }
59
-
60
- .multiselect__input,
61
- .multiselect__single {
62
- background-color: $ac-white;
63
- margin-bottom: 0;
64
- margin: 0 !important;
65
- padding-left: 0;
66
- left: 0px;
67
- top: 2px;
68
- font-size: $font-size-small !important;
69
- font-weight: 500;
70
- color: $ac-color-text;
71
- line-height: 1.5;
72
- }
73
-
74
- .multiselect__single {
75
- margin-top: 3px;
76
- margin-bottom: 0;
77
- }
78
- }
79
-
80
- .multiselect__content {
81
- .multiselect__element {
82
- .multiselect__option {
83
- padding: 10px 15px;
84
- min-height: 32px;
85
- font-size: $font-size-small;
86
- p {
87
- font-size: 13px;
88
- color: $ac-color-text;
89
- }
90
- a {
91
- display: block;
92
- font-weight: 400;
93
- margin-top: -12px;
94
- margin-bottom: -12px;
95
- padding-top: 12px;
96
- padding-bottom: 12px;
97
- }
98
-
99
- &:hover {
100
- background-color: hsla(
101
- var(--hsl-hue),
102
- var(--hsl-saturation),
103
- var(--hsl-lightness),
104
- 0.2
105
- );
106
- color: $ac-primary;
107
- }
108
-
109
- &.multiselect__option--highlight {
110
- background-color: hsla(
111
- var(--hsl-hue),
112
- var(--hsl-saturation),
113
- var(--hsl-lightness),
114
- 0.2
115
- );
116
- color: $ac-primary;
117
-
118
- &:after {
119
- background-color: hsla(
120
- var(--hsl-hue),
121
- var(--hsl-saturation),
122
- var(--hsl-lightness),
123
- 0.2
124
- );
125
- color: $ac-primary;
126
- }
127
- }
128
- }
129
- }
130
- }
131
- }
132
-
133
- .multi-select-wrapper {
134
- &.is-last-child-bold {
135
- .multiselect {
136
- .multiselect__content {
137
- .multiselect__element {
138
- &:nth-last-child(-n + 3) {
139
- .multiselect__option {
140
- font-weight: 500;
141
- }
142
- }
143
- }
144
- }
145
- }
146
- }
147
- }
148
-
149
- .multiselect__element {
150
- span {
151
- label {
152
- padding-left: 15px !important;
153
- font-size: $font-size-small !important;
154
- color: $ac-color-text !important;
155
-
156
- &:after {
157
- position: inherit !important;
158
- content: "" !important;
159
- background-color: transparent;
160
- }
161
- }
162
- }
163
- }
164
-
165
- .multiselect__input {
166
- &::placeholder {
167
- color: $ac-color-value;
168
- font-weight: 400;
169
- line-height: 1.6;
170
- font-size: $font-size-small;
171
- }
172
- }
173
-
174
- .multiselect__tags > span {
175
- font-size: $font-size-small;
176
- line-height: 1.6;
177
- color: $ac-color-text;
178
- }
179
-
180
- .multi-select-wrapper {
181
- position: relative;
182
- z-index: 0;
183
-
184
- .multiselect--disabled {
185
- opacity: unset;
186
- }
187
-
188
- &.is-disable {
189
- opacity: 0.5;
190
- cursor: not-allowed;
191
-
192
- input,
193
- .button.is-information,
194
- .eye i.fa {
195
- cursor: not-allowed;
196
- }
197
- }
198
-
199
- .multiselect__input {
200
- border: none !important;
201
- }
202
-
203
- &.has-bg-color {
204
- label.show-label {
205
- &:after {
206
- background-color: $ac-bg;
207
- }
208
- }
209
- }
210
-
211
- &.is-small {
212
- label {
213
- font-size: $font-size-small;
214
- top: 8px;
215
-
216
- &.show-label {
217
- font-size: $font-size-extra-small;
218
- top: -9px;
219
- font-weight: 500;
220
- color: $ac-black;
221
- }
222
- }
223
-
224
- .button.is-information {
225
- width: 36px;
226
- height: 36px;
227
- }
228
-
229
- .multiselect__select {
230
- height: 100%;
231
- }
232
-
233
- .multiselect__tags {
234
- .multiselect__tag {
235
- padding: 5px 20px 4px 10px;
236
- font-size: $font-size-extra-small;
237
- }
238
- }
239
-
240
- .multiselect {
241
- min-height: auto;
242
- }
243
-
244
- .multiselect--active {
245
- height: 36px !important;
246
- z-index: 50;
247
- }
248
-
249
- .multiselect .multiselect__tags {
250
- min-height: 36px !important;
251
- padding: 4px 30px 4px 20px;
252
- font-size: $font-size-small;
253
-
254
- .multiselect__single {
255
- font-size: 12px;
256
- }
257
-
258
- .multiselect__placeholder {
259
- padding: 5px 0 0;
260
- font-size: $font-size-small;
261
- font-weight: 500;
262
- }
263
- }
264
-
265
- .multiselect__input,
266
- .multiselect__single {
267
- font-size: $font-size-small !important;
268
- font-weight: 500;
269
- line-height: 1.5;
270
- padding-bottom: 4px;
271
-
272
- &::placeholder {
273
- font-weight: 500;
274
- line-height: 1.6;
275
- font-size: $font-size-small;
276
- }
277
- }
278
- }
279
-
280
- &.is-extra-small {
281
- label {
282
- font-size: $font-size-small;
283
- top: 8px;
284
-
285
- &.show-label {
286
- font-size: $font-size-extra-small;
287
- top: -9px;
288
- }
289
- }
290
-
291
- .button.is-information {
292
- width: 32px;
293
- height: 32px;
294
- }
295
-
296
- .multiselect__select {
297
- height: 100%;
298
- }
299
-
300
- .multiselect__tags {
301
- .multiselect__tag {
302
- padding: 5px 20px 4px 10px;
303
- font-size: $font-size-extra-small;
304
- }
305
- }
306
-
307
- .multiselect {
308
- min-height: auto;
309
- }
310
-
311
- .multiselect--active {
312
- height: 32px !important;
313
- z-index: 50;
314
- }
315
-
316
- .multiselect .multiselect__tags {
317
- min-height: 32px !important;
318
- padding: 3px 30px 4px 20px;
319
- font-size: $font-size-small;
320
- display: flex;
321
- align-items: center;
322
- .multiselect__single {
323
- font-size: 12px;
324
- }
325
-
326
- .multiselect__placeholder {
327
- padding: 5px 0 0;
328
- font-size: $font-size-small;
329
- font-weight: 500;
330
- }
331
- }
332
-
333
- .multiselect__input,
334
- .multiselect__single {
335
- font-size: $font-size-small !important;
336
- font-weight: 500;
337
- line-height: 1.5;
338
- padding-bottom: 4px;
339
-
340
- &::placeholder {
341
- font-weight: 500;
342
- line-height: 1.6;
343
- font-size: $font-size-small;
344
- }
345
- }
346
- }
347
-
348
- &.is-danger {
349
- input,
350
- .ac-card,
351
- textarea {
352
- border: 1px solid $ac-danger;
353
- }
354
-
355
- p {
356
- color: $ac-danger;
357
- }
358
- }
359
-
360
- &.is-loading {
361
- input,
362
- .ac-card,
363
- textarea {
364
- border: 1px solid $ac-info;
365
- opacity: 0.5;
366
- }
367
-
368
- p {
369
- color: $ac-info;
370
- opacity: 0.5;
371
- }
372
- }
373
-
374
- .is-error {
375
- font-size: 12px;
376
- line-height: 22px;
377
- color: $ac-red;
378
- text-align: left;
379
-
380
- i.fa {
381
- padding-right: 10px;
382
- }
383
- }
384
-
385
- .multiselect__select {
386
- height: calc(100% - 2px);
387
- border-radius: 0 4px 4px 0;
388
- background-color: transparent !important;
389
- }
390
-
391
- label {
392
- font-size: 16px;
393
- left: 20px;
394
- top: 11px;
395
- cursor: text;
396
- color: $ac-label-text;
397
- position: absolute;
398
- z-index: 99;
399
- transition: 0.3s ease-in-out;
400
-
401
- .is-required {
402
- img {
403
- position: absolute;
404
- top: 7px;
405
- padding-left: 3px;
406
- }
407
- }
408
-
409
- &.show-label {
410
- top: -10px;
411
- left: 15px;
412
- padding: 0 5px;
413
- font-size: $font-size-small;
414
- color: $ac-black;
415
-
416
- &::after {
417
- background-color: $ac-white;
418
- }
419
- }
420
-
421
- &:after {
422
- position: absolute;
423
- content: "";
424
- left: 0;
425
- top: 50%;
426
- background-color: $ac-white;
427
- width: 100%;
428
- height: 2px;
429
- margin-top: -1px;
430
- z-index: -1;
431
- }
432
-
433
- &.is-required {
434
- &:after {
435
- width: calc(100% + 10px);
436
- }
437
- }
438
- }
439
- }
440
- li {
441
- .multiselect__option {
442
- font-size: 13px;
443
- color: $ac-color-text;
444
- }
445
- }
446
- .multiselect__option--selected {
447
- label {
448
- right: 30px;
449
- }
450
- }
451
- .multi-select-wrapper.is-small {
452
- .multiselect .multiselect__tags {
453
- .multiselect__input,
454
- .multiselect__single {
455
- top: 3.5px !important;
456
- }
457
- }
458
- .multiselect .multiselect__tags .multiselect__placeholder {
459
- padding-top: 3.5px !important;
460
- }
461
- }
462
- // has info button start
463
- .multi-select-wrapper {
464
- &.has-info-button {
465
- .multiselect__select {
466
- z-index: 99;
467
- right: 30px;
468
- }
469
- &.has-refresh-button {
470
- .multiselect__select {
471
- z-index: 99;
472
- right: 60px;
473
- }
474
- .button {
475
- &.is-refresh {
476
- right: 30px;
477
- }
478
- }
479
- }
480
- .button {
481
- &.is-information {
482
- right: 0;
483
- }
484
- }
485
- }
486
- &.has-refresh-button {
487
- .multiselect__select {
488
- z-index: 99;
489
- right: 30px;
490
- }
491
- .button {
492
- &.is-refresh {
493
- right: 0;
494
- }
495
- }
496
- }
497
-
498
- .button {
499
- &.is-information,
500
- &.is-refresh {
501
- background-color: transparent;
502
- border: none;
503
- position: absolute;
504
- height: 36px;
505
- width: 36px;
506
- z-index: 90;
507
- margin-top: 0;
508
-
509
- &:focus {
510
- outline: none;
511
- box-shadow: none;
512
- background-color: #e4e8ef;
513
- transform: scale(0.8);
514
- }
515
- }
516
- &.is-refresh.spin {
517
- i {
518
- animation: spin 1s linear infinite;
519
- }
520
- }
521
- }
522
- }
523
-
524
- @-moz-keyframes spin {
525
- from {
526
- -moz-transform: rotate(0deg);
527
- }
528
- to {
529
- -moz-transform: rotate(360deg);
530
- }
531
- }
532
- @-webkit-keyframes spin {
533
- from {
534
- -webkit-transform: rotate(0deg);
535
- }
536
- to {
537
- -webkit-transform: rotate(360deg);
538
- }
539
- }
540
- @keyframes spin {
541
- from {
542
- transform: rotate(0deg);
543
- }
544
- to {
545
- transform: rotate(360deg);
546
- }
547
- }
548
- // has info button end
549
-
550
- // dark theme start
551
- .is-dark-theme {
552
- .multiselect__content-wrapper {
553
- background: var(--dark-bg-light);
554
- border: 1px solid $ac-white-light;
555
-
556
- // scroll
557
- &::-webkit-scrollbar {
558
- border-radius: 50px;
559
- width: 3px;
560
- }
561
-
562
- &::-moz-scrollbar {
563
- border-radius: 50px;
564
- width: 3px;
565
- }
566
-
567
- &::-ms-scrollbar {
568
- border-radius: 50px;
569
- width: 3px;
570
- }
571
-
572
- &::-webkit-scrollbar:hover {
573
- width: 7px;
574
- }
575
-
576
- &::-moz-scrollbar:hover {
577
- width: 7px;
578
- }
579
-
580
- &::-ms-scrollbar:hover {
581
- width: 7px;
582
- }
583
-
584
- &::-webkit-scrollbar-thumb {
585
- background-color: $dark-bg-light;
586
- border-radius: 50px;
587
- height: 2px !important;
588
- }
589
-
590
- &::-moz-scrollbar-thumb {
591
- background-color: $dark-bg-light;
592
- border-radius: 50px;
593
- height: 2px !important;
594
- }
595
-
596
- &::-ms-scrollbar-thumb {
597
- background-color: $dark-bg-light;
598
- border-radius: 50px;
599
- height: 2px !important;
600
- }
601
-
602
- &::-webkit-scrollbar-thumb:hover {
603
- background-color: $dark-bg-light;
604
- }
605
-
606
- &::-moz-scrollbar-thumb:hover {
607
- background-color: $dark-bg-light;
608
- }
609
-
610
- &::-ms-scrollbar-thumb:hover {
611
- background-color: $dark-bg-light;
612
- }
613
-
614
- &:hover::-webkit-scrollbar-corner {
615
- height: 40px;
616
- }
617
-
618
- &:hover::-moz-scrollbar-corner {
619
- height: 40px;
620
- }
621
-
622
- &:hover::-ms-scrollbar-corner {
623
- height: 40px;
624
- }
625
-
626
- // scroll
627
-
628
- .multiselect__option--selected {
629
- background: var(--dark-bg);
630
- color: var(--ac-white-text);
631
- }
632
- }
633
-
634
- .multi-select-wrapper {
635
- background: var(--dark-bg-light);
636
-
637
- .multiselect__content-wrapper {
638
- background-color: var(--dark-bg-light);
639
- background: var(--dark-bg-light);
640
-
641
- // scroll
642
- &::-webkit-scrollbar {
643
- border-radius: 50px;
644
- width: 3px;
645
- }
646
-
647
- &::-moz-scrollbar {
648
- border-radius: 50px;
649
- width: 3px;
650
- }
651
-
652
- &::-ms-scrollbar {
653
- border-radius: 50px;
654
- width: 3px;
655
- }
656
-
657
- &::-webkit-scrollbar:hover {
658
- width: 7px;
659
- }
660
-
661
- &::-moz-scrollbar:hover {
662
- width: 7px;
663
- }
664
-
665
- &::-ms-scrollbar:hover {
666
- width: 7px;
667
- }
668
-
669
- &::-webkit-scrollbar-thumb {
670
- background-color: $dark-bg-light;
671
- border-radius: 50px;
672
- height: 2px !important;
673
- }
674
-
675
- &::-moz-scrollbar-thumb {
676
- background-color: $dark-bg-light;
677
- border-radius: 50px;
678
- height: 2px !important;
679
- }
680
-
681
- &::-ms-scrollbar-thumb {
682
- background-color: $dark-bg-light;
683
- border-radius: 50px;
684
- height: 2px !important;
685
- }
686
-
687
- &::-webkit-scrollbar-thumb:hover {
688
- background-color: $dark-bg-light;
689
- }
690
-
691
- &::-moz-scrollbar-thumb:hover {
692
- background-color: $dark-bg-light;
693
- }
694
-
695
- &::-ms-scrollbar-thumb:hover {
696
- background-color: $dark-bg-light;
697
- }
698
-
699
- &:hover::-webkit-scrollbar-corner {
700
- height: 40px;
701
- }
702
-
703
- &:hover::-moz-scrollbar-corner {
704
- height: 40px;
705
- }
706
-
707
- &:hover::-ms-scrollbar-corner {
708
- height: 40px;
709
- }
710
-
711
- // scroll
712
-
713
- .multiselect__content .multiselect__element .multiselect__option {
714
- color: var(--ac-white-text);
715
- }
716
-
717
- .multiselect__option--group {
718
- color: var(--ac-white-text);
719
- background-color: var(--dark-bg-light);
720
- }
721
-
722
- .multiselect__option--selected {
723
- color: var(--ac-white-text);
724
- background-color: var(--dark-bg-light);
725
- }
726
- }
727
- }
728
- }
729
- // dark theme end
730
- /****************************************
731
- Responsive Classes
732
- *****************************************/
733
- // Extra small devices (portrait phones, less than 576px)
734
- @media (max-width: 575.98px) {
735
- }
736
-
737
- // Small devices (landscape phones, 576px and up)
738
- @media (min-width: 576px) and (max-width: 767.98px) {
739
- }
740
-
741
- // Medium devices (tablets, 768px and up)
742
- @media (min-width: 768px) and (max-width: 991.98px) {
743
- }
744
-
745
- // Large devices (desktops, 992px and up)
746
- @media (min-width: 992px) and (max-width: 1199.98px) {
747
- }
748
-
749
- // Extra large devices (large desktops, 1200px and up)
750
- @media (min-width: 1200px) {
751
- }
1
+ // .multiselect {
2
+ // margin-top: 3px;
3
+ // // display: flex;
4
+ // // align-items: center;
5
+ // max-width: 350px;
6
+ // // &.cluster-select {
7
+ // // .multiselect__tags {
8
+ // // border: 1px solid $primary-90;
9
+ // // background-color: $table-header;
10
+
11
+ // // .multiselect__input {
12
+ // // background-color: $table-header;
13
+ // // }
14
+ // // }
15
+ // // }
16
+
17
+ // .multiselect__tags {
18
+ // background-color: #e2f0fb;
19
+ // min-height: 36px;
20
+ // // max-height: 36px;
21
+ // font-weight: 500;
22
+ // width: 100%;
23
+ // border-radius: 4px;
24
+ // border: 1px solid $primary-90;
25
+ // padding: 6px 30px 8px 20px;
26
+ // font-size: 13px;
27
+ // border-radius: 20px;
28
+
29
+ // .multiselect__placeholder {
30
+ // margin: 0;
31
+ // padding: 0;
32
+ // // padding-top: 2px !important;
33
+ // font-weight: 500;
34
+ // font-size: 13px;
35
+ // }
36
+
37
+ // .multiselect__tags-wrap {
38
+ // display: flex;
39
+ // align-items: center;
40
+ // }
41
+
42
+ // .multiselect__tag {
43
+ // background-color: $dark-bg-light;
44
+ // margin-top: 4px;
45
+ // margin-bottom: 0;
46
+
47
+ // .multiselect__tag-icon {
48
+ // font-size: 12px;
49
+
50
+ // &::after {
51
+ // color: $white-100;
52
+ // }
53
+
54
+ // &:hover {
55
+ // background-color: hsla(var(--hsl-hue),
56
+ // var(--hsl-saturation),
57
+ // calc(var(--hsl-lightness) - 9%),
58
+ // 1);
59
+ // }
60
+ // }
61
+ // }
62
+
63
+ // .multiselect__input,
64
+ // .multiselect__single {
65
+ // background-color: #e2f0fb;
66
+ // margin-bottom: 0;
67
+ // margin: 0 !important;
68
+ // padding-left: 0;
69
+ // left: 0px;
70
+ // // top: 2px;
71
+ // font-size: 13px !important;
72
+ // font-weight: 500;
73
+ // color: $primary-10;
74
+ // line-height: 1.5;
75
+ // }
76
+
77
+ // .multiselect__single {
78
+ // margin-top: 3px;
79
+ // margin-bottom: 0;
80
+ // }
81
+ // }
82
+
83
+ // .multiselect__select {
84
+ // height: 36px;
85
+ // }
86
+
87
+ // .multiselect__content {
88
+ // .multiselect__element {
89
+ // .multiselect__option {
90
+ // padding: 4px 16px;
91
+ // min-height: 32px;
92
+ // font-size: 13px;
93
+
94
+ // img {
95
+ // width: 30px;
96
+ // }
97
+
98
+ // p {
99
+ // font-size: 13px;
100
+ // color: $primary-10;
101
+ // }
102
+
103
+ // p:not(.location) {
104
+ // font-weight: 500;
105
+ // }
106
+
107
+ // a {
108
+ // display: block;
109
+ // font-weight: 400;
110
+ // margin-top: -12px;
111
+ // margin-bottom: -12px;
112
+ // padding-top: 12px;
113
+ // padding-bottom: 12px;
114
+ // }
115
+
116
+ // &:hover {
117
+ // background-color: hsla(var(--hsl-hue),
118
+ // var(--hsl-saturation),
119
+ // var(--hsl-lightness),
120
+ // 0.2);
121
+ // color: $primary;
122
+ // }
123
+
124
+ // &.multiselect__option--highlight {
125
+ // background-color: hsla(var(--hsl-hue),
126
+ // var(--hsl-saturation),
127
+ // var(--hsl-lightness),
128
+ // 0.2);
129
+ // color: $primary;
130
+
131
+ // &:after {
132
+ // background-color: hsla(var(--hsl-hue),
133
+ // var(--hsl-saturation),
134
+ // var(--hsl-lightness),
135
+ // 0.2);
136
+ // color: $primary;
137
+ // }
138
+ // }
139
+ // }
140
+ // }
141
+ // }
142
+ // }
143
+
144
+ // .multi-select-wrapper {
145
+ // &.is-last-child-bold {
146
+ // .multiselect {
147
+ // .multiselect__content {
148
+ // .multiselect__element {
149
+ // &:nth-last-child(-n + 3) {
150
+ // .multiselect__option {
151
+ // font-weight: 500;
152
+ // }
153
+ // }
154
+ // }
155
+ // }
156
+ // }
157
+ // }
158
+ // }
159
+
160
+ // .multiselect__element {
161
+ // span {
162
+ // label {
163
+ // padding-left: 15px !important;
164
+ // font-size: 13px !important;
165
+ // color: $primary-10 !important;
166
+
167
+ // &:after {
168
+ // position: inherit !important;
169
+ // content: "" !important;
170
+ // background-color: transparent;
171
+ // }
172
+ // }
173
+ // }
174
+ // }
175
+
176
+ // .multiselect__input {
177
+ // &::placeholder {
178
+ // color: $primary-20;
179
+ // font-weight: 400;
180
+ // line-height: 1.6;
181
+ // font-size: 13px;
182
+ // }
183
+ // }
184
+
185
+ // .multiselect__tags>span {
186
+ // font-size: 13px;
187
+ // line-height: 1.6;
188
+ // color: $primary-10;
189
+ // }
190
+
191
+ // .multi-select-wrapper {
192
+ // position: relative;
193
+ // z-index: 0;
194
+
195
+ // .multiselect--disabled {
196
+ // opacity: unset;
197
+ // }
198
+
199
+ // &.is-disable {
200
+ // opacity: 0.5;
201
+ // cursor: not-allowed;
202
+
203
+ // input,
204
+ // .button.is-information,
205
+ // .eye i.fa {
206
+ // cursor: not-allowed;
207
+ // }
208
+ // }
209
+
210
+ // .multiselect__input {
211
+ // border: none !important;
212
+ // }
213
+
214
+ // &.has-bg-color {
215
+ // label.show-label {
216
+ // &:after {
217
+ // background-color: $ac-bg;
218
+ // }
219
+ // }
220
+ // }
221
+
222
+ // &.is-small {
223
+ // label {
224
+ // font-size: 13px;
225
+ // top: 8px;
226
+
227
+ // &.show-label {
228
+ // font-size: 12px;
229
+ // top: -9px;
230
+ // font-weight: 500;
231
+ // color: $ac-black;
232
+ // }
233
+ // }
234
+
235
+ // .button.is-information {
236
+ // width: 36px;
237
+ // height: 36px;
238
+ // }
239
+
240
+ // .multiselect__select {
241
+ // height: 100%;
242
+ // }
243
+
244
+ // .multiselect__tags {
245
+ // .multiselect__tag {
246
+ // padding: 5px 20px 4px 10px;
247
+ // font-size: 12px;
248
+ // }
249
+ // }
250
+
251
+ // .multiselect {
252
+ // min-height: auto;
253
+ // }
254
+
255
+ // .multiselect--active {
256
+ // height: 36px !important;
257
+ // z-index: 50;
258
+ // }
259
+
260
+ // .multiselect .multiselect__tags {
261
+ // min-height: 36px !important;
262
+ // padding: 4px 30px 4px 20px;
263
+ // font-size: 13px;
264
+
265
+ // .multiselect__single {
266
+ // font-size: 12px;
267
+ // }
268
+
269
+ // .multiselect__placeholder {
270
+ // padding: 5px 0 0;
271
+ // font-size: 13px;
272
+ // font-weight: 500;
273
+ // }
274
+ // }
275
+
276
+ // .multiselect__input,
277
+ // .multiselect__single {
278
+ // font-size: 13px !important;
279
+ // font-weight: 500;
280
+ // line-height: 1.5;
281
+ // padding-bottom: 4px;
282
+
283
+ // &::placeholder {
284
+ // font-weight: 500;
285
+ // line-height: 1.6;
286
+ // font-size: 13px;
287
+ // }
288
+ // }
289
+ // }
290
+
291
+ // &.is-extra-small {
292
+ // label {
293
+ // font-size: 13px;
294
+ // top: 8px;
295
+
296
+ // &.show-label {
297
+ // font-size: 12px;
298
+ // top: -9px;
299
+ // }
300
+ // }
301
+
302
+ // .button.is-information {
303
+ // width: 32px;
304
+ // height: 32px;
305
+ // }
306
+
307
+ // .multiselect__select {
308
+ // height: 100%;
309
+ // }
310
+
311
+ // .multiselect__tags {
312
+ // .multiselect__tag {
313
+ // padding: 5px 20px 4px 10px;
314
+ // font-size: 12px;
315
+ // }
316
+ // }
317
+
318
+ // .multiselect {
319
+ // min-height: auto;
320
+ // }
321
+
322
+ // .multiselect--active {
323
+ // height: 32px !important;
324
+ // z-index: 50;
325
+ // }
326
+
327
+ // .multiselect .multiselect__tags {
328
+ // min-height: 32px !important;
329
+ // padding: 3px 30px 4px 20px;
330
+ // font-size: 13px;
331
+ // display: flex;
332
+ // align-items: center;
333
+
334
+ // .multiselect__single {
335
+ // font-size: 12px;
336
+ // }
337
+
338
+ // .multiselect__placeholder {
339
+ // padding: 5px 0 0;
340
+ // font-size: 13px;
341
+ // font-weight: 500;
342
+ // }
343
+ // }
344
+
345
+ // .multiselect__input,
346
+ // .multiselect__single {
347
+ // font-size: 13px !important;
348
+ // font-weight: 500;
349
+ // line-height: 1.5;
350
+ // padding-bottom: 4px;
351
+
352
+ // &::placeholder {
353
+ // font-weight: 500;
354
+ // line-height: 1.6;
355
+ // font-size: 13px;
356
+ // }
357
+ // }
358
+ // }
359
+
360
+ // &.is-danger {
361
+
362
+ // input,
363
+ // .ac-card,
364
+ // textarea {
365
+ // border: 1px solid $danger;
366
+ // }
367
+
368
+ // p {
369
+ // color: $danger;
370
+ // }
371
+ // }
372
+
373
+ // &.is-loading {
374
+
375
+ // input,
376
+ // .ac-card,
377
+ // textarea {
378
+ // border: 1px solid $info;
379
+ // opacity: 0.5;
380
+ // }
381
+
382
+ // p {
383
+ // color: $info;
384
+ // opacity: 0.5;
385
+ // }
386
+ // }
387
+
388
+ // .is-danger {
389
+ // font-size: 12px;
390
+ // line-height: 22px;
391
+ // color: $danger;
392
+ // text-align: left;
393
+
394
+ // i.fa {
395
+ // padding-right: 10px;
396
+ // }
397
+ // }
398
+
399
+ // .multiselect__select {
400
+ // height: calc(100% - 2px);
401
+ // border-radius: 0 4px 4px 0;
402
+ // background-color: transparent !important;
403
+ // }
404
+
405
+ // label {
406
+ // font-size: 16px;
407
+ // left: 20px;
408
+ // top: 11px;
409
+ // cursor: text;
410
+ // color: $ac-label-text;
411
+ // position: absolute;
412
+ // z-index: 99;
413
+ // transition: 0.3s ease-in-out;
414
+
415
+ // .is-required {
416
+ // img {
417
+ // position: absolute;
418
+ // top: 7px;
419
+ // padding-left: 3px;
420
+ // }
421
+ // }
422
+
423
+ // &.show-label {
424
+ // top: -10px;
425
+ // left: 15px;
426
+ // padding: 0 5px;
427
+ // font-size: 13px;
428
+ // color: $ac-black;
429
+
430
+ // &::after {
431
+ // background-color: $white-100;
432
+ // }
433
+ // }
434
+
435
+ // &:after {
436
+ // position: absolute;
437
+ // content: "";
438
+ // left: 0;
439
+ // top: 50%;
440
+ // background-color: $white-100;
441
+ // width: 100%;
442
+ // height: 2px;
443
+ // margin-top: -1px;
444
+ // z-index: -1;
445
+ // }
446
+
447
+ // &.is-required {
448
+ // &:after {
449
+ // width: calc(100% + 10px);
450
+ // }
451
+ // }
452
+ // }
453
+ // }
454
+
455
+ // li {
456
+ // .multiselect__option {
457
+ // font-size: 13px;
458
+ // color: $primary-10;
459
+ // }
460
+ // }
461
+
462
+ // .multiselect__option--selected {
463
+ // label {
464
+ // right: 30px;
465
+ // }
466
+ // }
467
+
468
+ // .multi-select-wrapper.is-small {
469
+ // .multiselect .multiselect__tags {
470
+
471
+ // .multiselect__input,
472
+ // .multiselect__single {
473
+ // top: 3.5px !important;
474
+ // }
475
+ // }
476
+
477
+ // .multiselect .multiselect__tags .multiselect__placeholder {
478
+ // padding-top: 3.5px !important;
479
+ // }
480
+ // }
481
+
482
+ // // has info button start
483
+ // .multi-select-wrapper {
484
+ // &.has-info-button {
485
+ // .multiselect__select {
486
+ // z-index: 99;
487
+ // right: 30px;
488
+ // }
489
+
490
+ // &.has-refresh-button {
491
+ // .multiselect__select {
492
+ // z-index: 99;
493
+ // right: 60px;
494
+ // }
495
+
496
+ // .button {
497
+ // &.is-refresh {
498
+ // right: 30px;
499
+ // }
500
+ // }
501
+ // }
502
+
503
+ // .button {
504
+ // &.is-information {
505
+ // right: 0;
506
+ // }
507
+ // }
508
+ // }
509
+
510
+ // &.has-refresh-button {
511
+ // .multiselect__select {
512
+ // z-index: 99;
513
+ // right: 30px;
514
+ // }
515
+
516
+ // .button {
517
+ // &.is-refresh {
518
+ // right: 0;
519
+ // }
520
+ // }
521
+ // }
522
+
523
+ // .button {
524
+
525
+ // &.is-information,
526
+ // &.is-refresh {
527
+ // background-color: transparent;
528
+ // border: none;
529
+ // position: absolute;
530
+ // height: 36px;
531
+ // width: 36px;
532
+ // z-index: 90;
533
+ // margin-top: 0;
534
+
535
+ // &:focus {
536
+ // outline: none;
537
+ // box-shadow: none;
538
+ // background-color: #e4e8ef;
539
+ // transform: scale(0.8);
540
+ // }
541
+ // }
542
+
543
+ // &.is-refresh.spin {
544
+ // i {
545
+ // animation: spin 1s linear infinite;
546
+ // }
547
+ // }
548
+ // }
549
+ // }
550
+
551
+ // @-moz-keyframes spin {
552
+ // from {
553
+ // -moz-transform: rotate(0deg);
554
+ // }
555
+
556
+ // to {
557
+ // -moz-transform: rotate(360deg);
558
+ // }
559
+ // }
560
+
561
+ // @-webkit-keyframes spin {
562
+ // from {
563
+ // -webkit-transform: rotate(0deg);
564
+ // }
565
+
566
+ // to {
567
+ // -webkit-transform: rotate(360deg);
568
+ // }
569
+ // }
570
+
571
+ // @keyframes spin {
572
+ // from {
573
+ // transform: rotate(0deg);
574
+ // }
575
+
576
+ // to {
577
+ // transform: rotate(360deg);
578
+ // }
579
+ // }
580
+
581
+ // // has info button end
582
+
583
+ // // dark theme start
584
+ // .is-dark-theme {
585
+ // .multiselect__content-wrapper {
586
+ // background: var(--dark-bg-light);
587
+ // border: 1px solid $primary-90;
588
+
589
+ // // scroll
590
+ // &::-webkit-scrollbar {
591
+ // border-radius: 50px;
592
+ // width: 3px;
593
+ // }
594
+
595
+ // &::-moz-scrollbar {
596
+ // border-radius: 50px;
597
+ // width: 3px;
598
+ // }
599
+
600
+ // &::-ms-scrollbar {
601
+ // border-radius: 50px;
602
+ // width: 3px;
603
+ // }
604
+
605
+ // &::-webkit-scrollbar:hover {
606
+ // width: 7px;
607
+ // }
608
+
609
+ // &::-moz-scrollbar:hover {
610
+ // width: 7px;
611
+ // }
612
+
613
+ // &::-ms-scrollbar:hover {
614
+ // width: 7px;
615
+ // }
616
+
617
+ // &::-webkit-scrollbar-thumb {
618
+ // background-color: $dark-bg-light;
619
+ // border-radius: 50px;
620
+ // height: 2px !important;
621
+ // }
622
+
623
+ // &::-moz-scrollbar-thumb {
624
+ // background-color: $dark-bg-light;
625
+ // border-radius: 50px;
626
+ // height: 2px !important;
627
+ // }
628
+
629
+ // &::-ms-scrollbar-thumb {
630
+ // background-color: $dark-bg-light;
631
+ // border-radius: 50px;
632
+ // height: 2px !important;
633
+ // }
634
+
635
+ // &::-webkit-scrollbar-thumb:hover {
636
+ // background-color: $dark-bg-light;
637
+ // }
638
+
639
+ // &::-moz-scrollbar-thumb:hover {
640
+ // background-color: $dark-bg-light;
641
+ // }
642
+
643
+ // &::-ms-scrollbar-thumb:hover {
644
+ // background-color: $dark-bg-light;
645
+ // }
646
+
647
+ // &:hover::-webkit-scrollbar-corner {
648
+ // height: 40px;
649
+ // }
650
+
651
+ // &:hover::-moz-scrollbar-corner {
652
+ // height: 40px;
653
+ // }
654
+
655
+ // &:hover::-ms-scrollbar-corner {
656
+ // height: 40px;
657
+ // }
658
+
659
+ // // scroll
660
+
661
+ // .multiselect__option--selected {
662
+ // background: var(--dark-bg);
663
+ // color: var(--ac-white-text);
664
+ // }
665
+ // }
666
+
667
+ // .multi-select-wrapper {
668
+ // background: var(--dark-bg-light);
669
+
670
+ // .multiselect__content-wrapper {
671
+ // background-color: var(--dark-bg-light);
672
+ // background: var(--dark-bg-light);
673
+
674
+ // // scroll
675
+ // &::-webkit-scrollbar {
676
+ // border-radius: 50px;
677
+ // width: 3px;
678
+ // }
679
+
680
+ // &::-moz-scrollbar {
681
+ // border-radius: 50px;
682
+ // width: 3px;
683
+ // }
684
+
685
+ // &::-ms-scrollbar {
686
+ // border-radius: 50px;
687
+ // width: 3px;
688
+ // }
689
+
690
+ // &::-webkit-scrollbar:hover {
691
+ // width: 7px;
692
+ // }
693
+
694
+ // &::-moz-scrollbar:hover {
695
+ // width: 7px;
696
+ // }
697
+
698
+ // &::-ms-scrollbar:hover {
699
+ // width: 7px;
700
+ // }
701
+
702
+ // &::-webkit-scrollbar-thumb {
703
+ // background-color: $dark-bg-light;
704
+ // border-radius: 50px;
705
+ // height: 2px !important;
706
+ // }
707
+
708
+ // &::-moz-scrollbar-thumb {
709
+ // background-color: $dark-bg-light;
710
+ // border-radius: 50px;
711
+ // height: 2px !important;
712
+ // }
713
+
714
+ // &::-ms-scrollbar-thumb {
715
+ // background-color: $dark-bg-light;
716
+ // border-radius: 50px;
717
+ // height: 2px !important;
718
+ // }
719
+
720
+ // &::-webkit-scrollbar-thumb:hover {
721
+ // background-color: $dark-bg-light;
722
+ // }
723
+
724
+ // &::-moz-scrollbar-thumb:hover {
725
+ // background-color: $dark-bg-light;
726
+ // }
727
+
728
+ // &::-ms-scrollbar-thumb:hover {
729
+ // background-color: $dark-bg-light;
730
+ // }
731
+
732
+ // &:hover::-webkit-scrollbar-corner {
733
+ // height: 40px;
734
+ // }
735
+
736
+ // &:hover::-moz-scrollbar-corner {
737
+ // height: 40px;
738
+ // }
739
+
740
+ // &:hover::-ms-scrollbar-corner {
741
+ // height: 40px;
742
+ // }
743
+
744
+ // // scroll
745
+
746
+ // .multiselect__content .multiselect__element .multiselect__option {
747
+ // color: var(--ac-white-text);
748
+ // }
749
+
750
+ // .multiselect__option--group {
751
+ // color: var(--ac-white-text);
752
+ // background-color: var(--dark-bg-light);
753
+ // }
754
+
755
+ // .multiselect__option--selected {
756
+ // color: var(--ac-white-text);
757
+ // background-color: var(--dark-bg-light);
758
+ // }
759
+ // }
760
+ // }
761
+ // }
762
+
763
+ // // dark theme end
764
+ // /****************************************
765
+ // Responsive Classes
766
+ // *****************************************/
767
+ // // Extra small devices (portrait phones, less than 576px)
768
+ // @media (max-width: 575.98px) {}
769
+
770
+ // // Small devices (landscape phones, 576px and up)
771
+ // @media (min-width: 576px) and (max-width: 767.98px) {}
772
+
773
+ // // Medium devices (tablets, 768px and up)
774
+ // @media (min-width: 768px) and (max-width: 991.98px) {}
775
+
776
+ // // Large devices (desktops, 992px and up)
777
+ // @media (min-width: 992px) and (max-width: 1199.98px) {}
778
+
779
+ // // Extra large devices (large desktops, 1200px and up)
780
+ // @media (min-width: 1200px) {}