@syncfusion/ej2-filemanager 27.2.5 → 28.1.33

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 (51) hide show
  1. package/README.md +2 -2
  2. package/dist/ej2-filemanager.min.js +3 -3
  3. package/dist/ej2-filemanager.umd.min.js +3 -3
  4. package/dist/ej2-filemanager.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-filemanager.es2015.js +94 -18
  6. package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
  7. package/dist/es6/ej2-filemanager.es5.js +94 -18
  8. package/dist/es6/ej2-filemanager.es5.js.map +1 -1
  9. package/dist/global/ej2-filemanager.min.js +3 -3
  10. package/dist/global/ej2-filemanager.min.js.map +1 -1
  11. package/dist/global/index.d.ts +2 -2
  12. package/package.json +16 -16
  13. package/src/file-manager/base/file-manager-model.d.ts +2 -1
  14. package/src/file-manager/base/file-manager.d.ts +4 -1
  15. package/src/file-manager/base/file-manager.js +39 -4
  16. package/src/file-manager/common/operations.js +7 -4
  17. package/src/file-manager/common/utility.d.ts +9 -0
  18. package/src/file-manager/common/utility.js +17 -1
  19. package/src/file-manager/layout/details-view.js +10 -0
  20. package/src/file-manager/layout/large-icons-view.js +7 -5
  21. package/src/file-manager/models/upload-settings-model.d.ts +9 -0
  22. package/src/file-manager/models/upload-settings.d.ts +8 -0
  23. package/src/file-manager/models/upload-settings.js +3 -0
  24. package/src/file-manager/pop-up/context-menu.d.ts +1 -0
  25. package/src/file-manager/pop-up/context-menu.js +4 -3
  26. package/src/file-manager/pop-up/dialog.js +8 -2
  27. package/styles/bds-lite.css +1284 -0
  28. package/styles/bds-lite.scss +16 -0
  29. package/styles/bds.css +1876 -0
  30. package/styles/bds.scss +17 -0
  31. package/styles/file-manager/_bigger.scss +69 -6
  32. package/styles/file-manager/_fluent2-definition.scss +1 -1
  33. package/styles/file-manager/_layout.scss +77 -14
  34. package/styles/file-manager/_material3-definition.scss +2 -2
  35. package/styles/file-manager/_tailwind3-definition.scss +243 -0
  36. package/styles/file-manager/_theme.scss +4 -1
  37. package/styles/file-manager/bds.css +1876 -0
  38. package/styles/file-manager/bds.scss +17 -0
  39. package/styles/file-manager/fluent2.css +2 -2
  40. package/styles/file-manager/icons/_tailwind3.scss +235 -0
  41. package/styles/file-manager/material3-dark.css +3 -2
  42. package/styles/file-manager/material3.css +3 -2
  43. package/styles/file-manager/tailwind3.css +1666 -0
  44. package/styles/file-manager/tailwind3.scss +17 -0
  45. package/styles/fluent2.css +2 -2
  46. package/styles/material3-dark.css +3 -2
  47. package/styles/material3.css +3 -2
  48. package/styles/tailwind3-lite.css +1069 -0
  49. package/styles/tailwind3-lite.scss +16 -0
  50. package/styles/tailwind3.css +1666 -0
  51. package/styles/tailwind3.scss +17 -0
@@ -0,0 +1,17 @@
1
+ @import 'ej2-base/styles/definition/bds.scss';
2
+ @import 'ej2-inputs/styles/input/bds-definition.scss';
3
+ @import 'ej2-inputs/styles/textbox/bds-definition.scss';
4
+ @import 'ej2-inputs/styles/uploader/bds-definition.scss';
5
+ @import 'ej2-popups/styles/dialog/bds-definition.scss';
6
+ @import 'ej2-popups/styles/spinner/bds-definition.scss';
7
+ @import 'ej2-buttons/styles/check-box/bds-definition.scss';
8
+ @import 'ej2-splitbuttons/styles/drop-down-button/bds-definition.scss';
9
+ @import 'ej2-navigations/styles/context-menu/bds-definition.scss';
10
+ @import 'ej2-navigations/styles/treeview/bds-definition.scss';
11
+ @import 'ej2-navigations/styles/toolbar/bds-definition.scss';
12
+ @import 'ej2-layouts/styles/splitter/bds-definition.scss';
13
+ @import 'ej2-grids/styles/grid/bds-definition.scss';
14
+ @import 'file-manager/bds-definition.scss';
15
+ @import 'file-manager/icons/bds.scss';
16
+ @import 'file-manager/all.scss';
17
+ @import 'file-manager/bigger.scss';
@@ -27,6 +27,10 @@
27
27
  font-size: 10px;
28
28
  margin: 0;
29
29
  }
30
+ @if $fm-skin-name == 'tailwind3' {
31
+ line-height: 21px;
32
+ @include size(24px, 24px);
33
+ }
30
34
  }
31
35
  }
32
36
 
@@ -160,6 +164,9 @@
160
164
  @if $fm-skin-name == 'material-dark' {
161
165
  padding: $fe-big-bc-padding;
162
166
  }
167
+ @if $fm-skin-name == 'tailwind3' {
168
+ padding: 16px;
169
+ }
163
170
  }
164
171
 
165
172
  .e-address-list-item .e-icons {
@@ -168,6 +175,9 @@
168
175
 
169
176
  .e-list-text {
170
177
  font-size: $fe-big-bc-font-size;
178
+ @if $fm-skin-name == 'tailwind3' {
179
+ line-height: 24px;
180
+ }
171
181
  }
172
182
 
173
183
  .e-search-wrap {
@@ -214,7 +224,9 @@
214
224
  .e-rowcell {
215
225
  border-bottom: 1px solid;
216
226
  border-bottom-color: $fe-border-color;
217
-
227
+ @if $fm-skin-name == 'tailwind3' {
228
+ padding: 10px 12px;
229
+ }
218
230
  &.e-fe-checkbox {
219
231
  padding: 0;
220
232
  }
@@ -226,6 +238,10 @@
226
238
  padding-left: 9px;
227
239
  padding-right: 9px;
228
240
  }
241
+ @else if $fm-skin-name == 'tailwind3' {
242
+ padding-left: 15px;
243
+ padding-right: 15px;
244
+ }
229
245
  @else {
230
246
  padding-left: 10px;
231
247
  padding-right: 10px;
@@ -236,6 +252,13 @@
236
252
  @include ellipsis;
237
253
  }
238
254
 
255
+ @if $fm-skin-name == 'tailwind3' {
256
+ .e-fe-text {
257
+ font-size: 16px;
258
+ line-height: 24px;
259
+ }
260
+ }
261
+
239
262
  @if $fm-skin-name == 'fluent2' {
240
263
  .e-fe-text {
241
264
  font-size: $text-base;
@@ -243,7 +266,7 @@
243
266
  }
244
267
  .e-fe-date,
245
268
  .e-fe-size {
246
- color: $fe-grid-empty-inner-content-color;
269
+ color: $content-text-color-alt2;
247
270
  }
248
271
  }
249
272
  }
@@ -254,6 +277,9 @@
254
277
 
255
278
  .e-large-icons .e-list-parent {
256
279
  padding: 0;
280
+ @if ($fm-skin-name == 'tailwind3') {
281
+ padding: 0 8px;
282
+ }
257
283
 
258
284
  .e-list-item {
259
285
  display: inline-table;
@@ -275,8 +301,13 @@
275
301
  .e-list-text {
276
302
  margin: 0 auto;
277
303
  width: $fe-mobile-lg-item-inner-width;
304
+ @if $fm-skin-name == 'tailwind3' {
305
+ font-size: $fe-big-lg-text-font-size;
306
+ line-height: 24px;
307
+ }
278
308
  @if $fm-skin-name == 'Material3' {
279
309
  font-size: $fe-big-lg-text-font-size;
310
+ padding: $fe-big-lg-text-padding;
280
311
  }
281
312
  }
282
313
 
@@ -324,6 +355,9 @@
324
355
  @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
325
356
  margin-top: 7px;
326
357
  }
358
+ @else if ($fm-skin-name == 'tailwind3') {
359
+ margin-top: 15px;
360
+ }
327
361
  @else {
328
362
  margin-top: 3px;
329
363
  }
@@ -460,6 +494,13 @@
460
494
  }
461
495
  }
462
496
 
497
+ @if $fm-skin-name == 'tailwind3' {
498
+ .e-list-icon {
499
+ height: 24px;
500
+ width: 24px;
501
+ }
502
+ }
503
+
463
504
  .e-list-parent .e-list-item {
464
505
  .e-fullrow {
465
506
  height: $fe-big-tv-fullrow-height;
@@ -469,6 +510,12 @@
469
510
  line-height: $fe-big-tv-node-height;
470
511
  }
471
512
  }
513
+
514
+ .e-text-content {
515
+ @if ($fm-skin-name == 'tailwind3') {
516
+ height: $fe-big-tv-fullrow-height;
517
+ }
518
+ }
472
519
  }
473
520
 
474
521
  .e-address {
@@ -487,6 +534,9 @@
487
534
  }
488
535
  .e-icons {
489
536
  font-size: $fe-big-bc-icon-font-size;
537
+ @if ($fm-skin-name == 'tailwind3') {
538
+ margin: $fe-big-bc-icon-margin;
539
+ }
490
540
  }
491
541
  }
492
542
 
@@ -548,6 +598,12 @@
548
598
  @else if $fm-skin-name == 'Material3' {
549
599
  @include margin-padding($fe-search-icon-margin, $fe-big-search-input-padding);
550
600
  }
601
+ @else if ($fm-skin-name == 'tailwind3') {
602
+ font-size: 16px;
603
+ line-height: 16px;
604
+ margin: 9px 10px 8px 9px;
605
+ padding: 4px;
606
+ }
551
607
  @else {
552
608
  margin: 7px 0;
553
609
  }
@@ -556,7 +612,11 @@
556
612
 
557
613
  .e-grid {
558
614
  @include checkbox($fe-big-cb-line-height);
559
-
615
+ @if $fm-skin-name == 'tailwind3' {
616
+ .e-checkbox-wrapper .e-frame {
617
+ margin: 0;
618
+ }
619
+ }
560
620
  .e-gridheader {
561
621
  .e-headercell {
562
622
  height: $fe-big-grid-header-height;
@@ -615,7 +675,7 @@
615
675
  }
616
676
 
617
677
  .e-fe-icon {
618
- @if $fm-skin-name == 'tailwind' {
678
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'tailwind3' {
619
679
  @include size(24px, 24px);
620
680
  }
621
681
  @else {
@@ -626,7 +686,7 @@
626
686
  @include empty-style($fe-big-grid-empty-min-width, $fe-big-grid-empty-content-font-size, $fe-big-grid-empty-content-margin, $fe-big-grid-empty-content-padding, $fe-big-grid-empty-content-text-align, $fe-big-grid-empty-icon-height, $fe-big-grid-empty-icon-width, $fe-big-grid-empty-icon-margin, $fe-big-grid-empty-inner-content-font-size, $fe-big-grid-empty-inner-content-margin, $fe-big-grid-empty-inner-content-padding, $fe-big-grid-empty-inner-content-text-align);
627
687
 
628
688
  .e-empty-inner-content {
629
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
689
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'tailwind3' and $fm-skin-name != 'bootstrap5' {
630
690
  opacity: $fe-big-grid-empty-inner-content-opacity;
631
691
  }
632
692
  }
@@ -658,6 +718,9 @@
658
718
  }
659
719
 
660
720
  .e-list-text {
721
+ @if ($fm-skin-name == 'tailwind3') {
722
+ line-height: 24px;
723
+ }
661
724
  font-size: $fe-big-lg-text-font-size;
662
725
  padding: $fe-big-lg-text-padding;
663
726
  width: $fe-big-lg-item-inner-width;
@@ -675,7 +738,7 @@
675
738
  @include empty-style($fe-big-lg-icon-empty-min-width, $fe-big-lg-icon-empty-content-font-size, $fe-big-lg-icon-empty-content-margin, $fe-big-lg-icon-empty-content-padding, $fe-big-lg-icon-empty-content-text-align, $fe-big-lg-icon-empty-icon-height, $fe-big-lg-icon-empty-icon-width, $fe-big-lg-icon-empty-icon-margin, $fe-big-lg-icon-empty-inner-content-font-size, $fe-big-lg-icon-empty-inner-content-margin, $fe-big-lg-icon-empty-inner-content-padding, $fe-big-lg-icon-empty-inner-content-text-align);
676
739
 
677
740
  .e-empty-inner-content {
678
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
741
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'tailwind3' {
679
742
  opacity: $fe-big-lg-icon-empty-inner-content-opacity;
680
743
  }
681
744
  }
@@ -161,7 +161,7 @@ $fe-mobile-lg-item-inner-width: 94px !default;
161
161
  $fe-mobile-lg-icon-height: 40px !default;
162
162
  $fe-mobile-lg-icon-width: 40px !default;
163
163
  $fe-mobile-lg-icon-margin: 11px auto 0 !default;
164
- $fe-mobile-lg-img-height: 94px !default;
164
+ $fe-mobile-lg-img-height: 40px !default;
165
165
  $fe-mobile-grid-icon-size: 32px !default;
166
166
  $fe-mobile-icon-font-size: $text-xl !default;
167
167
  $fe-mobile-newfolder-padding-top: 0 !default;
@@ -48,6 +48,10 @@
48
48
  font-size: 10px;
49
49
  margin: 0;
50
50
  }
51
+ @if $fm-skin-name == 'tailwind3' {
52
+ @include size(16px, 16px);
53
+ margin: 4px 0 0 4px;
54
+ }
51
55
  }
52
56
  }
53
57
 
@@ -160,7 +164,9 @@
160
164
  .e-toolbar-items .e-toolbar-item .e-dropdown-btn.e-btn.e-tbar-btn {
161
165
  border: 0;
162
166
  box-shadow: none;
163
- font-weight: normal;
167
+ @if $fm-skin-name != 'tailwind3' {
168
+ font-weight: normal;
169
+ }
164
170
  height: $fe-tb-ddb-height;
165
171
  padding: $fe-tb-ddb-btn-padding;
166
172
 
@@ -210,6 +216,12 @@
210
216
 
211
217
  .e-treeview {
212
218
 
219
+ @if ($fm-skin-name == 'tailwind3') {
220
+ border-radius: 0;
221
+ border: none;
222
+ background: none;
223
+ }
224
+
213
225
  & > .e-ul {
214
226
  overflow: initial;
215
227
  @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' {
@@ -252,6 +264,10 @@
252
264
  overflow: hidden;
253
265
  text-overflow: ellipsis;
254
266
  white-space: nowrap;
267
+ @if ($fm-skin-name == 'tailwind3') {
268
+ top: 4px;
269
+ height: $fe-tv-fullrow-height;
270
+ }
255
271
  }
256
272
 
257
273
  .e-list-text {
@@ -331,6 +347,9 @@
331
347
  @else if ($fm-skin-name == 'fluent2') {
332
348
  padding: $fe-search-input-padding;
333
349
  }
350
+ @else if ($fm-skin-name == 'tailwind3') {
351
+ padding: 3px;
352
+ }
334
353
  @else {
335
354
  padding: 5px;
336
355
  }
@@ -392,7 +411,7 @@
392
411
 
393
412
  .e-address-list-item {
394
413
  display: inline-block;
395
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $skin-name != 'bootstrap5.3' and $fm-skin-name != 'Material3' {
414
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $skin-name != 'bootstrap5.3' and $fm-skin-name != 'Material3' and $fm-skin-name != 'tailwind3' {
396
415
  height: $fe-bc-li-item-height;
397
416
  }
398
417
 
@@ -416,7 +435,7 @@
416
435
  }
417
436
 
418
437
  &::before {
419
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'fluent2' {
438
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'fluent2' and $fm-skin-name != 'tailwind3' {
420
439
  padding: $fe-bc-icon-padding;
421
440
  }
422
441
  }
@@ -430,6 +449,13 @@
430
449
 
431
450
  .e-grid {
432
451
  @include checkbox($fe-cb-line-height);
452
+ @if ($fm-skin-name == 'tailwind3') {
453
+ .e-checkbox-wrapper {
454
+ .e-icons.e-check {
455
+ font-size: 10px;
456
+ }
457
+ }
458
+ }
433
459
  border-width: 0;
434
460
  float: left;
435
461
 
@@ -441,6 +467,12 @@
441
467
  .e-gridheader {
442
468
  border-width: 0 1px 1px;
443
469
 
470
+ @if ($fm-skin-name == 'tailwind3') {
471
+ .e-sortfilter .e-headercelldiv {
472
+ padding: 0 .5em;
473
+ }
474
+ }
475
+
444
476
  .e-headercell {
445
477
  height: $fe-grid-header-height;
446
478
 
@@ -467,11 +499,23 @@
467
499
  &:hover,
468
500
  .e-active {
469
501
  @include visibility(visible);
502
+ @if $fm-skin-name == 'tailwind3' {
503
+ .e-checkbox-wrapper {
504
+ position: relative;
505
+ z-index: 999;
506
+ }
507
+ }
470
508
  }
471
509
  }
472
510
 
473
511
  &.e-headercheck .e-gridheader .e-headercontent {
474
512
  @include visibility(visible);
513
+ @if $fm-skin-name == 'tailwind3' {
514
+ .e-checkbox-wrapper {
515
+ position: relative;
516
+ z-index: 999;
517
+ }
518
+ }
475
519
  }
476
520
 
477
521
  @if $fm-skin-name == 'FluentUI' {
@@ -563,7 +607,7 @@
563
607
  @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
564
608
  line-height: 24px;
565
609
  }
566
- @if ($fm-skin-name == 'fluent2') {
610
+ @if ($fm-skin-name == 'fluent2' or $fm-skin-name == 'tailwind3') {
567
611
  line-height: 20px;
568
612
  }
569
613
  @if $fm-skin-name == 'Material3' {
@@ -580,10 +624,10 @@
580
624
 
581
625
  .e-empty-inner-content {
582
626
  @include empty-content($fe-grid-empty-inner-content-font-size, $fe-grid-empty-inner-content-margin, $fe-grid-empty-inner-content-padding, $fe-grid-empty-inner-content-text-align);
583
- @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'bootstrap5.3' or $fm-skin-name == 'Material3' {
627
+ @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'bootstrap5.3' or $fm-skin-name == 'Material3' or $fm-skin-name == 'tailwind3' {
584
628
  line-height: 22px;
585
629
  }
586
- @else if $fm-skin-name == 'fluent2' {
630
+ @else if ($fm-skin-name == 'fluent2' or $fm-skin-name == 'tailwind3') {
587
631
  line-height: 20px;
588
632
  color: $fe-grid-empty-inner-content-color;
589
633
  }
@@ -634,7 +678,7 @@
634
678
 
635
679
  &.e-focused {
636
680
  box-shadow: none;
637
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'bootstrap5.3' and $fm-skin-name != 'FluentUI' and $fm-skin-name != 'Material3' and $fm-skin-name != 'fluent2' {
681
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'bootstrap5.3' and $fm-skin-name != 'FluentUI' and $fm-skin-name != 'Material3' and $fm-skin-name != 'fluent2' and $fm-skin-name != 'tailwind3' {
638
682
  td {
639
683
  box-shadow: $fe-grid-row-ie-box-shadow;
640
684
  &:first-child{
@@ -681,7 +725,11 @@
681
725
  &.e-rtl .e-view-container .e-grid .e-gridheader {
682
726
  padding-left: 0 !important; /* stylelint-disable-line declaration-no-important */
683
727
  }
684
-
728
+ @if $fm-skin-name == 'tailwind3' {
729
+ &.e-rtl .e-large-icons .e-checkbox-wrapper {
730
+ padding-right: 4px;
731
+ }
732
+ }
685
733
  .e-large-icons {
686
734
  @include checkbox($fe-cb-line-height);
687
735
  float: left;
@@ -704,7 +752,7 @@
704
752
  @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' {
705
753
  line-height: 24px;
706
754
  }
707
- @if ($fm-skin-name == 'fluent2') {
755
+ @if ($fm-skin-name == 'fluent2' or $fm-skin-name == 'tailwind3') {
708
756
  line-height: 20px;
709
757
  }
710
758
  @if $fm-skin-name == 'Material3' {
@@ -724,7 +772,7 @@
724
772
  @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'bootstrap5.3' or $fm-skin-name == 'Material3' {
725
773
  line-height: 22px;
726
774
  }
727
- @else if $fm-skin-name == 'fluent2' {
775
+ @else if ($fm-skin-name == 'fluent2' or $fm-skin-name == 'tailwind3') {
728
776
  line-height: 20px;
729
777
  color: $fe-grid-empty-inner-content-color;
730
778
  }
@@ -751,6 +799,11 @@
751
799
  @if $fm-skin-name == 'Material3' {
752
800
  margin: 4px;
753
801
  }
802
+ @if ($fm-skin-name == 'tailwind3') {
803
+ .e-icons.e-check {
804
+ font-size: 10px;
805
+ }
806
+ }
754
807
  }
755
808
 
756
809
  .e-list-item {
@@ -758,7 +811,9 @@
758
811
  float: left;
759
812
  @include icon-style($fe-lg-item-height, $fe-lg-item-width, $fe-lg-item-margin);
760
813
  overflow: hidden;
761
- padding: $fe-lg-item-padding;
814
+ @if $fm-skin-name != 'tailwind3' {
815
+ padding: $fe-lg-item-padding;
816
+ }
762
817
 
763
818
  &.e-fe-drop-folder {
764
819
  @if $fm-skin-name == 'tailwind' or $fm-skin-name == 'bootstrap5' or $fm-skin-name == 'Material3'{
@@ -790,19 +845,24 @@
790
845
  @include ellipsis;
791
846
  display: block;
792
847
  font-size: $fe-lg-text-font-size;
793
- padding: $fe-lg-text-padding;
848
+ @if $fm-skin-name != 'tailwind3' {
849
+ padding: $fe-lg-text-padding;
850
+ }
794
851
  text-align: center;
795
852
  width: $fe-lg-item-inner-width;
796
853
  @if $fm-skin-name == 'Material3' {
797
854
  line-height: $fe-lg-text-line-height;
798
855
  }
856
+ @if $fm-skin-name == 'tailwind3' {
857
+ line-height: 20px;
858
+ }
799
859
  }
800
860
 
801
861
  .e-list-img {
802
862
  @if $fm-skin-name != 'Material3' and $fm-skin-name != 'Material3-dark' {
803
863
  border: 2px solid;
804
864
  }
805
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'bootstrap5.3' and $fm-skin-name != 'Material3' {
865
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'bootstrap5.3' and $fm-skin-name != 'Material3' and $fm-skin-name != 'tailwind3' {
806
866
  box-shadow: $fe-img-box-shadow;
807
867
  }
808
868
  display: block;
@@ -950,6 +1010,9 @@
950
1010
  @else if $fm-skin-name == 'Material3' {
951
1011
  margin: $fe-rtl-search-input-margin;
952
1012
  }
1013
+ @else if $fm-skin-name == 'tailwind3' {
1014
+ margin: 0 34px 0 0;
1015
+ }
953
1016
  @else {
954
1017
  margin: 0 24px 0 0;
955
1018
  }
@@ -975,7 +1038,7 @@
975
1038
  .e-grid.e-rtl {
976
1039
 
977
1040
  .e-row.e-focused {
978
- @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'bootstrap5.3' and $fm-skin-name != 'FluentUI' and $fm-skin-name != 'Material3' {
1041
+ @if $fm-skin-name != 'tailwind' and $fm-skin-name != 'bootstrap5' and $fm-skin-name != 'bootstrap5.3' and $fm-skin-name != 'FluentUI' and $fm-skin-name != 'Material3' and $fm-skin-name != 'tailwind3' {
979
1042
  td:first-child {
980
1043
  box-shadow: $fe-grid-row-lc-ie-box-shadow;
981
1044
  }
@@ -111,8 +111,8 @@ $fe-big-rtl-search-input-margin: 0 48px 0 0 !default;
111
111
  $fe-big-rtl-search-input-padding: 10px 10px 10px 18px !default;
112
112
  $fe-rtl-grid-icon-margin: 0 0 0 8px !default;
113
113
  $fe-mobile-tb-height: 56px !default;
114
- $fe-mobile-lg-item-height: 96px !default;
115
- $fe-mobile-lg-item-width: 96px !default;
114
+ $fe-mobile-lg-item-height: 155px !default;
115
+ $fe-mobile-lg-item-width: 155px !default;
116
116
  $fe-mobile-lg-item-margin: 20px 8px !default;
117
117
  $fe-mobile-lg-item-inner-width: 92px !default;
118
118
  $fe-mobile-lg-icon-height: 110px !default;