@syncfusion/ej2-navigations 19.3.57 → 19.4.38

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 (254) hide show
  1. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
  2. package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
  3. package/CHANGELOG.md +33 -0
  4. package/dist/ej2-navigations.umd.min.js +2 -2
  5. package/dist/ej2-navigations.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-navigations.es2015.js +499 -136
  7. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  8. package/dist/es6/ej2-navigations.es5.js +506 -137
  9. package/dist/es6/ej2-navigations.es5.js.map +1 -1
  10. package/dist/global/ej2-navigations.min.js +2 -2
  11. package/dist/global/ej2-navigations.min.js.map +1 -1
  12. package/dist/global/index.d.ts +1 -1
  13. package/package.json +11 -11
  14. package/src/accordion/accordion-model.d.ts +5 -5
  15. package/src/accordion/accordion.d.ts +5 -5
  16. package/src/accordion/accordion.js +2 -19
  17. package/src/breadcrumb/breadcrumb-model.d.ts +23 -11
  18. package/src/breadcrumb/breadcrumb.d.ts +33 -10
  19. package/src/breadcrumb/breadcrumb.js +320 -78
  20. package/src/common/v-scroll.js +1 -1
  21. package/src/tab/tab-model.d.ts +14 -6
  22. package/src/tab/tab.d.ts +26 -15
  23. package/src/tab/tab.js +56 -27
  24. package/src/toolbar/toolbar-model.d.ts +7 -7
  25. package/src/toolbar/toolbar.d.ts +6 -6
  26. package/src/toolbar/toolbar.js +81 -13
  27. package/src/treeview/treeview-model.d.ts +10 -0
  28. package/src/treeview/treeview.d.ts +13 -0
  29. package/src/treeview/treeview.js +48 -0
  30. package/styles/accordion/_bootstrap-dark-definition.scss +4 -0
  31. package/styles/accordion/_bootstrap-definition.scss +4 -0
  32. package/styles/accordion/_bootstrap4-definition.scss +4 -0
  33. package/styles/accordion/_bootstrap5-definition.scss +39 -35
  34. package/styles/accordion/_fabric-dark-definition.scss +4 -0
  35. package/styles/accordion/_fabric-definition.scss +4 -0
  36. package/styles/accordion/_fluent-definition.scss +85 -0
  37. package/styles/accordion/_highcontrast-definition.scss +5 -1
  38. package/styles/accordion/_highcontrast-light-definition.scss +4 -0
  39. package/styles/accordion/_layout.scss +6 -14
  40. package/styles/accordion/_material-dark-definition.scss +4 -0
  41. package/styles/accordion/_material-definition.scss +4 -0
  42. package/styles/accordion/_tailwind-definition.scss +83 -79
  43. package/styles/accordion/_theme.scss +12 -11
  44. package/styles/accordion/bootstrap4.css +1 -2
  45. package/styles/accordion/bootstrap5-dark.css +11 -2
  46. package/styles/accordion/bootstrap5.css +11 -2
  47. package/styles/accordion/highcontrast-light.css +0 -4
  48. package/styles/accordion/highcontrast.css +1 -5
  49. package/styles/accordion/icons/_fluent.scss +17 -0
  50. package/styles/accordion/icons/_tailwind.scss +17 -17
  51. package/styles/bootstrap-dark.css +317 -84
  52. package/styles/bootstrap.css +316 -83
  53. package/styles/bootstrap4.css +317 -76
  54. package/styles/bootstrap5-dark.css +339 -75
  55. package/styles/bootstrap5.css +341 -77
  56. package/styles/breadcrumb/_bootstrap-dark-definition.scss +14 -0
  57. package/styles/breadcrumb/_bootstrap-definition.scss +13 -0
  58. package/styles/breadcrumb/_bootstrap4-definition.scss +13 -0
  59. package/styles/breadcrumb/_bootstrap5-definition.scss +15 -2
  60. package/styles/breadcrumb/_fabric-dark-definition.scss +13 -0
  61. package/styles/breadcrumb/_fabric-definition.scss +13 -0
  62. package/styles/breadcrumb/_fluent-definition.scss +59 -0
  63. package/styles/breadcrumb/_highcontrast-definition.scss +13 -0
  64. package/styles/breadcrumb/_highcontrast-light-definition.scss +13 -0
  65. package/styles/breadcrumb/_layout.scss +171 -22
  66. package/styles/breadcrumb/_material-dark-definition.scss +13 -0
  67. package/styles/breadcrumb/_material-definition.scss +13 -0
  68. package/styles/breadcrumb/_tailwind-dark-definition.scss +13 -0
  69. package/styles/breadcrumb/_tailwind-definition.scss +13 -0
  70. package/styles/breadcrumb/_theme.scss +27 -8
  71. package/styles/breadcrumb/bootstrap-dark.css +194 -17
  72. package/styles/breadcrumb/bootstrap.css +194 -17
  73. package/styles/breadcrumb/bootstrap4.css +194 -17
  74. package/styles/breadcrumb/bootstrap5-dark.css +198 -24
  75. package/styles/breadcrumb/bootstrap5.css +198 -24
  76. package/styles/breadcrumb/fabric-dark.css +197 -20
  77. package/styles/breadcrumb/fabric.css +197 -20
  78. package/styles/breadcrumb/highcontrast-light.css +200 -22
  79. package/styles/breadcrumb/highcontrast.css +200 -22
  80. package/styles/breadcrumb/icons/_bootstrap-dark.scss +2 -1
  81. package/styles/breadcrumb/icons/_bootstrap.scss +2 -1
  82. package/styles/breadcrumb/icons/_bootstrap4.scss +2 -1
  83. package/styles/breadcrumb/icons/_bootstrap5.scss +2 -1
  84. package/styles/breadcrumb/icons/_fabric-dark.scss +2 -1
  85. package/styles/breadcrumb/icons/_fabric.scss +2 -1
  86. package/styles/breadcrumb/icons/_fluent.scss +25 -0
  87. package/styles/breadcrumb/icons/_highcontrast-light.scss +2 -1
  88. package/styles/breadcrumb/icons/_highcontrast.scss +2 -1
  89. package/styles/breadcrumb/icons/_material-dark.scss +2 -1
  90. package/styles/breadcrumb/icons/_material.scss +2 -1
  91. package/styles/breadcrumb/icons/_tailwind-dark.scss +2 -1
  92. package/styles/breadcrumb/icons/_tailwind.scss +2 -1
  93. package/styles/breadcrumb/material-dark.css +186 -13
  94. package/styles/breadcrumb/material.css +186 -13
  95. package/styles/breadcrumb/tailwind-dark.css +195 -22
  96. package/styles/breadcrumb/tailwind.css +195 -22
  97. package/styles/context-menu/_bootstrap-dark-definition.scss +1 -1
  98. package/styles/context-menu/_bootstrap-definition.scss +1 -1
  99. package/styles/context-menu/_bootstrap4-definition.scss +1 -1
  100. package/styles/context-menu/_bootstrap5-definition.scss +5 -5
  101. package/styles/context-menu/_fluent-definition.scss +52 -0
  102. package/styles/context-menu/_material-dark-definition.scss +1 -1
  103. package/styles/context-menu/_material-definition.scss +1 -1
  104. package/styles/context-menu/_tailwind-definition.scss +1 -1
  105. package/styles/context-menu/bootstrap-dark.css +1 -1
  106. package/styles/context-menu/bootstrap.css +1 -1
  107. package/styles/context-menu/bootstrap4.css +1 -1
  108. package/styles/context-menu/bootstrap5-dark.css +5 -5
  109. package/styles/context-menu/bootstrap5.css +6 -6
  110. package/styles/context-menu/icons/_fluent.scss +32 -0
  111. package/styles/context-menu/material-dark.css +1 -1
  112. package/styles/context-menu/material.css +1 -1
  113. package/styles/context-menu/tailwind-dark.css +1 -1
  114. package/styles/context-menu/tailwind.css +1 -1
  115. package/styles/fabric-dark.css +305 -41
  116. package/styles/fabric.css +308 -44
  117. package/styles/h-scroll/_fluent-definition.scss +78 -0
  118. package/styles/h-scroll/_tailwind-definition.scss +78 -78
  119. package/styles/h-scroll/_theme.scss +1 -1
  120. package/styles/h-scroll/bootstrap-dark.css +1 -1
  121. package/styles/h-scroll/bootstrap.css +1 -1
  122. package/styles/h-scroll/bootstrap4.css +1 -1
  123. package/styles/h-scroll/bootstrap5-dark.css +1 -1
  124. package/styles/h-scroll/bootstrap5.css +1 -1
  125. package/styles/h-scroll/fabric-dark.css +1 -1
  126. package/styles/h-scroll/fabric.css +1 -1
  127. package/styles/h-scroll/highcontrast-light.css +1 -1
  128. package/styles/h-scroll/highcontrast.css +1 -1
  129. package/styles/h-scroll/icons/_fluent.scss +49 -0
  130. package/styles/h-scroll/icons/_tailwind.scss +49 -49
  131. package/styles/h-scroll/material-dark.css +1 -1
  132. package/styles/h-scroll/material.css +1 -1
  133. package/styles/h-scroll/tailwind-dark.css +1 -1
  134. package/styles/h-scroll/tailwind.css +1 -1
  135. package/styles/highcontrast-light.css +317 -47
  136. package/styles/highcontrast.css +322 -52
  137. package/styles/material-dark.css +295 -32
  138. package/styles/material.css +296 -33
  139. package/styles/menu/_fluent-definition.scss +68 -0
  140. package/styles/menu/_layout.scss +1 -1
  141. package/styles/menu/_theme.scss +9 -0
  142. package/styles/menu/bootstrap-dark.css +1 -1
  143. package/styles/menu/bootstrap.css +1 -1
  144. package/styles/menu/bootstrap4.css +1 -1
  145. package/styles/menu/bootstrap5-dark.css +4 -4
  146. package/styles/menu/bootstrap5.css +5 -5
  147. package/styles/menu/icons/_fluent.scss +133 -0
  148. package/styles/menu/material-dark.css +1 -1
  149. package/styles/menu/material.css +1 -1
  150. package/styles/menu/tailwind-dark.css +1 -1
  151. package/styles/menu/tailwind.css +1 -1
  152. package/styles/sidebar/_bootstrap5-definition.scss +5 -5
  153. package/styles/sidebar/_fluent-definition.scss +5 -0
  154. package/styles/sidebar/_theme.scss +4 -2
  155. package/styles/sidebar/bootstrap5-dark.css +0 -1
  156. package/styles/sidebar/bootstrap5.css +0 -1
  157. package/styles/sidebar/tailwind-dark.css +0 -1
  158. package/styles/sidebar/tailwind.css +0 -1
  159. package/styles/tab/_bootstrap-dark-definition.scss +10 -1
  160. package/styles/tab/_bootstrap-definition.scss +10 -1
  161. package/styles/tab/_bootstrap4-definition.scss +9 -1
  162. package/styles/tab/_bootstrap5-definition.scss +401 -401
  163. package/styles/tab/_fabric-dark-definition.scss +10 -0
  164. package/styles/tab/_fabric-definition.scss +10 -0
  165. package/styles/tab/_fluent-definition.scss +409 -0
  166. package/styles/tab/_highcontrast-definition.scss +10 -0
  167. package/styles/tab/_highcontrast-light-definition.scss +10 -0
  168. package/styles/tab/_layout.scss +145 -0
  169. package/styles/tab/_material-dark-definition.scss +10 -0
  170. package/styles/tab/_material-definition.scss +10 -0
  171. package/styles/tab/_tailwind-definition.scss +431 -420
  172. package/styles/tab/_theme.scss +188 -113
  173. package/styles/tab/bootstrap-dark.css +43 -18
  174. package/styles/tab/bootstrap.css +42 -17
  175. package/styles/tab/bootstrap4.css +47 -28
  176. package/styles/tab/bootstrap5-dark.css +53 -30
  177. package/styles/tab/bootstrap5.css +53 -30
  178. package/styles/tab/fabric-dark.css +43 -20
  179. package/styles/tab/fabric.css +46 -23
  180. package/styles/tab/highcontrast-light.css +52 -19
  181. package/styles/tab/highcontrast.css +56 -23
  182. package/styles/tab/icons/_bootstrap-dark.scss +2 -2
  183. package/styles/tab/icons/_fabric-dark.scss +2 -2
  184. package/styles/tab/icons/_fluent.scss +140 -0
  185. package/styles/tab/icons/_tailwind.scss +140 -140
  186. package/styles/tab/material-dark.css +42 -15
  187. package/styles/tab/material.css +42 -15
  188. package/styles/tab/tailwind-dark.css +42 -17
  189. package/styles/tab/tailwind.css +42 -17
  190. package/styles/tailwind-dark.css +313 -50
  191. package/styles/tailwind.css +313 -50
  192. package/styles/toolbar/_bootstrap-dark-definition.scss +7 -1
  193. package/styles/toolbar/_bootstrap-definition.scss +7 -1
  194. package/styles/toolbar/_bootstrap4-definition.scss +8 -2
  195. package/styles/toolbar/_bootstrap5-definition.scss +104 -86
  196. package/styles/toolbar/_fabric-dark-definition.scss +7 -0
  197. package/styles/toolbar/_fabric-definition.scss +7 -0
  198. package/styles/toolbar/_fluent-definition.scss +149 -0
  199. package/styles/toolbar/_highcontrast-definition.scss +7 -0
  200. package/styles/toolbar/_highcontrast-light-definition.scss +7 -0
  201. package/styles/toolbar/_layout.scss +27 -72
  202. package/styles/toolbar/_material-dark-definition.scss +7 -1
  203. package/styles/toolbar/_material-definition.scss +7 -1
  204. package/styles/toolbar/_tailwind-definition.scss +149 -143
  205. package/styles/toolbar/_theme.scss +12 -15
  206. package/styles/toolbar/bootstrap-dark.css +17 -46
  207. package/styles/toolbar/bootstrap.css +17 -46
  208. package/styles/toolbar/bootstrap4.css +12 -26
  209. package/styles/toolbar/bootstrap5-dark.css +6 -7
  210. package/styles/toolbar/bootstrap5.css +6 -7
  211. package/styles/toolbar/fabric-dark.css +4 -0
  212. package/styles/toolbar/fabric.css +4 -0
  213. package/styles/toolbar/highcontrast-light.css +4 -1
  214. package/styles/toolbar/highcontrast.css +4 -1
  215. package/styles/toolbar/icons/_fluent.scss +16 -0
  216. package/styles/toolbar/icons/_tailwind.scss +16 -16
  217. package/styles/toolbar/material-dark.css +4 -1
  218. package/styles/toolbar/material.css +5 -2
  219. package/styles/toolbar/tailwind-dark.css +8 -6
  220. package/styles/toolbar/tailwind.css +8 -6
  221. package/styles/treeview/_bootstrap-dark-definition.scss +11 -0
  222. package/styles/treeview/_bootstrap-definition.scss +11 -0
  223. package/styles/treeview/_bootstrap4-definition.scss +11 -0
  224. package/styles/treeview/_bootstrap5-definition.scss +120 -109
  225. package/styles/treeview/_fabric-dark-definition.scss +11 -0
  226. package/styles/treeview/_fabric-definition.scss +11 -0
  227. package/styles/treeview/_fluent-definition.scss +120 -0
  228. package/styles/treeview/_highcontrast-definition.scss +11 -0
  229. package/styles/treeview/_highcontrast-light-definition.scss +11 -0
  230. package/styles/treeview/_layout.scss +116 -20
  231. package/styles/treeview/_material-dark-definition.scss +13 -0
  232. package/styles/treeview/_material-definition.scss +11 -0
  233. package/styles/treeview/_tailwind-definition.scss +12 -0
  234. package/styles/treeview/_theme.scss +5 -5
  235. package/styles/treeview/bootstrap-dark.css +60 -0
  236. package/styles/treeview/bootstrap.css +60 -0
  237. package/styles/treeview/bootstrap4.css +60 -0
  238. package/styles/treeview/bootstrap5-dark.css +61 -1
  239. package/styles/treeview/bootstrap5.css +61 -1
  240. package/styles/treeview/fabric-dark.css +60 -0
  241. package/styles/treeview/fabric.css +60 -0
  242. package/styles/treeview/highcontrast-light.css +60 -0
  243. package/styles/treeview/highcontrast.css +60 -0
  244. package/styles/treeview/icons/_bootstrap5.scss +43 -43
  245. package/styles/treeview/icons/_fluent.scss +43 -0
  246. package/styles/treeview/icons/_tailwind-dark.scss +43 -43
  247. package/styles/treeview/material-dark.css +60 -0
  248. package/styles/treeview/material.css +60 -0
  249. package/styles/treeview/tailwind-dark.css +65 -1
  250. package/styles/treeview/tailwind.css +65 -1
  251. package/styles/v-scroll/_fluent-definition.scss +49 -0
  252. package/styles/v-scroll/_tailwind-definition.scss +49 -49
  253. package/styles/v-scroll/icons/_fluent.scss +26 -0
  254. package/styles/v-scroll/icons/_tailwind.scss +26 -26
@@ -9,6 +9,10 @@
9
9
  border: 0;
10
10
  border-radius: 0;
11
11
 
12
+ @if $tab-skin == 'FluentUI' {
13
+ box-shadow: none;
14
+ }
15
+
12
16
  @if $tab-skin == 'tailwind' {
13
17
  font-weight: $tab-font-weight;
14
18
  }
@@ -39,6 +43,9 @@
39
43
 
40
44
  .e-toolbar-item.e-active {
41
45
  border-bottom: $tab-active-item-hide-border;
46
+ @if $tab-skin == 'FluentUI' {
47
+ margin-bottom: $tab-item-wrap-border-radius;
48
+ }
42
49
  }
43
50
  }
44
51
 
@@ -54,12 +61,18 @@
54
61
  background: inherit;
55
62
  border: $tab-item-border;
56
63
 
64
+ @if $tab-skin == 'FluentUI' {
65
+ &:hover {
66
+ background: $tab-alt-hover-bg-color;
67
+ }
68
+ }
69
+
57
70
  .e-ripple-element {
58
71
  background: $tab-ripple-bg-color;
59
72
  }
60
73
 
61
74
  .e-tab-wrap {
62
- border-radius: $tab-item-wrap-border-radius;
75
+ border-radius: $tab-active-item-border-radius;
63
76
  color: $tab-text-color;
64
77
 
65
78
  @if $tab-skin == 'fabric' {
@@ -74,10 +87,7 @@
74
87
  }
75
88
 
76
89
  .e-tab-icon {
77
- color: $tab-text-color;
78
- @if $tbar-skin == 'bootstrap5' {
79
- color: $tab-comb-icon-color;
80
- }
90
+ color: $tab-wrap-comb-icon-color;
81
91
  }
82
92
 
83
93
  @media screen and (max-width: 480px) {
@@ -187,6 +197,10 @@
187
197
  }
188
198
  }
189
199
 
200
+ &.e-reorder-active-item:not(.e-vertical) .e-toolbar-pop .e-toolbar-item.e-active {
201
+ border: $tab-active-item-hide-border;
202
+ }
203
+
190
204
  .e-toolbar-pop {
191
205
  background: $tab-pop-bg-color;
192
206
  border: $tab-pop-border;
@@ -218,10 +232,6 @@
218
232
  border-color: $tab-wrap-hover-border-color;
219
233
  }
220
234
 
221
- @if $tab-skin == 'highcontrast' {
222
- background: $tab-wrap-hover-bg-color;
223
- }
224
-
225
235
  @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
226
236
  border: $tab-vscroll-nav-border;
227
237
  border-radius: 0;
@@ -232,6 +242,12 @@
232
242
  .e-close-icon {
233
243
  color: $tab-hover-text-color;
234
244
  }
245
+ @if $tab-skin == 'FluentUI' {
246
+ .e-tab-icon,
247
+ .e-close-icon {
248
+ color: $tab-comb-icon-color;
249
+ }
250
+ }
235
251
  }
236
252
 
237
253
  &:active {
@@ -257,6 +273,14 @@
257
273
  }
258
274
  }
259
275
 
276
+ &.e-active .e-tab-wrap {
277
+
278
+ .e-tab-text,
279
+ .e-tab-icon {
280
+ color: $tab-active-text-color;
281
+ }
282
+ }
283
+
260
284
  &.e-disable.e-overlay {
261
285
  .e-tab-text,
262
286
  .e-tab-icon {
@@ -275,7 +299,9 @@
275
299
 
276
300
 
277
301
  .e-nav-arrow {
278
- color: $tab-nav-icon-color;
302
+ @if $tab-skin != 'FluentUI' {
303
+ color: $tab-nav-icon-color;
304
+ }
279
305
 
280
306
  @if $tab-skin == 'fabric' {
281
307
  border: 1px solid $tab-wrap-border-color;
@@ -292,10 +318,6 @@
292
318
  @if $tab-skin == 'highcontrast' {
293
319
  border: 2px solid $tab-wrap-hover-border-color;
294
320
  }
295
-
296
- @if $tab-skin == 'tailwind' {
297
- background: $tab-pop-icon-hover-bg-color;
298
- }
299
321
  }
300
322
 
301
323
  &:active {
@@ -362,10 +384,14 @@
362
384
  &.e-overlay {
363
385
 
364
386
  .e-nav-arrow {
365
- color: $tab-disable-nav-icon-color;
387
+ @if $tab-skin != 'FluentUI' {
388
+ color: $tab-disable-nav-icon-color;
389
+ }
366
390
 
367
391
  &:hover {
368
- color: $tab-disable-nav-icon-color;
392
+ @if $tab-skin != 'FluentUI' {
393
+ color: $tab-disable-nav-icon-color;
394
+ }
369
395
 
370
396
  @if $tab-skin == 'highcontrast' {
371
397
  background: $tab-nav-disable-hover-bg-color;
@@ -385,10 +411,6 @@
385
411
  background: transparent;
386
412
  border: 0;
387
413
 
388
- @if $tab-skin == 'bootstrap4'or $tab-skin == 'bootstrap5' {
389
- border: $tab-nav-pop-press-border;
390
- }
391
-
392
414
  .e-popup-up-icon,
393
415
  .e-popup-down-icon {
394
416
  color: $tab-pop-icon-color;
@@ -407,20 +429,8 @@
407
429
 
408
430
  &:hover {
409
431
  background: $tab-pop-icon-hover-bg-color;
410
- border: $tab-pop-icon-hover-border;
432
+ border: $tab-pop-up-icon-hover-border;
411
433
  border-radius: $tab-active-item-border-radius;
412
-
413
- @if $tab-skin == 'fabric' {
414
- border: 1px solid $tab-wrap-hover-border-color;
415
- }
416
-
417
- @if $tab-skin == 'highcontrast' {
418
- border: 2px solid $tab-wrap-hover-border-color;
419
- }
420
-
421
- @if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
422
- border: $tab-active-text-item-border;
423
- }
424
434
  }
425
435
  }
426
436
 
@@ -440,61 +450,24 @@
440
450
  .e-popup-up-icon,
441
451
  .e-popup-down-icon {
442
452
  background: $tab-nav-focus-bg-color;
443
- border: $tab-pop-icon-focus-border;
453
+ border: $tab-pop-up-icon-focus-border;
444
454
  border-radius: $tab-active-item-border-radius;
445
455
  color: $tab-nav-focus-icon-color;
446
456
 
447
- @if $tab-skin == 'fabric' {
448
- border: 1px solid $tab-nav-focus-border-color;
449
- }
450
-
451
- @if $tab-skin == 'bootstrap' {
452
- background: $tab-nav-focus-bg-color;
453
- }
454
-
455
- @if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
456
- border: $tab-active-text-item-border;
457
- }
458
-
459
- @if $tab-skin == 'highcontrast' {
460
- border: 2px solid $tab-wrap-focus-border-color;
461
- }
462
-
463
457
  &:hover {
464
458
  background: $tab-pop-icon-hover-bg-color;
465
- border: $tab-pop-icon-hover-border;
459
+ border: $tab-pop-up-down-icon-hover-border;
466
460
  border-radius: $tab-active-item-border-radius;
467
-
468
- @if $tab-skin == 'fabric' {
469
- border: 1px solid $tab-nav-focus-hover-border-color;
470
- }
471
-
472
- @if $tab-skin == 'highcontrast' {
473
- border: 2px solid $tab-nav-focus-hover-border-color;
474
- }
475
-
476
- @if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
477
- border: $tab-active-text-item-border;
478
- }
479
461
  }
480
462
 
481
463
  &:active {
482
464
  background: $tab-pop-icon-hover-bg-color;
483
- border: $tab-pop-icon-active-border;
465
+ border: $tab-pop-up-icon-active-border;
484
466
  border-radius: $tab-active-item-border-radius;
485
467
  box-shadow: $tab-pop-border-box-shadow;
486
468
 
487
- @if $tab-skin == 'fabric' {
488
- border: 1px solid $tab-nav-focus-active-border-color;
489
- }
490
-
491
- @if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
492
- border: $tab-active-text-item-border;
493
- }
494
-
495
469
  @if $tab-skin == 'highcontrast' {
496
470
  background: $tab-nav-focus-active-bg-color;
497
- border: 2px solid $tab-nav-focus-active-border-color;
498
471
  color: $tab-nav-focus-active-color;
499
472
  }
500
473
  }
@@ -508,10 +481,6 @@
508
481
  &:hover {
509
482
  border: 0;
510
483
 
511
- @if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
512
- border: $tab-nav-pop-press-border;
513
- }
514
-
515
484
  &:active {
516
485
  background: transparent;
517
486
  }
@@ -550,9 +519,6 @@
550
519
 
551
520
  &:focus {
552
521
  border: $tab-nav-pop-arrow-active-focus-border;
553
- @if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
554
- border: 0;
555
- }
556
522
  }
557
523
  }
558
524
  }
@@ -579,13 +545,15 @@
579
545
  .e-toolbar-item {
580
546
 
581
547
  &.e-active {
582
- border-bottom: 0;
583
- border-radius: $tab-bottom-active-item-border-radius;
584
- border-top: $tab-active-item-hide-border;
585
- border-top-color: $tab-active-item-border-color;
548
+ border-bottom: $tab-even-active-item-bottom-border-color;
586
549
 
587
- @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
588
- border-bottom: 1px solid $tab-even-active-item-bottom-border-color;
550
+ @if $tab-skin == 'FluentUI' {
551
+ margin-top: $tab-item-wrap-border-radius;
552
+ }
553
+ @else {
554
+ border-radius: $tab-bottom-active-item-border-radius;
555
+ border-top: $tab-active-item-hide-border;
556
+ border-top-color: $tab-active-item-border-color;
589
557
  }
590
558
  }
591
559
  }
@@ -593,6 +561,10 @@
593
561
 
594
562
  &.e-vertical {
595
563
 
564
+ @if $tab-skin == 'tailwind' {
565
+ border-bottom: 0;
566
+ }
567
+
596
568
  &::before {
597
569
  border-width: 0 1px 0 0;
598
570
  }
@@ -768,6 +740,11 @@
768
740
  .e-tab-text {
769
741
  color: $tab-focus-text-color;
770
742
  }
743
+ @if $tbar-skin == 'bootstrap5' or $tab-skin == 'FluentUI' {
744
+ .e-tab-icon {
745
+ color: $tab-comb-icon-color;
746
+ }
747
+ }
771
748
  }
772
749
  }
773
750
 
@@ -903,6 +880,11 @@
903
880
  &:hover .e-tab-icon {
904
881
  color: $tab-hover-text-color;
905
882
  }
883
+ @if $tab-skin == 'FluentUI' {
884
+ &:hover .e-tab-icon {
885
+ color: $tab-comb-icon-color;
886
+ }
887
+ }
906
888
  }
907
889
 
908
890
  .e-text-wrap {
@@ -1071,7 +1053,7 @@
1071
1053
  .e-tab-wrap:focus .e-tab-icon,
1072
1054
  .e-tab-wrap:focus .e-tab-text,
1073
1055
  .e-tab-wrap:focus .e-close-icon {
1074
- color: $tab-alt-hover-text-color;
1056
+ color: $tab-hover-text-color;
1075
1057
  }
1076
1058
 
1077
1059
  &.e-active .e-tab-wrap:focus {
@@ -1095,10 +1077,7 @@
1095
1077
 
1096
1078
  .e-tab-text,
1097
1079
  .e-tab-icon {
1098
- color: $tab-alt-active-hover-text-color;
1099
- @if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
1100
- color: $tab-alt-active-style-hover-text-color;
1101
- }
1080
+ color: $tab-alt-active-style-hover-icon-color;
1102
1081
  }
1103
1082
  }
1104
1083
  }
@@ -1147,8 +1126,20 @@
1147
1126
  border-color: $tab-alt-wrap-border-color;
1148
1127
  }
1149
1128
 
1129
+ .e-tab-text,
1130
+ .e-tab-icon,
1131
+ .e-close-icon {
1132
+ color: $tab-alt-text-color;
1133
+ }
1134
+
1135
+ @if $tab-skin != 'tailwind' {
1136
+ .e-close-icon:hover {
1137
+ color: $tab-alt-active-wrap-close-icon-color;
1138
+ }
1139
+ }
1140
+
1150
1141
  &:hover {
1151
- background: $tab-item-hover-bg-color;
1142
+ background: $tab-bg-item-wrap-hover-bg-color;
1152
1143
 
1153
1144
  .e-tab-text,
1154
1145
  .e-tab-icon {
@@ -1159,6 +1150,14 @@
1159
1150
  }
1160
1151
  }
1161
1152
 
1153
+ @if $tab-skin == 'FluentUI' {
1154
+ .e-tab-text,
1155
+ .e-tab-icon,
1156
+ .e-close-icon {
1157
+ color: $tab-alt-border-color;
1158
+ }
1159
+ }
1160
+
1162
1161
  @if $tab-skin == 'material' {
1163
1162
  .e-close-icon {
1164
1163
 
@@ -1211,32 +1210,23 @@
1211
1210
  }
1212
1211
  }
1213
1212
 
1214
- .e-tab-text,
1215
- .e-tab-icon,
1216
- .e-close-icon {
1217
- color: $tab-alt-text-color;
1218
- }
1219
-
1220
- .e-close-icon {
1221
- color: $tab-alt-close-icon-color;
1222
- @if $tab-skin == 'tailwind' {
1223
- color: $tab-alt-active-close-icon-color;
1224
- }
1225
- @if $tab-skin == 'bootstrap5' {
1226
- color: $tab-alt-active-text-color;
1227
- }
1228
- }
1229
-
1230
- .e-close-icon:hover {
1231
- color: $tab-alt-hover-text-color;
1232
- }
1233
-
1234
1213
  &.e-active {
1235
1214
  border: 0;
1236
1215
  margin: 0;
1216
+ @if $tab-skin == 'FluentUI' {
1217
+ background: $tab-alt-active-text-color;
1218
+ }
1237
1219
 
1238
1220
  .e-tab-wrap {
1239
1221
 
1222
+ @if $tab-skin == 'FluentUI' {
1223
+ .e-tab-text,
1224
+ .e-tab-icon,
1225
+ .e-close-icon {
1226
+ color: $tab-fill-active-bg-color;
1227
+ }
1228
+ }
1229
+
1240
1230
  @if $tab-skin == 'bootstrap5' {
1241
1231
  background: $tab-active-item-border-color;
1242
1232
  border-color: $tab-alt-active-bg-color;
@@ -1258,6 +1248,9 @@
1258
1248
  .e-tab-text,
1259
1249
  .e-tab-icon {
1260
1250
  color: $tab-alt-active-text-color;
1251
+ @if $tab-skin == 'FluentUI' {
1252
+ color: $tab-fill-active-bg-color;
1253
+ }
1261
1254
  }
1262
1255
 
1263
1256
  @if $tab-skin == 'bootstrap5' {
@@ -1301,6 +1294,9 @@
1301
1294
  .e-tab-icon,
1302
1295
  .e-tab-text {
1303
1296
  color: $tab-alt-active-wrap-hover-focus-color;
1297
+ @if $tab-skin == 'FluentUI' {
1298
+ color: $tab-fill-active-bg-color;
1299
+ }
1304
1300
  }
1305
1301
  }
1306
1302
  }
@@ -1319,6 +1315,9 @@
1319
1315
  @if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
1320
1316
  color: $tab-alt-active-hover-text-color;
1321
1317
  }
1318
+ @if $tab-skin == 'FluentUI' {
1319
+ color: $tab-fill-active-bg-color;
1320
+ }
1322
1321
  }
1323
1322
  }
1324
1323
 
@@ -1350,15 +1349,24 @@
1350
1349
  .e-tab-text,
1351
1350
  .e-tab-icon {
1352
1351
  color: $tab-alt-active-text-color;
1352
+ @if $tab-skin == 'FluentUI' {
1353
+ color: $tab-fill-active-bg-color;
1354
+ }
1353
1355
  }
1354
1356
 
1355
1357
  .e-close-icon {
1356
1358
  color: $tab-alt-active-close-icon-color;
1359
+ @if $tab-skin == 'FluentUI' {
1360
+ color: $tab-fill-active-bg-color;
1361
+ }
1357
1362
  }
1358
1363
 
1359
1364
  .e-close-icon:hover {
1360
1365
  @if $tab-skin != 'tailwind' {
1361
1366
  color: $tab-alt-active-hover-close-icon-color;
1367
+ @if $tab-skin == 'FluentUI' {
1368
+ color: $tab-fill-active-bg-color;
1369
+ }
1362
1370
  }
1363
1371
  }
1364
1372
 
@@ -1396,6 +1404,9 @@
1396
1404
  .e-tab-text,
1397
1405
  .e-tab-icon {
1398
1406
  color: $tab-alt-text-color;
1407
+ @if $tab-skin == 'FluentUI' {
1408
+ color: $tab-bg-nav-focus-icon-color;
1409
+ }
1399
1410
  }
1400
1411
 
1401
1412
  &:hover {
@@ -1413,6 +1424,9 @@
1413
1424
  @if $tab-skin == 'fabric' or $tab-skin == 'bootstrap' or $tab-skin == 'highcontrast' {
1414
1425
  color: $tab-alt-pop-wrap-hover-color;
1415
1426
  }
1427
+ @if $tab-skin == 'FluentUI' {
1428
+ color: $tab-alt-active-style-hover-text-color;
1429
+ }
1416
1430
  }
1417
1431
  }
1418
1432
 
@@ -1436,7 +1450,11 @@
1436
1450
  }
1437
1451
  }
1438
1452
 
1453
+ .e-hscroll:not(.e-scroll-device) .e-scroll-nav,
1439
1454
  .e-scroll-nav {
1455
+ @if $tab-skin == 'FluentUI' {
1456
+ background: $tab-alt-active-wrap-hover-close-color;
1457
+ }
1440
1458
 
1441
1459
  .e-nav-arrow {
1442
1460
  color: $tab-alt-nav-icon-color;
@@ -1451,6 +1469,9 @@
1451
1469
 
1452
1470
  &:hover {
1453
1471
  background: $tab-bg-hover-nav-bg-color;
1472
+ @if $tab-skin == 'FluentUI' {
1473
+ background: $tab-item-wrap-hover-bg-color;
1474
+ }
1454
1475
  color: $tab-bg-hover-nav-icon-color;
1455
1476
 
1456
1477
  @if $tab-skin == 'highcontrast' {
@@ -1511,13 +1532,29 @@
1511
1532
  &:active::after {
1512
1533
  @include hscroll-alt-btn-animation-after;
1513
1534
  }
1535
+
1536
+ &.e-overlay {
1537
+ @if $tab-skin == 'FluentUI' {
1538
+ .e-nav-arrow {
1539
+ color: $tab-alt-nav-icon-color;
1540
+ }
1541
+ }
1542
+ }
1543
+
1514
1544
  }
1515
1545
 
1546
+ .e-hor-nav:not(.e-expended-nav),
1516
1547
  .e-hor-nav {
1548
+ @if $tab-skin == 'FluentUI' {
1549
+ background: $tab-border-color;
1550
+ }
1517
1551
 
1518
1552
  .e-popup-up-icon,
1519
1553
  .e-popup-down-icon {
1520
1554
  color: $tab-alt-nav-icon-color;
1555
+ @if $tab-skin == 'FluentUI' {
1556
+ color: $tab-alt-border-color;
1557
+ }
1521
1558
 
1522
1559
  @if $tab-skin == 'fabric' {
1523
1560
  border: 1px solid $tab-alt-nav-border-color;
@@ -1564,10 +1601,16 @@
1564
1601
  }
1565
1602
 
1566
1603
  &:focus {
1604
+ @if $tab-skin == 'FluentUI' {
1605
+ background: $tab-item-wrap-hover-bg-color;
1606
+ }
1567
1607
 
1568
1608
  .e-popup-up-icon,
1569
1609
  .e-popup-down-icon {
1570
1610
  color: $tab-bg-hover-nav-icon-color;
1611
+ @if $tab-skin == 'FluentUI' {
1612
+ color: $tab-bg-nav-focus-icon-color;
1613
+ }
1571
1614
 
1572
1615
  @if $tab-skin == 'fabric' {
1573
1616
  border: 1px solid $tab-nav-focus-border-color;
@@ -1602,9 +1645,15 @@
1602
1645
  }
1603
1646
 
1604
1647
  &.e-nav-active {
1648
+ @if $tab-skin == 'FluentUI' {
1649
+ background: $tab-fill-active-bg-color;
1650
+ }
1605
1651
 
1606
1652
  .e-popup-up-icon {
1607
1653
  color: $tab-bg-hover-nav-icon-color;
1654
+ @if $tab-skin == 'FluentUI' {
1655
+ color: $tab-alt-active-text-color;
1656
+ }
1608
1657
  }
1609
1658
  }
1610
1659
  }
@@ -1781,6 +1830,10 @@
1781
1830
  background: $tab-alt-hover-bg-color;
1782
1831
  }
1783
1832
 
1833
+ @if $tab-skin == 'FluentUI' {
1834
+ background: $tab-item-wrap-hover-bg-color;
1835
+ }
1836
+
1784
1837
  @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
1785
1838
  border-color: $tab-wrap-focus-border-color;
1786
1839
  }
@@ -1797,6 +1850,9 @@
1797
1850
  .e-tab-text,
1798
1851
  .e-close-icon {
1799
1852
  color: $tab-alt-text-color;
1853
+ @if $tab-skin == 'FluentUI' {
1854
+ color: $tab-alt-border-color;
1855
+ }
1800
1856
  }
1801
1857
  }
1802
1858
 
@@ -1808,6 +1864,10 @@
1808
1864
  background: $tab-key-alt-active-focus-bg-color;
1809
1865
  }
1810
1866
 
1867
+ @if $tab-skin == 'FluentUI' {
1868
+ background: $tab-alt-active-text-color;
1869
+ }
1870
+
1811
1871
  @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
1812
1872
  border-color: $tab-alt-focused-active-wrap-focus-border-color;
1813
1873
  }
@@ -1820,6 +1880,9 @@
1820
1880
  .e-tab-wrap:focus .e-tab-text,
1821
1881
  .e-tab-wrap:focus .e-tab-icon {
1822
1882
  color: $tab-alt-active-hover-text-color;
1883
+ @if $tab-skin == 'FluentUI' {
1884
+ color: $tab-fill-active-bg-color;
1885
+ }
1823
1886
  }
1824
1887
 
1825
1888
  .e-tab-wrap:hover {
@@ -1828,6 +1891,10 @@
1828
1891
  background: $tab-alt-focused-active-wrap-hover-bg-color;
1829
1892
  }
1830
1893
 
1894
+ @if $tab-skin == 'FluentUI' {
1895
+ background: $tab-alt-active-text-color;
1896
+ }
1897
+
1831
1898
  @if $tab-skin == 'bootstrap4' or $tab-skin == 'bootstrap5' {
1832
1899
  border: 1px solid $tab-hover-border-color;
1833
1900
  border-radius: $tab-top-active-item-border-radius;
@@ -1843,6 +1910,14 @@
1843
1910
  color: $tab-alt-focused-active-wrap-focus-or-hover-color;
1844
1911
  }
1845
1912
  }
1913
+
1914
+ @if $tab-skin == 'FluentUI' {
1915
+ .e-tab-text,
1916
+ .e-tab-icon,
1917
+ .e-close-icon {
1918
+ color: $tab-fill-active-bg-color;
1919
+ }
1920
+ }
1846
1921
  }
1847
1922
 
1848
1923
  .e-tab-wrap:focus:hover {
@@ -1923,7 +1998,7 @@
1923
1998
  color: $tab-clone-text-color;
1924
1999
 
1925
2000
  .e-tab-wrap {
1926
- border-radius: $tab-item-wrap-border-radius;
2001
+ border-radius: $tab-active-item-border-radius;
1927
2002
  color: $tab-clone-text-color;
1928
2003
 
1929
2004
  @if $tab-skin == 'fabric' {