@scaleflex/widget-common 4.4.0 → 4.5.1

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 (120) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/style.css +1126 -0
  3. package/dist/style.min.css +1 -0
  4. package/lib/ApprovalStatus/ApprovalStatus.styled.js +21 -0
  5. package/lib/ApprovalStatus/index.js +104 -0
  6. package/lib/AssetPreview.js +53 -0
  7. package/lib/AutoSuggest.js +166 -0
  8. package/lib/Avatar/Avatar.styled.js +25 -0
  9. package/lib/Avatar/index.js +83 -0
  10. package/lib/AvatarWithStatus/AvatarWithStatus.styled.js +12 -0
  11. package/lib/AvatarWithStatus/index.js +30 -0
  12. package/lib/BackButton.js +46 -0
  13. package/lib/BackdropOverlay.js +77 -0
  14. package/lib/BadgeButton.js +35 -0
  15. package/lib/BaseButton.js +36 -0
  16. package/lib/Button.js +29 -0
  17. package/lib/Carousel/Carousel.styled.js +19 -0
  18. package/lib/Carousel/index.js +136 -0
  19. package/lib/Checkbox.js +55 -0
  20. package/lib/CloseButton.js +46 -0
  21. package/lib/ColorPicker/ColorPicker.styled.js +29 -0
  22. package/lib/ColorPicker/index.js +117 -0
  23. package/lib/ColorPickerModal/ColorPickerModal.styled.js +17 -0
  24. package/lib/ColorPickerModal/index.js +103 -0
  25. package/lib/DatePicker/MyDatePicker.js +350 -0
  26. package/lib/DatePicker/index.js +1 -0
  27. package/lib/DropFilesWindow.js +45 -0
  28. package/lib/FilterItem/FilterItem.styled.js +42 -0
  29. package/lib/FilterItem/index.js +48 -0
  30. package/lib/FilterPopup/FilterPopup.styled.js +16 -0
  31. package/lib/FilterPopup/index.js +85 -0
  32. package/lib/FormControl.js +25 -0
  33. package/lib/FormGroup.js +18 -0
  34. package/lib/FormHelperText.js +29 -0
  35. package/lib/IconLabeledButton.js +32 -0
  36. package/lib/Image/Image.styled.js +16 -0
  37. package/lib/Image/index.js +95 -0
  38. package/lib/ImagePreview/ImagePreview.styled.js +19 -0
  39. package/lib/ImagePreview/index.js +198 -0
  40. package/lib/InputAndLabel.js +77 -0
  41. package/lib/InputGroupTime.js +6 -0
  42. package/lib/InputLabel.js +18 -0
  43. package/lib/ItemButtonOverlay/ItemButtonOverlay.styled.js +33 -0
  44. package/lib/ItemButtonOverlay/index.js +23 -0
  45. package/lib/ItemHoverTopOptions.js +58 -0
  46. package/lib/LoaderView/LoaderView.styled.js +37 -0
  47. package/lib/LoaderView/index.js +32 -0
  48. package/lib/MetaData/FilterMetadataFields.js +115 -0
  49. package/lib/MetaData/FilterMetadataFields.styled.js +16 -0
  50. package/lib/MetaData/MetaDataField.js +246 -0
  51. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldBooleanType.js +36 -0
  52. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldDateType.js +53 -0
  53. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldMultiSelectType.js +71 -0
  54. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldNumericType.js +45 -0
  55. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldSelectType.js +69 -0
  56. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldTagsType.js +143 -0
  57. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldTextType.js +42 -0
  58. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldTextareaType.js +72 -0
  59. package/lib/MetaData/MetaDataFieldTypes/MetaDataFieldTypes.styled.js +57 -0
  60. package/lib/MetaData/MetaDataFieldTypes/MetadataAttachmentsFieldType/AttachmentsAssetsMetadataAccordion.styled.js +95 -0
  61. package/lib/MetaData/MetaDataFieldTypes/MetadataAttachmentsFieldType/MetadataAttachmentsAction.js +188 -0
  62. package/lib/MetaData/MetaDataFieldTypes/MetadataAttachmentsFieldType/MetadataAttachmentsFieldType.constants.js +48 -0
  63. package/lib/MetaData/MetaDataFieldTypes/MetadataAttachmentsFieldType/MetadataAttachmentsInfo.js +93 -0
  64. package/lib/MetaData/MetaDataFieldTypes/MetadataAttachmentsFieldType/index.js +114 -0
  65. package/lib/MetaData/MetaDataFieldTypes/MetadataFieldUriType.js +71 -0
  66. package/lib/MetaData/MetaDataFieldTypes/MetadataGeoPointField/MetadataGeoPointField.styled.js +8 -0
  67. package/lib/MetaData/MetaDataFieldTypes/MetadataGeoPointField/constants.js +10 -0
  68. package/lib/MetaData/MetaDataFieldTypes/MetadataGeoPointField/index.js +135 -0
  69. package/lib/MetaData/MetaDataFieldTypes/index.js +9 -0
  70. package/lib/MetaData/MetaDataFieldTypes.hooks.js +53 -0
  71. package/lib/OverlayCard/OverlayCard.styled.js +8 -0
  72. package/lib/OverlayCard/index.js +28 -0
  73. package/lib/PoweredBy.js +12 -0
  74. package/lib/Radiobox.js +63 -0
  75. package/lib/RegionalVariantsFilters/RegionalVariantFilters.styled.js +17 -0
  76. package/lib/RegionalVariantsFilters/index.js +160 -0
  77. package/lib/SVGUrlToElement.js +73 -0
  78. package/lib/SearchGroup/SearchGroup.styled.js +93 -0
  79. package/lib/SearchGroup/index.js +293 -0
  80. package/lib/Spinner.js +40 -0
  81. package/lib/SuggestedSelectInput/SuggestedSelectInput.styled.js +57 -0
  82. package/lib/SuggestedSelectInput/index.js +238 -0
  83. package/lib/SuggestedTagsInput/SuggestedTagsInput.js +295 -0
  84. package/lib/SuggestedTagsInput/SuggestedTagsInput.styled.js +83 -0
  85. package/lib/SuggestedTagsInput/SuggestedTagsInput.utils.js +15 -0
  86. package/lib/SuggestedTagsInput/SuggestedTagsInputSkeleton.js +14 -0
  87. package/lib/Tabs.js +62 -0
  88. package/lib/ToggleButton/ToggleButton.styled.js +16 -0
  89. package/lib/ToggleButton/index.js +16 -0
  90. package/lib/Transitions/SlideTransition.js +24 -0
  91. package/lib/Transitions/TransitionWrapper.js +83 -0
  92. package/lib/Transitions/Transitions.styled.js +8 -0
  93. package/lib/Transitions/index.js +2 -0
  94. package/lib/Typography/Typography.js +47 -0
  95. package/lib/Typography/Typography.mixin.js +46 -0
  96. package/lib/Typography/Typography.styled.js +18 -0
  97. package/lib/Typography/index.js +3 -0
  98. package/lib/Typography/types/index.js +1 -0
  99. package/lib/Typography/types/variant.js +9 -0
  100. package/lib/UploadFileFloatyLabel/UploadFileFloatyLabel.mixin.js +23 -0
  101. package/lib/UploadFileFloatyLabel/UploadFileFloatyLabel.styled.js +24 -0
  102. package/lib/UploadFileFloatyLabel/index.js +12 -0
  103. package/lib/UsersAutocomplete/Tag.js +25 -0
  104. package/lib/UsersAutocomplete/Tag.styled.js +35 -0
  105. package/lib/UsersAutocomplete/UsersAutocomplete.styled.js +94 -0
  106. package/lib/UsersAutocomplete/index.js +303 -0
  107. package/lib/VirtualGrid/VirtualGrid.styled.js +33 -0
  108. package/lib/VirtualGrid/VirtualGrid.utils.js +38 -0
  109. package/lib/VirtualGrid/VirtualGridItem.js +15 -0
  110. package/lib/VirtualGrid/index.js +252 -0
  111. package/lib/VirtualList/VirtualListItem.js +14 -0
  112. package/lib/VirtualList/index.js +105 -0
  113. package/lib/hooks/index.js +4 -0
  114. package/lib/hooks/useDebounce.js +24 -0
  115. package/lib/hooks/useInputWithLocaleNumber.js +115 -0
  116. package/lib/hooks/useIsUnMountedRef.js +12 -0
  117. package/lib/hooks/useKeyboardNavigation.js +60 -0
  118. package/lib/hooks/useUpdateEffect.js +19 -0
  119. package/lib/index.js +36 -0
  120. package/package.json +4 -4
package/dist/style.css ADDED
@@ -0,0 +1,1126 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
2
+ .filerobot-Explorer-assets-picker-modal {
3
+ z-index: 100000;
4
+ }
5
+
6
+ .filerobot-common-BaseButton {
7
+ font-weight: 500;
8
+ padding: 8px 12px;
9
+ border-radius: 2px;
10
+ display: flex;
11
+ align-items: center;
12
+ justify-content: center;
13
+ cursor: pointer;
14
+ border: 0;
15
+ outline: none;
16
+ position: relative;
17
+ -webkit-user-select: none;
18
+ -moz-user-select: none;
19
+ user-select: none;
20
+ transition: all 100ms ease-in-out;
21
+ }
22
+ .filerobot-common-BaseButton span[role=container] {
23
+ z-index: 4;
24
+ display: flex;
25
+ align-items: center;
26
+ }
27
+ @media (max-width: 636px) {
28
+ .filerobot-common-BaseButton {
29
+ min-width: 32px;
30
+ min-height: 28px;
31
+ padding: 2px 6px;
32
+ }
33
+ }
34
+ @media (max-width: 636px) {
35
+ .filerobot-common-BaseButton span:not[role=container] {
36
+ display: none;
37
+ }
38
+ }
39
+ .filerobot-common-BaseButton:before {
40
+ content: "";
41
+ position: absolute;
42
+ width: 0;
43
+ height: 100%;
44
+ background: #d9dde0;
45
+ opacity: 0;
46
+ border-radius: 15px 2px 15px 5px;
47
+ transition: width 0.07s ease-in-out, border-radius 0.15s ease-in-out;
48
+ }
49
+ .filerobot-common-BaseButton:not(:disabled):active {
50
+ opacity: 1;
51
+ }
52
+ .filerobot-common-BaseButton:not(:disabled):active:before {
53
+ opacity: 1;
54
+ border-radius: inherit;
55
+ width: 100%;
56
+ }
57
+ .filerobot-common-BaseButton:disabled {
58
+ color: #bbb;
59
+ fill: #bbb;
60
+ cursor: not-allowed;
61
+ opacity: 0.8;
62
+ background: rgba(79, 98, 118, 0.7);
63
+ }
64
+ .filerobot-common-BaseButton:disabled *, .filerobot-common-BaseButton:disabled:before {
65
+ background: none;
66
+ fill: currentColor;
67
+ color: currentColor;
68
+ }
69
+
70
+ .filerobot-common-BaseButton-auto:not(disabled) :hover,
71
+ .filerobot-common-BaseButton-auto:not(disabled) :focus {
72
+ background: #EFF3F6;
73
+ }
74
+ .filerobot-common-BaseButton-auto:not(disabled) :hover *,
75
+ .filerobot-common-BaseButton-auto:not(disabled) :focus * {
76
+ color: #5D6D7E;
77
+ fill: #5D6D7E;
78
+ }
79
+
80
+ .filerobot-common-BaseButton-transparent {
81
+ background: transparent;
82
+ color: #5D6D7E;
83
+ }
84
+ .filerobot-common-BaseButton-transparent:not(:disabled):hover, .filerobot-common-BaseButton-transparent:not(:disabled):focus {
85
+ background: #EFF3F6;
86
+ }
87
+ .filerobot-common-BaseButton-transparent:not(:disabled):hover svg *, .filerobot-common-BaseButton-transparent:not(:disabled):focus svg * {
88
+ color: #5D6D7E;
89
+ fill: #5D6D7E;
90
+ }
91
+ .filerobot-common-BaseButton-transparent:not(:disabled):hover *, .filerobot-common-BaseButton-transparent:not(:disabled):focus * {
92
+ color: #5D6D7E;
93
+ }
94
+
95
+ .filerobot-common-BaseButton-primary {
96
+ color: #fff;
97
+ background: #4D4E4E;
98
+ }
99
+ .filerobot-common-BaseButton-primary:not(:disabled):hover {
100
+ filter: brightness(1.1);
101
+ }
102
+
103
+ .filerobot-common-BaseButton-accent {
104
+ color: #fff;
105
+ background: #6879EB;
106
+ }
107
+ .filerobot-common-BaseButton-accent:not(:disabled):hover {
108
+ filter: brightness(1.1);
109
+ }
110
+ .filerobot-common-BaseButton-accent:before {
111
+ background: #4958BC;
112
+ }
113
+
114
+ .filerobot-common-BaseButton-secondary {
115
+ color: #fff;
116
+ background: #768184;
117
+ }
118
+ .filerobot-common-BaseButton-secondary:not(:disabled):hover {
119
+ filter: brightness(1.1);
120
+ }
121
+
122
+ .filerobot-common-BaseButton-activeSecondary {
123
+ color: #5D6D7E;
124
+ background: #E9EEF2;
125
+ }
126
+
127
+ .filerobot-common-BaseButton-small {
128
+ font-size: 12px;
129
+ padding: 2px 6px;
130
+ }
131
+ .filerobot-common-BaseButton-small.filerobot-common-LabeledIconButton img {
132
+ min-height: 12px;
133
+ min-width: 12px;
134
+ max-height: 12px;
135
+ max-width: 12px;
136
+ }
137
+ .filerobot-common-BaseButton-small.filerobot-common-LabeledIconButton span:not([role=container]) {
138
+ margin-left: 4px;
139
+ }
140
+
141
+ .filerobot-common-BaseButton-medium {
142
+ font-size: 15px;
143
+ line-height: 16px;
144
+ }
145
+ .filerobot-common-BaseButton-medium.filerobot-common-LabeledIconButton img {
146
+ min-height: 12px;
147
+ min-width: 12px;
148
+ max-height: 12px;
149
+ max-width: 12px;
150
+ }
151
+
152
+ .filerobot-common-BaseButton-large {
153
+ font-size: 17px;
154
+ padding: 8px 14px;
155
+ }
156
+ .filerobot-common-BaseButton-large.filerobot-common-LabeledIconButton img {
157
+ min-height: 16px;
158
+ min-width: 16px;
159
+ max-height: 16px;
160
+ max-width: 16px;
161
+ }
162
+
163
+ .filerobot-common-BaseButton-fullWidth {
164
+ font-size: 17px;
165
+ width: 100%;
166
+ }
167
+ .filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton svg,
168
+ .filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton img {
169
+ min-height: 16px;
170
+ min-width: 16px;
171
+ max-height: 16px;
172
+ max-width: 16px;
173
+ }
174
+ .filerobot-common-BaseButton-fullWidth.filerobot-common-LabeledIconButton span:not([role=container]) {
175
+ margin-left: 8px;
176
+ }
177
+
178
+ .filerobot-common-LabeledIconButton-label {
179
+ margin-left: 4px;
180
+ }
181
+
182
+ .filerobot-common-BadgeButton {
183
+ padding: 8px 12px;
184
+ margin-right: 4px;
185
+ }
186
+ .filerobot-common-BadgeButton .filerobot-common-BadgeButton-badgeContent {
187
+ border-radius: 50%;
188
+ color: #6879EB;
189
+ background: #fff;
190
+ font-weight: 500;
191
+ margin-left: 4px;
192
+ font-size: 10px;
193
+ width: 14px;
194
+ height: 14px;
195
+ display: inline-flex;
196
+ justify-content: center;
197
+ align-items: center;
198
+ }
199
+ .filerobot-common-BadgeButton-activeSecondary .filerobot-common-BadgeButton-badgeContent {
200
+ color: #fff;
201
+ background: #5D6D7E;
202
+ }
203
+
204
+ .filerobot-common-BackCloseButton {
205
+ display: flex;
206
+ align-items: center;
207
+ }
208
+
209
+ .filerobot-common-BackCloseButton-button {
210
+ padding: 6px;
211
+ }
212
+
213
+ .filerobot-common-BackCloseButton-buttonMargin {
214
+ margin: 0 6px;
215
+ }
216
+
217
+ .filerobot-common-BackCloseButton-divider {
218
+ height: 22px;
219
+ }
220
+
221
+ .filerobot-common-BackdropOverlay {
222
+ position: fixed;
223
+ left: 0;
224
+ top: 0;
225
+ bottom: 0;
226
+ right: 0;
227
+ z-index: 1199;
228
+ }
229
+
230
+ .filerobot-common-verticalDivider {
231
+ background: #DFE7ED;
232
+ width: 1px;
233
+ }
234
+
235
+ .filerobot-common-Radio-wrapper {
236
+ display: inline-flex;
237
+ cursor: pointer;
238
+ align-items: center;
239
+ padding: 8px 0;
240
+ }
241
+ .filerobot-common-Radio-wrapper:first-child {
242
+ padding-top: 0;
243
+ }
244
+ .filerobot-common-Radio-wrapper:last-child {
245
+ padding-bottom: 0;
246
+ }
247
+
248
+ .filerobot-common-Radio {
249
+ display: inline-block;
250
+ padding-right: 8px;
251
+ }
252
+
253
+ .filerobot-common-Radio-label {
254
+ font-size: 16px;
255
+ line-height: 18px;
256
+ color: #37414B;
257
+ }
258
+
259
+ .filerobot-common-FormGroup:not(:last-child) {
260
+ margin-bottom: 16px;
261
+ }
262
+
263
+ .filerobot-common-FormControl-inline {
264
+ display: flex;
265
+ }
266
+ .filerobot-common-FormControl-with-hint {
267
+ margin-bottom: 0;
268
+ }
269
+ .filerobot-common-FormControl-error {
270
+ color: #E85B46;
271
+ }
272
+ .filerobot-common-FormControl-error .filerobot-common-InputLabel,
273
+ .filerobot-common-FormControl-error .filerobot-common-FormHelperText,
274
+ .filerobot-common-FormControl-error .SfxLabel-root,
275
+ .filerobot-common-FormControl-error .SfxFormHint-root {
276
+ color: #E85B46;
277
+ }
278
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root,
279
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Textarea,
280
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Select,
281
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Input,
282
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root {
283
+ color: #E85B46;
284
+ border-color: #E85B46;
285
+ background: #fff;
286
+ outline-color: #E85B46;
287
+ }
288
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:focus-within, .filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:focus, .filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:hover,
289
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Textarea:focus-within,
290
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Textarea:focus,
291
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Textarea:hover,
292
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Select:focus-within,
293
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Select:focus,
294
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Select:hover,
295
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Input:focus-within,
296
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Input:focus,
297
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .filerobot-common-Input:hover,
298
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:focus-within,
299
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:focus,
300
+ .filerobot-common-FormControl-error:not(:has([data-valid=true])) .SfxInput-root:hover {
301
+ border: 1px solid #E85B46;
302
+ outline: none;
303
+ }
304
+
305
+ .filerobot-common-InputLabel {
306
+ display: flex;
307
+ align-items: center;
308
+ margin-bottom: 3px;
309
+ font-size: 12px;
310
+ font-weight: 400;
311
+ color: #768184;
312
+ }
313
+
314
+ .filerobot-common-FormHelperText {
315
+ margin-top: 3px;
316
+ font-size: 10px;
317
+ color: #768184;
318
+ }
319
+ .filerobot-common-FormHelperText-medium {
320
+ font-size: 14px;
321
+ }
322
+ .filerobot-common-FormHelperText-no-margin {
323
+ margin: 0;
324
+ }
325
+
326
+ .filerobot-common-autoSuggest {
327
+ position: relative;
328
+ }
329
+ .filerobot-common-autoSuggest-list-wrapper {
330
+ position: absolute;
331
+ z-index: 11111111111111;
332
+ }
333
+
334
+ .suggestions-list {
335
+ border: 1px solid #ddd;
336
+ border-radius: 2px;
337
+ list-style: none;
338
+ margin-top: 0;
339
+ margin-left: 125px;
340
+ padding-left: 0;
341
+ font-size: 14px;
342
+ background-color: #fff;
343
+ max-height: 200px;
344
+ overflow-y: scroll;
345
+ overflow-x: hidden;
346
+ }
347
+ .suggestions-list li {
348
+ padding: 0.5rem;
349
+ font-size: 1rem;
350
+ }
351
+ .suggestions-tags {
352
+ display: inline-flex;
353
+ flex-wrap: wrap;
354
+ margin: 0;
355
+ padding: 0;
356
+ width: 100%;
357
+ list-style: none;
358
+ }
359
+ .suggestions-tags li {
360
+ position: relative;
361
+ align-items: center;
362
+ margin: 0 8px 8px 0;
363
+ padding: 4px 12px;
364
+ border-radius: 2px;
365
+ border: 1px dashed #5D6D7E;
366
+ background: transparent;
367
+ color: #5D6D7E;
368
+ display: flex;
369
+ font-family: "Roboto";
370
+ font-size: 14px;
371
+ line-height: 16.4px;
372
+ font-weight: 400;
373
+ list-style: none;
374
+ -webkit-user-select: none;
375
+ -moz-user-select: none;
376
+ user-select: none;
377
+ max-height: 24px;
378
+ }
379
+ .suggestions-tags li:hover .filerobot-c-icon {
380
+ display: block;
381
+ }
382
+ .suggestions-tags li .filerobot-c-icon {
383
+ display: none;
384
+ position: absolute;
385
+ top: 3px;
386
+ right: 3px;
387
+ width: 6px;
388
+ height: 6px;
389
+ color: #fff;
390
+ }
391
+ .suggestions-tags li button {
392
+ align-items: center;
393
+ -webkit-appearance: none;
394
+ -moz-appearance: none;
395
+ appearance: none;
396
+ background: transparent;
397
+ border: none;
398
+ border-radius: 50%;
399
+ color: #768184;
400
+ cursor: pointer;
401
+ display: inline-flex;
402
+ font-size: 12px;
403
+ height: 15px;
404
+ justify-content: center;
405
+ line-height: 0;
406
+ margin-left: 8px;
407
+ padding: 0;
408
+ transform: rotate(45deg);
409
+ width: 15px;
410
+ }
411
+
412
+ .no-suggestions {
413
+ color: #999;
414
+ padding: 0.5rem;
415
+ }
416
+
417
+ .suggestions-title {
418
+ display: flex;
419
+ align-items: center;
420
+ font-size: 12px;
421
+ font-weight: 400;
422
+ padding: 4px 0;
423
+ }
424
+ .suggestions-title svg {
425
+ margin-right: 4px;
426
+ }
427
+
428
+ .post-upload-suggestion {
429
+ margin-left: 0;
430
+ width: 100%;
431
+ }
432
+
433
+ .suggestion-active,
434
+ .suggestions li:hover {
435
+ cursor: pointer;
436
+ background: #5D6D7E;
437
+ color: #fff;
438
+ border: 1px solid #5D6D7E;
439
+ }
440
+
441
+ .suggestion-loading {
442
+ display: flex;
443
+ height: 100px;
444
+ font-size: 1rem;
445
+ justify-content: center;
446
+ align-items: center;
447
+ }
448
+
449
+ .filerobot-common-Checkbox-wrapper {
450
+ cursor: pointer;
451
+ display: flex;
452
+ align-items: center;
453
+ }
454
+
455
+ .filerobot-common-Checkbox {
456
+ display: flex;
457
+ align-items: center;
458
+ justify-content: center;
459
+ min-height: 16px;
460
+ max-height: 16px;
461
+ min-width: 16px;
462
+ max-width: 16px;
463
+ margin-right: 12px;
464
+ background: #F8FAFB;
465
+ border: 1px solid #DFE7ED;
466
+ border-radius: 1px;
467
+ outline: none;
468
+ text-align: center;
469
+ cursor: pointer;
470
+ }
471
+
472
+ .filerobot-common-Checkbox-label {
473
+ font-size: 12px;
474
+ line-height: 14px;
475
+ max-width: calc(100% - 16px);
476
+ overflow: hidden;
477
+ white-space: nowrap;
478
+ text-overflow: ellipsis;
479
+ }
480
+
481
+ .filerobot-common-Tabs-wrapper {
482
+ display: flex;
483
+ width: 92%;
484
+ padding-left: 12px;
485
+ }
486
+
487
+ .filerobot-common-Tabs {
488
+ display: flex;
489
+ border-bottom: 1px solid #DFE7ED;
490
+ border-top: 1px solid #DFE7ED;
491
+ background-color: #F8FAFB;
492
+ align-items: center;
493
+ }
494
+ .filerobot-common-Tabs-panel {
495
+ position: relative;
496
+ margin-bottom: -1px;
497
+ font-size: 12px;
498
+ }
499
+ .filerobot-common-Tabs-panel > input[type=radio] {
500
+ position: absolute;
501
+ left: -200vw;
502
+ }
503
+ .filerobot-common-Tabs-panel .bottom-line {
504
+ display: none;
505
+ position: absolute;
506
+ background: #6879EB;
507
+ bottom: 0;
508
+ left: 7px;
509
+ right: 7px;
510
+ height: 1px;
511
+ }
512
+ .filerobot-common-Tabs-panel > label {
513
+ color: #5D6D7E;
514
+ position: relative;
515
+ display: flex;
516
+ padding: 7px;
517
+ border: 1px solid transparent;
518
+ border-top-left-radius: 0.1rem;
519
+ border-top-right-radius: 0.1rem;
520
+ cursor: pointer;
521
+ }
522
+ .filerobot-common-Tabs-panel > label > svg {
523
+ margin-right: 8px;
524
+ height: 12px;
525
+ width: 12px;
526
+ }
527
+ .filerobot-common-Tabs-panel:first-child > label {
528
+ padding-left: 0;
529
+ }
530
+ .filerobot-common-Tabs-panel:first-child > label + .bottom-line {
531
+ left: 0;
532
+ }
533
+ .filerobot-common-Tabs-panel > input:checked + label {
534
+ color: #6879EB;
535
+ }
536
+ .filerobot-common-Tabs-panel > input:checked + label + .bottom-line {
537
+ display: block;
538
+ }
539
+ .filerobot-common-Tabs .subtabs-wrapper {
540
+ padding: 12px 0;
541
+ }
542
+
543
+ .filerobot-common-inputAndLabel {
544
+ margin-bottom: 16px;
545
+ }
546
+ .filerobot-common-inputAndLabel-form-group {
547
+ margin-bottom: 19px;
548
+ }
549
+ .filerobot-common-inputAndLabel-input-header {
550
+ font-size: 14px;
551
+ line-height: 16px;
552
+ font-weight: 400;
553
+ margin-bottom: 3px;
554
+ }
555
+ .filerobot-common-inputAndLabel-header-links-label {
556
+ display: flex;
557
+ align-items: center;
558
+ color: #768A9F;
559
+ }
560
+ .filerobot-common-inputAndLabel-input-text-wrapper {
561
+ position: relative;
562
+ width: 100%;
563
+ }
564
+ .filerobot-common-inputAndLabel-input-text-wrapper input[type=time]::-webkit-calendar-picker-indicator {
565
+ opacity: 0;
566
+ display: block;
567
+ width: 20px;
568
+ height: 20px;
569
+ z-index: 2;
570
+ margin-top: 2px;
571
+ cursor: pointer;
572
+ }
573
+ .filerobot-common-inputAndLabel-input-text-wrapper-disable-icon input[type=date]::-webkit-calendar-picker-indicator {
574
+ display: none;
575
+ }
576
+ .filerobot-common-inputAndLabel-input-icon {
577
+ position: absolute;
578
+ top: 0;
579
+ right: 0;
580
+ margin: 6px;
581
+ cursor: pointer;
582
+ }
583
+ .filerobot-common-inputAndLabel-input-text {
584
+ width: 100%;
585
+ font-size: 16px;
586
+ line-height: 18px;
587
+ padding: 10px 16px;
588
+ background-color: #fff;
589
+ border: 1px solid #CCD6DE;
590
+ border-radius: 4px;
591
+ transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
592
+ cursor: auto;
593
+ font-family: "Roboto";
594
+ font-weight: 400;
595
+ }
596
+ .filerobot-common-inputAndLabel-input-text:focus {
597
+ background-color: #FFFFFF !important;
598
+ border: 1px solid rgb(104, 121, 235);
599
+ outline: none;
600
+ }
601
+ .filerobot-common-inputAndLabel-input-text:hover {
602
+ background-color: rgb(239, 243, 246);
603
+ }
604
+
605
+ .filerobot-common-Spinner {
606
+ display: flex;
607
+ align-items: center;
608
+ justify-content: center;
609
+ margin-right: 6px;
610
+ }
611
+ .filerobot-common-Spinner svg {
612
+ animation: rotating-spinner 2s linear infinite;
613
+ }
614
+
615
+ .filerobot-common-Spinner-noMargin {
616
+ margin: 0;
617
+ }
618
+
619
+ .filerobot-common-Spinner-filledCentered {
620
+ width: 100%;
621
+ height: 100%;
622
+ margin: 0;
623
+ padding: 8px;
624
+ }
625
+
626
+ .filerobot-common-Spinner-spinnerContainer {
627
+ height: 100%;
628
+ width: 100%;
629
+ overflow: hidden;
630
+ display: flex;
631
+ justify-content: center;
632
+ align-items: center;
633
+ padding: 2px;
634
+ }
635
+ .filerobot-common-Spinner-spinnerContainer svg {
636
+ width: 30px;
637
+ height: 30px;
638
+ }
639
+ @keyframes rotating-spinner {
640
+ from {
641
+ transform: rotate(0deg);
642
+ }
643
+ to {
644
+ transform: rotate(360deg);
645
+ }
646
+ }
647
+ .filerobot-common-ItemHoverTopOptions {
648
+ position: absolute;
649
+ top: 4%;
650
+ right: 3%;
651
+ bottom: 0;
652
+ display: flex;
653
+ visibility: hidden;
654
+ z-index: 3;
655
+ width: 100%;
656
+ justify-content: flex-end;
657
+ padding: 2px 4px 2px 24px;
658
+ align-items: flex-start;
659
+ pointer-events: none;
660
+ border-radius: inherit;
661
+ transition: all 100ms ease-in-out;
662
+ }
663
+ .filerobot-common-ItemHoverTopOptions button {
664
+ min-width: 12px;
665
+ min-height: 16px;
666
+ padding: 4px 7px;
667
+ height: auto;
668
+ pointer-events: auto;
669
+ background: rgba(79, 98, 118, 0.7);
670
+ width: 24px;
671
+ height: 24px;
672
+ border-radius: 50%;
673
+ margin: 0 2px;
674
+ transition: all 100ms ease-in-out;
675
+ }
676
+ .filerobot-common-ItemHoverTopOptions button svg * {
677
+ color: #fff;
678
+ fill: #fff;
679
+ }
680
+ .filerobot-common-ItemHoverTopOptions button:not(:active, :disabled):hover {
681
+ background: rgb(55, 65, 75);
682
+ }
683
+ .filerobot-common-ItemHoverTopOptions button:not(:active, :disabled):hover svg * {
684
+ fill: #DFE7ED;
685
+ color: #DFE7ED;
686
+ }
687
+ *:hover > .filerobot-common-ItemHoverTopOptions {
688
+ visibility: visible;
689
+ }
690
+ .filerobot-common-ItemHoverTopOptions-disableHover {
691
+ display: flex;
692
+ visibility: visible;
693
+ }
694
+ .filerobot-common-ItemHoverTopOptions-disableHover:hover {
695
+ background: none;
696
+ }
697
+
698
+ .filerobot-common-DropFilesHereHint {
699
+ visibility: hidden;
700
+ position: absolute;
701
+ top: 0;
702
+ bottom: 0;
703
+ right: 0;
704
+ pointer-events: none;
705
+ left: 0;
706
+ width: 100%;
707
+ height: 100%;
708
+ z-index: 2000;
709
+ text-align: center;
710
+ color: #768184;
711
+ font-size: 24px;
712
+ line-height: 28px;
713
+ background-color: rgba(255, 255, 255, 0.9);
714
+ }
715
+ .filerobot-common-DropFilesHereHint-inner {
716
+ display: flex;
717
+ flex-direction: column;
718
+ align-items: center;
719
+ justify-content: center;
720
+ position: absolute;
721
+ top: 7px;
722
+ right: 7px;
723
+ bottom: 7px;
724
+ left: 7px;
725
+ border: 1px dashed #5282DB;
726
+ border-radius: 3px;
727
+ }
728
+ .filerobot-common-DropFilesHereHint-inner svg {
729
+ margin-bottom: 25px;
730
+ animation: 2s moving ease infinite;
731
+ }
732
+ @keyframes moving {
733
+ 0%, 100% {
734
+ transform: scale(1) translate(0, 0);
735
+ }
736
+ 50% {
737
+ transform: scale(1.1) translate(0, -10px);
738
+ }
739
+ }
740
+ [data-filerobot-theme=dark] .filerobot-common-DropFilesHereHint {
741
+ color: #bbb;
742
+ border-color: #02baf2;
743
+ background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 1v1C11.85 2 2 11.85 2 24s9.85 22 22 22 22-9.85 22-22S36.15 2 24 2V1zm0 0V0c13.254 0 24 10.746 24 24S37.254 48 24 48 0 37.254 0 24 10.746 0 24 0v1zm7.707 19.293a.999.999 0 1 1-1.414 1.414L25 16.414V34a1 1 0 1 1-2 0V16.414l-5.293 5.293a.999.999 0 1 1-1.414-1.414l7-7a.999.999 0 0 1 1.414 0l7 7z' fill='%2302BAF2' fillRule='nonzero'/%3E%3C/svg%3E");
744
+ }
745
+
746
+ .filerobot-common-DropFilesTarget * {
747
+ pointer-events: none;
748
+ }
749
+
750
+ .filerobot-common-DropFilesHereHint-visible {
751
+ visibility: visible;
752
+ }
753
+
754
+ .filerobot-common-Search .filerobot-c-separator {
755
+ height: 70%;
756
+ margin: 0;
757
+ }
758
+
759
+ .filerobot-common-Search-searchButton {
760
+ height: 100%;
761
+ padding: 12px;
762
+ padding-top: 10px;
763
+ cursor: pointer;
764
+ }
765
+
766
+ .filerobot-common-Search {
767
+ display: flex;
768
+ position: relative;
769
+ height: 40px;
770
+ background: #fff;
771
+ border: 1px solid #DFE7ED;
772
+ border-radius: 4px;
773
+ align-items: center;
774
+ white-space: nowrap;
775
+ }
776
+
777
+ .filerobot-common-Search:focus-within,
778
+ .filerobot-common-Search:active {
779
+ background-color: rgb(255, 255, 255) !important;
780
+ }
781
+ .filerobot-common-Search:focus-within .filerobot-common-Search-searchInput,
782
+ .filerobot-common-Search:active .filerobot-common-Search-searchInput {
783
+ background-color: rgb(255, 255, 255) !important;
784
+ }
785
+
786
+ .filerobot-common-Search-searchInput {
787
+ height: -moz-fit-content;
788
+ height: fit-content;
789
+ flex-grow: 1;
790
+ box-sizing: border-box;
791
+ display: flex;
792
+ align-items: center;
793
+ font-size: 14px;
794
+ outline: none;
795
+ border: none;
796
+ min-width: 24px;
797
+ width: 100%;
798
+ margin: 6px 0px;
799
+ }
800
+ .filerobot-common-Search-searchInput button {
801
+ height: 100%;
802
+ }
803
+ .filerobot-common-Search-searchInput .filerobot-common-TopBar-input-fragment {
804
+ display: inherit;
805
+ height: inherit;
806
+ width: inherit;
807
+ }
808
+ .filerobot-common-Search-searchInput:focus {
809
+ outline: none;
810
+ }
811
+ [data-filerobot-theme=dark] .filerobot-common-Search-searchInput {
812
+ background-color: #1f1f1f;
813
+ }
814
+ [data-filerobot-theme=dark] .filerobot-common-Search-searchInput {
815
+ color: #fff;
816
+ }
817
+ .filerobot-common-Search-searchInput::-moz-placeholder {
818
+ font-size: 14px;
819
+ font-style: normal;
820
+ font-weight: 400;
821
+ color: #A9B6C2;
822
+ }
823
+ .filerobot-common-Search-searchInput::placeholder {
824
+ font-size: 14px;
825
+ font-style: normal;
826
+ font-weight: 400;
827
+ color: #A9B6C2;
828
+ }
829
+
830
+ .filerobot-common-Search-searchAndAppendedOptions {
831
+ display: flex;
832
+ align-items: center;
833
+ height: 100%;
834
+ }
835
+
836
+ .filerobot-common-Search-searchAndFiltersInputs {
837
+ position: relative;
838
+ display: flex;
839
+ align-items: center;
840
+ height: 100%;
841
+ max-height: 100%;
842
+ flex-grow: 1;
843
+ overflow: auto hidden;
844
+ white-space: nowrap;
845
+ -ms-overflow-style: none;
846
+ }
847
+
848
+ .filerobot-common-PoweredBy-label {
849
+ border: 1px solid #DFE7ED;
850
+ border-bottom: 0;
851
+ background-color: #F8FAFB;
852
+ border-radius: 0;
853
+ color: #778285;
854
+ position: absolute;
855
+ right: 0;
856
+ bottom: 0;
857
+ padding: 4px 14px;
858
+ border-top-left-radius: 40px;
859
+ font-size: 10px;
860
+ -webkit-user-select: none;
861
+ -moz-user-select: none;
862
+ user-select: none;
863
+ z-index: 1001;
864
+ margin-right: -1px;
865
+ }
866
+
867
+ .filerobot-common-secondaryTxt {
868
+ color: #939393;
869
+ font-size: 12px;
870
+ line-height: 14px;
871
+ }
872
+
873
+ .filerobot-TransitionWrapper {
874
+ --translateX: 0;
875
+ --translateY-shown: 0;
876
+ --translateY-hidden: -105%;
877
+ display: none;
878
+ position: absolute;
879
+ top: 0;
880
+ background: #fff;
881
+ overflow-y: hidden;
882
+ }
883
+ .filerobot-TransitionWrapper.--applied {
884
+ display: block;
885
+ z-index: 1002;
886
+ height: 100%;
887
+ width: 100%;
888
+ }
889
+
890
+ .filerobot-transition-slideDownUp-enter {
891
+ opacity: 0.01;
892
+ transform: translate3d(var(--translateX), var(--translateY-hidden), 0);
893
+ transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
894
+ }
895
+
896
+ .filerobot-transition-slideDownUp-enter.filerobot-transition-slideDownUp-enter-active {
897
+ opacity: 1;
898
+ transform: translate3d(var(--translateX), var(--translateY-shown), 0);
899
+ }
900
+
901
+ .filerobot-transition-slideDownUp-leave {
902
+ opacity: 1;
903
+ transform: translate3d(var(--translateX), var(--translateY-shown), 0);
904
+ transition: transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
905
+ }
906
+
907
+ .filerobot-transition-slideDownUp-leave.filerobot-transition-slideDownUp-leave-active {
908
+ opacity: 0.01;
909
+ transform: translate3d(var(--translateX), var(--translateY-hidden), 0);
910
+ }
911
+
912
+ .filerobot-common-datePicker {
913
+ position: relative;
914
+ }
915
+ .filerobot-common-datePicker * {
916
+ -webkit-touch-callout: none; /* iOS Safari */
917
+ -webkit-user-select: none; /* Chrome/Safari/Opera */ /* Konqueror */
918
+ -moz-user-select: none; /* Firefox */ /* Internet Explorer/Edge */
919
+ user-select: none; /* Non-prefixed version, currently */
920
+ }
921
+ .filerobot-common-datePicker-overlay {
922
+ position: absolute;
923
+ top: 0;
924
+ left: 0;
925
+ right: 0;
926
+ bottom: 0;
927
+ }
928
+ .filerobot-common-datePicker-input {
929
+ overflow: hidden;
930
+ }
931
+ .filerobot-common-datePicker-input input {
932
+ cursor: pointer;
933
+ }
934
+ .filerobot-common-datePicker-input input:focus {
935
+ outline: none;
936
+ }
937
+ .filerobot-common-datePicker-container {
938
+ position: absolute;
939
+ width: 215px;
940
+ min-height: 200px;
941
+ max-height: 240px;
942
+ background: #fff;
943
+ box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
944
+ border-radius: 4px;
945
+ overflow: hidden;
946
+ padding: 12px 12px;
947
+ z-index: 11111111111111;
948
+ }
949
+ .filerobot-common-datePicker-container-head {
950
+ display: flex;
951
+ align-items: center;
952
+ }
953
+ .filerobot-common-datePicker-container-head-body {
954
+ float: left;
955
+ width: 120px;
956
+ height: 100%;
957
+ }
958
+ .filerobot-common-datePicker-container-head-body-year {
959
+ width: 100%;
960
+ height: 30px;
961
+ font-size: 27px;
962
+ color: #5D6D7E;
963
+ font-weight: 200px;
964
+ text-align: center;
965
+ float: left;
966
+ }
967
+ .filerobot-common-datePicker-container-head-body-month {
968
+ float: left;
969
+ width: 100%;
970
+ height: 15px;
971
+ font-size: 13px;
972
+ color: #5D6D7E;
973
+ font-weight: 200px;
974
+ text-align: center;
975
+ }
976
+ .filerobot-common-datePicker-container-head-button {
977
+ width: 45px;
978
+ height: 100%;
979
+ box-sizing: border-box;
980
+ position: relative;
981
+ }
982
+ .filerobot-common-datePicker-container-head-button-inner {
983
+ float: left;
984
+ height: 25px;
985
+ width: 25px;
986
+ background: #f4f4f4;
987
+ border-radius: 2px;
988
+ line-height: 35px;
989
+ text-align: center;
990
+ position: absolute;
991
+ top: 50%;
992
+ left: 50%;
993
+ margin-left: -17px;
994
+ margin-top: -17px;
995
+ }
996
+ .filerobot-common-datePicker-container-head-button-inner:hover > span {
997
+ border-color: #555 !important;
998
+ }
999
+ .filerobot-common-datePicker-container-head-button-inner:hover {
1000
+ cursor: pointer;
1001
+ background: #eee;
1002
+ }
1003
+ .filerobot-common-datePicker-calendar {
1004
+ width: 100%;
1005
+ height: 100%;
1006
+ }
1007
+ .filerobot-common-datePicker-calendar-body, .filerobot-common-datePicker-calendar-day span, .filerobot-common-datePicker-calendar-day, .filerobot-common-datePicker-calendar-day-container {
1008
+ position: relative;
1009
+ display: block;
1010
+ float: left;
1011
+ box-sizing: border-box;
1012
+ }
1013
+ .filerobot-common-datePicker-calendar-body {
1014
+ height: 250px;
1015
+ width: 100%;
1016
+ }
1017
+ .filerobot-common-datePicker-calendar-day {
1018
+ width: 14%;
1019
+ height: 10%;
1020
+ }
1021
+ .filerobot-common-datePicker-calendar-day-container {
1022
+ width: 100%;
1023
+ height: 100%;
1024
+ font-size: 12px;
1025
+ font-weight: 300;
1026
+ color: #37414B;
1027
+ text-align: center;
1028
+ }
1029
+ .filerobot-common-datePicker-calendar-day-container span {
1030
+ width: 25px;
1031
+ height: 25px;
1032
+ margin-top: -15px;
1033
+ margin-left: -15px;
1034
+ left: 50%;
1035
+ top: 50%;
1036
+ font-weight: 400;
1037
+ border-radius: 2px;
1038
+ line-height: 30px;
1039
+ }
1040
+ .filerobot-common-datePicker-calendar-day-container span:hover {
1041
+ cursor: pointer;
1042
+ background: #E9EEF2;
1043
+ }
1044
+ .filerobot-common-datePicker-calendar-day.disabled {
1045
+ pointer-events: none;
1046
+ }
1047
+ .filerobot-common-datePicker-calendar-day.disabled .filerobot-common-datePicker-calendar-day-container span {
1048
+ color: #ddd;
1049
+ }
1050
+ .filerobot-common-datePicker-calendar-day.disabled .filerobot-common-datePicker-calendar-day-container span {
1051
+ background: #fff !important;
1052
+ }
1053
+ .filerobot-common-datePicker-calendar-day.highlight .filerobot-common-datePicker-calendar-day-container span {
1054
+ background: #5D6D7E;
1055
+ }
1056
+ .filerobot-common-datePicker-calendar-day.highlight-green .filerobot-common-datePicker-calendar-day-container span {
1057
+ background: #4958BC;
1058
+ color: #fff;
1059
+ }
1060
+ .filerobot-common-datePicker-calendar-head {
1061
+ display: flex;
1062
+ height: 20px;
1063
+ width: 100%;
1064
+ margin-top: 2px;
1065
+ margin-bottom: 5px;
1066
+ }
1067
+ .filerobot-common-datePicker-calendar-head-name {
1068
+ width: 14.285%;
1069
+ height: 30px;
1070
+ line-height: 30px;
1071
+ font-weight: 700;
1072
+ color: #5D6D7E;
1073
+ font-size: 9px;
1074
+ text-align: center;
1075
+ }
1076
+
1077
+ .mdpchbi-right-arrows:after,
1078
+ .mdpchbi-left-arrows:after,
1079
+ .mdpchbi-right-arrow,
1080
+ .mdpchbi-right-arrows,
1081
+ .mdpchbi-left-arrow,
1082
+ .mdpchbi-left-arrows {
1083
+ display: block;
1084
+ float: left;
1085
+ width: 6px;
1086
+ height: 6px;
1087
+ border-left: 2px solid #888;
1088
+ border-bottom: 2px solid #888;
1089
+ position: absolute;
1090
+ }
1091
+
1092
+ .mdpchbi-right-arrow,
1093
+ .mdpchbi-right-arrows,
1094
+ .mdpchbi-left-arrow,
1095
+ .mdpchbi-left-arrows {
1096
+ transform: rotate(45deg);
1097
+ left: 50%;
1098
+ top: 50%;
1099
+ margin-left: -2px;
1100
+ margin-top: -4px;
1101
+ }
1102
+
1103
+ .mdpchbi-right-arrows,
1104
+ .mdpchbi-right-arrow {
1105
+ transform: rotate(225deg);
1106
+ margin-left: -4px;
1107
+ }
1108
+
1109
+ .mdpchbi-right-arrows:after,
1110
+ .mdpchbi-left-arrows:after {
1111
+ content: "";
1112
+ }
1113
+
1114
+ .mdpchbi-left-arrows {
1115
+ margin-left: -5px;
1116
+ }
1117
+
1118
+ .mdpchbi-right-arrows {
1119
+ margin-left: -2px;
1120
+ }
1121
+
1122
+ .mdpchbi-right-arrows:after,
1123
+ .mdpchbi-left-arrows:after {
1124
+ left: 3px;
1125
+ top: -5px;
1126
+ }