@syncfusion/ej2-angular-navigations 20.2.38-ngcc → 20.2.39

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 (1095) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/accordion/accordion-all.module.mjs +23 -0
  3. package/esm2020/src/accordion/accordion.component.mjs +77 -0
  4. package/esm2020/src/accordion/accordion.module.mjs +34 -0
  5. package/esm2020/src/accordion/items.directive.mjs +72 -0
  6. package/esm2020/src/breadcrumb/breadcrumb-all.module.mjs +23 -0
  7. package/esm2020/src/breadcrumb/breadcrumb.component.mjs +77 -0
  8. package/esm2020/src/breadcrumb/breadcrumb.module.mjs +34 -0
  9. package/esm2020/src/breadcrumb/items.directive.mjs +58 -0
  10. package/esm2020/src/carousel/carousel-all.module.mjs +23 -0
  11. package/esm2020/src/carousel/carousel.component.mjs +95 -0
  12. package/esm2020/src/carousel/carousel.module.mjs +34 -0
  13. package/esm2020/src/carousel/items.directive.mjs +66 -0
  14. package/esm2020/src/context-menu/contextmenu-all.module.mjs +23 -0
  15. package/esm2020/src/context-menu/contextmenu.component.mjs +60 -0
  16. package/esm2020/src/context-menu/contextmenu.module.mjs +25 -0
  17. package/esm2020/src/index.mjs +35 -0
  18. package/esm2020/src/menu/items.directive.mjs +46 -0
  19. package/esm2020/src/menu/menu-all.module.mjs +23 -0
  20. package/esm2020/src/menu/menu.component.mjs +71 -0
  21. package/esm2020/src/menu/menu.module.mjs +34 -0
  22. package/esm2020/src/sidebar/sidebar-all.module.mjs +23 -0
  23. package/esm2020/src/sidebar/sidebar.component.mjs +59 -0
  24. package/esm2020/src/sidebar/sidebar.module.mjs +25 -0
  25. package/esm2020/src/tab/items.directive.mjs +78 -0
  26. package/esm2020/src/tab/tab-all.module.mjs +23 -0
  27. package/esm2020/src/tab/tab.component.mjs +64 -0
  28. package/esm2020/src/tab/tab.module.mjs +34 -0
  29. package/esm2020/src/toolbar/items.directive.mjs +66 -0
  30. package/esm2020/src/toolbar/toolbar-all.module.mjs +23 -0
  31. package/esm2020/src/toolbar/toolbar.component.mjs +64 -0
  32. package/esm2020/src/toolbar/toolbar.module.mjs +34 -0
  33. package/esm2020/src/treeview/treeview-all.module.mjs +23 -0
  34. package/esm2020/src/treeview/treeview.component.mjs +66 -0
  35. package/esm2020/src/treeview/treeview.module.mjs +25 -0
  36. package/esm2020/syncfusion-ej2-angular-navigations.mjs +5 -0
  37. package/fesm2015/syncfusion-ej2-angular-navigations.mjs +1352 -0
  38. package/fesm2015/syncfusion-ej2-angular-navigations.mjs.map +1 -0
  39. package/fesm2020/syncfusion-ej2-angular-navigations.mjs +1352 -0
  40. package/fesm2020/syncfusion-ej2-angular-navigations.mjs.map +1 -0
  41. package/package.json +27 -13
  42. package/schematics/utils/lib-details.ts +2 -2
  43. package/src/accordion/accordion-all.module.d.ts +6 -0
  44. package/src/accordion/accordion.component.d.ts +3 -0
  45. package/src/accordion/accordion.module.d.ts +7 -0
  46. package/src/accordion/items.directive.d.ts +5 -0
  47. package/src/breadcrumb/breadcrumb-all.module.d.ts +6 -0
  48. package/src/breadcrumb/breadcrumb.component.d.ts +3 -0
  49. package/src/breadcrumb/breadcrumb.module.d.ts +7 -0
  50. package/src/breadcrumb/items.directive.d.ts +5 -0
  51. package/src/carousel/carousel-all.module.d.ts +6 -0
  52. package/src/carousel/carousel.component.d.ts +3 -0
  53. package/src/carousel/carousel.module.d.ts +7 -0
  54. package/src/carousel/items.directive.d.ts +5 -0
  55. package/src/context-menu/contextmenu-all.module.d.ts +6 -0
  56. package/src/context-menu/contextmenu.component.d.ts +3 -0
  57. package/src/context-menu/contextmenu.module.d.ts +6 -0
  58. package/src/menu/items.directive.d.ts +5 -0
  59. package/src/menu/menu-all.module.d.ts +6 -0
  60. package/src/menu/menu.component.d.ts +3 -0
  61. package/src/menu/menu.module.d.ts +7 -0
  62. package/src/sidebar/sidebar-all.module.d.ts +6 -0
  63. package/src/sidebar/sidebar.component.d.ts +3 -0
  64. package/src/sidebar/sidebar.module.d.ts +6 -0
  65. package/src/tab/items.directive.d.ts +5 -0
  66. package/src/tab/tab-all.module.d.ts +6 -0
  67. package/src/tab/tab.component.d.ts +3 -0
  68. package/src/tab/tab.module.d.ts +7 -0
  69. package/src/toolbar/items.directive.d.ts +5 -0
  70. package/src/toolbar/toolbar-all.module.d.ts +6 -0
  71. package/src/toolbar/toolbar.component.d.ts +3 -0
  72. package/src/toolbar/toolbar.module.d.ts +7 -0
  73. package/src/treeview/treeview-all.module.d.ts +6 -0
  74. package/src/treeview/treeview.component.d.ts +3 -0
  75. package/src/treeview/treeview.module.d.ts +6 -0
  76. package/styles/accordion/_all.scss +2 -0
  77. package/styles/accordion/_bootstrap-dark-definition.scss +75 -0
  78. package/styles/accordion/_bootstrap-definition.scss +80 -0
  79. package/styles/accordion/_bootstrap4-definition.scss +89 -0
  80. package/styles/accordion/_bootstrap5-dark-definition.scss +1 -0
  81. package/styles/accordion/_bootstrap5-definition.scss +85 -0
  82. package/styles/accordion/_fabric-dark-definition.scss +78 -0
  83. package/styles/accordion/_fabric-definition.scss +83 -0
  84. package/styles/accordion/_fluent-dark-definition.scss +1 -0
  85. package/styles/accordion/_fluent-definition.scss +84 -0
  86. package/styles/accordion/_fusionnew-definition.scss +85 -0
  87. package/styles/accordion/_highcontrast-definition.scss +110 -0
  88. package/styles/accordion/_highcontrast-light-definition.scss +108 -0
  89. package/styles/accordion/_layout.scss +416 -0
  90. package/styles/accordion/_material-dark-definition.scss +81 -0
  91. package/styles/accordion/_material-definition.scss +77 -0
  92. package/styles/accordion/_material3-definition.scss +85 -0
  93. package/styles/accordion/_tailwind-dark-definition.scss +1 -0
  94. package/styles/accordion/_tailwind-definition.scss +82 -0
  95. package/styles/accordion/_theme.scss +549 -0
  96. package/styles/accordion/bootstrap-dark.css +1 -0
  97. package/styles/accordion/bootstrap-dark.scss +4 -1
  98. package/styles/accordion/bootstrap.css +1 -0
  99. package/styles/accordion/bootstrap.scss +4 -1
  100. package/styles/accordion/bootstrap4.css +1 -0
  101. package/styles/accordion/bootstrap4.scss +4 -1
  102. package/styles/accordion/bootstrap5-dark.css +2 -0
  103. package/styles/accordion/bootstrap5-dark.scss +4 -1
  104. package/styles/accordion/bootstrap5.css +2 -0
  105. package/styles/accordion/bootstrap5.scss +4 -1
  106. package/styles/accordion/fabric-dark.css +1 -0
  107. package/styles/accordion/fabric-dark.scss +4 -1
  108. package/styles/accordion/fabric.css +1 -0
  109. package/styles/accordion/fabric.scss +4 -1
  110. package/styles/accordion/fluent-dark.css +1 -0
  111. package/styles/accordion/fluent-dark.scss +4 -1
  112. package/styles/accordion/fluent.css +1 -0
  113. package/styles/accordion/fluent.scss +4 -1
  114. package/styles/accordion/highcontrast-light.css +1 -0
  115. package/styles/accordion/highcontrast-light.scss +4 -1
  116. package/styles/accordion/highcontrast.css +1 -0
  117. package/styles/accordion/highcontrast.scss +4 -1
  118. package/styles/accordion/icons/_bootstrap-dark.scss +17 -0
  119. package/styles/accordion/icons/_bootstrap.scss +17 -0
  120. package/styles/accordion/icons/_bootstrap4.scss +17 -0
  121. package/styles/accordion/icons/_bootstrap5-dark.scss +1 -0
  122. package/styles/accordion/icons/_bootstrap5.scss +17 -0
  123. package/styles/accordion/icons/_fabric-dark.scss +17 -0
  124. package/styles/accordion/icons/_fabric.scss +17 -0
  125. package/styles/accordion/icons/_fluent-dark.scss +1 -0
  126. package/styles/accordion/icons/_fluent.scss +17 -0
  127. package/styles/accordion/icons/_fusionnew.scss +17 -0
  128. package/styles/accordion/icons/_highcontrast-light.scss +17 -0
  129. package/styles/accordion/icons/_highcontrast.scss +17 -0
  130. package/styles/accordion/icons/_material-dark.scss +17 -0
  131. package/styles/accordion/icons/_material.scss +17 -0
  132. package/styles/accordion/icons/_material3.scss +17 -0
  133. package/styles/accordion/icons/_tailwind-dark.scss +1 -0
  134. package/styles/accordion/icons/_tailwind.scss +17 -0
  135. package/styles/accordion/material-dark.css +1 -0
  136. package/styles/accordion/material-dark.scss +4 -1
  137. package/styles/accordion/material.css +1 -0
  138. package/styles/accordion/material.scss +4 -1
  139. package/styles/accordion/tailwind-dark.css +1 -0
  140. package/styles/accordion/tailwind-dark.scss +4 -1
  141. package/styles/accordion/tailwind.css +1 -0
  142. package/styles/accordion/tailwind.scss +4 -1
  143. package/styles/bootstrap-dark.css +21 -4
  144. package/styles/bootstrap.css +21 -4
  145. package/styles/bootstrap4.css +21 -4
  146. package/styles/bootstrap5-dark.css +30 -8
  147. package/styles/bootstrap5.css +30 -8
  148. package/styles/breadcrumb/_all.scss +3 -0
  149. package/styles/breadcrumb/_bootstrap-dark-definition.scss +54 -0
  150. package/styles/breadcrumb/_bootstrap-definition.scss +54 -0
  151. package/styles/breadcrumb/_bootstrap4-definition.scss +54 -0
  152. package/styles/breadcrumb/_bootstrap5-dark-definition.scss +1 -0
  153. package/styles/breadcrumb/_bootstrap5-definition.scss +59 -0
  154. package/styles/breadcrumb/_fabric-dark-definition.scss +59 -0
  155. package/styles/breadcrumb/_fabric-definition.scss +59 -0
  156. package/styles/breadcrumb/_fluent-dark-definition.scss +1 -0
  157. package/styles/breadcrumb/_fluent-definition.scss +62 -0
  158. package/styles/breadcrumb/_fusionnew-definition.scss +59 -0
  159. package/styles/breadcrumb/_highcontrast-definition.scss +61 -0
  160. package/styles/breadcrumb/_highcontrast-light-definition.scss +61 -0
  161. package/styles/breadcrumb/_layout.scss +491 -0
  162. package/styles/breadcrumb/_material-dark-definition.scss +50 -0
  163. package/styles/breadcrumb/_material-definition.scss +50 -0
  164. package/styles/breadcrumb/_material3-definition.scss +59 -0
  165. package/styles/breadcrumb/_tailwind-dark-definition.scss +1 -0
  166. package/styles/breadcrumb/_tailwind-definition.scss +60 -0
  167. package/styles/breadcrumb/_theme.scss +160 -0
  168. package/styles/breadcrumb/bootstrap-dark.scss +4 -1
  169. package/styles/breadcrumb/bootstrap.scss +4 -1
  170. package/styles/breadcrumb/bootstrap4.scss +4 -1
  171. package/styles/breadcrumb/bootstrap5-dark.scss +4 -1
  172. package/styles/breadcrumb/bootstrap5.scss +4 -1
  173. package/styles/breadcrumb/fabric-dark.scss +4 -1
  174. package/styles/breadcrumb/fabric.scss +4 -1
  175. package/styles/breadcrumb/fluent-dark.scss +4 -1
  176. package/styles/breadcrumb/fluent.scss +4 -1
  177. package/styles/breadcrumb/highcontrast-light.scss +4 -1
  178. package/styles/breadcrumb/highcontrast.scss +4 -1
  179. package/styles/breadcrumb/icons/_bootstrap-dark.scss +14 -0
  180. package/styles/breadcrumb/icons/_bootstrap.scss +14 -0
  181. package/styles/breadcrumb/icons/_bootstrap4.scss +14 -0
  182. package/styles/breadcrumb/icons/_bootstrap5-dark.scss +1 -0
  183. package/styles/breadcrumb/icons/_bootstrap5.scss +25 -0
  184. package/styles/breadcrumb/icons/_fabric-dark.scss +14 -0
  185. package/styles/breadcrumb/icons/_fabric.scss +14 -0
  186. package/styles/breadcrumb/icons/_fluent-dark.scss +1 -0
  187. package/styles/breadcrumb/icons/_fluent.scss +25 -0
  188. package/styles/breadcrumb/icons/_fusionnew.scss +25 -0
  189. package/styles/breadcrumb/icons/_highcontrast-light.scss +14 -0
  190. package/styles/breadcrumb/icons/_highcontrast.scss +14 -0
  191. package/styles/breadcrumb/icons/_material-dark.scss +25 -0
  192. package/styles/breadcrumb/icons/_material.scss +25 -0
  193. package/styles/breadcrumb/icons/_material3.scss +25 -0
  194. package/styles/breadcrumb/icons/_tailwind-dark.scss +25 -0
  195. package/styles/breadcrumb/icons/_tailwind.scss +25 -0
  196. package/styles/breadcrumb/material-dark.scss +4 -1
  197. package/styles/breadcrumb/material.scss +4 -1
  198. package/styles/breadcrumb/tailwind-dark.scss +4 -1
  199. package/styles/breadcrumb/tailwind.scss +4 -1
  200. package/styles/carousel/_all.scss +2 -0
  201. package/styles/carousel/_bootstrap-dark-definition.scss +22 -0
  202. package/styles/carousel/_bootstrap-definition.scss +22 -0
  203. package/styles/carousel/_bootstrap4-definition.scss +22 -0
  204. package/styles/carousel/_bootstrap5-dark-definition.scss +1 -0
  205. package/styles/carousel/_bootstrap5-definition.scss +22 -0
  206. package/styles/carousel/_fabric-dark-definition.scss +22 -0
  207. package/styles/carousel/_fabric-definition.scss +22 -0
  208. package/styles/carousel/_fluent-dark-definition.scss +1 -0
  209. package/styles/carousel/_fluent-definition.scss +22 -0
  210. package/styles/carousel/_fusionnew-definition.scss +22 -0
  211. package/styles/carousel/_highcontrast-definition.scss +22 -0
  212. package/styles/carousel/_highcontrast-light-definition.scss +22 -0
  213. package/styles/carousel/_layout.scss +179 -0
  214. package/styles/carousel/_material-dark-definition.scss +22 -0
  215. package/styles/carousel/_material-definition.scss +22 -0
  216. package/styles/carousel/_material3-definition.scss +22 -0
  217. package/styles/carousel/_tailwind-dark-definition.scss +1 -0
  218. package/styles/carousel/_tailwind-definition.scss +22 -0
  219. package/styles/carousel/_theme.scss +56 -0
  220. package/styles/carousel/bootstrap-dark.scss +5 -1
  221. package/styles/carousel/bootstrap.scss +5 -1
  222. package/styles/carousel/bootstrap4.scss +5 -1
  223. package/styles/carousel/bootstrap5-dark.scss +5 -1
  224. package/styles/carousel/bootstrap5.scss +5 -1
  225. package/styles/carousel/fabric-dark.scss +5 -1
  226. package/styles/carousel/fabric.scss +5 -1
  227. package/styles/carousel/fluent-dark.scss +5 -1
  228. package/styles/carousel/fluent.scss +5 -1
  229. package/styles/carousel/highcontrast-light.scss +5 -1
  230. package/styles/carousel/highcontrast.scss +5 -1
  231. package/styles/carousel/icons/_bootstrap-dark.scss +30 -0
  232. package/styles/carousel/icons/_bootstrap.scss +30 -0
  233. package/styles/carousel/icons/_bootstrap4.scss +30 -0
  234. package/styles/carousel/icons/_bootstrap5-dark.scss +1 -0
  235. package/styles/carousel/icons/_bootstrap5.scss +30 -0
  236. package/styles/carousel/icons/_fabric-dark.scss +30 -0
  237. package/styles/carousel/icons/_fabric.scss +30 -0
  238. package/styles/carousel/icons/_fluent-dark.scss +1 -0
  239. package/styles/carousel/icons/_fluent.scss +30 -0
  240. package/styles/carousel/icons/_fusionnew.scss +30 -0
  241. package/styles/carousel/icons/_highcontrast-light.scss +30 -0
  242. package/styles/carousel/icons/_highcontrast.scss +30 -0
  243. package/styles/carousel/icons/_material-dark.scss +30 -0
  244. package/styles/carousel/icons/_material.scss +30 -0
  245. package/styles/carousel/icons/_material3.scss +30 -0
  246. package/styles/carousel/icons/_tailwind-dark.scss +1 -0
  247. package/styles/carousel/icons/_tailwind.scss +30 -0
  248. package/styles/carousel/material-dark.scss +5 -1
  249. package/styles/carousel/material.scss +5 -1
  250. package/styles/carousel/tailwind-dark.scss +5 -1
  251. package/styles/carousel/tailwind.scss +5 -1
  252. package/styles/context-menu/_all.scss +2 -0
  253. package/styles/context-menu/_bootstrap-dark-definition.scss +53 -0
  254. package/styles/context-menu/_bootstrap-definition.scss +50 -0
  255. package/styles/context-menu/_bootstrap4-definition.scss +50 -0
  256. package/styles/context-menu/_bootstrap5-dark-definition.scss +1 -0
  257. package/styles/context-menu/_bootstrap5-definition.scss +52 -0
  258. package/styles/context-menu/_fabric-dark-definition.scss +53 -0
  259. package/styles/context-menu/_fabric-definition.scss +50 -0
  260. package/styles/context-menu/_fluent-dark-definition.scss +1 -0
  261. package/styles/context-menu/_fluent-definition.scss +52 -0
  262. package/styles/context-menu/_fusionnew-definition.scss +52 -0
  263. package/styles/context-menu/_highcontrast-definition.scss +50 -0
  264. package/styles/context-menu/_highcontrast-light-definition.scss +53 -0
  265. package/styles/context-menu/_layout-mixin.scss +168 -0
  266. package/styles/context-menu/_layout.scss +150 -0
  267. package/styles/context-menu/_material-dark-definition.scss +53 -0
  268. package/styles/context-menu/_material-definition.scss +50 -0
  269. package/styles/context-menu/_material3-definition.scss +52 -0
  270. package/styles/context-menu/_tailwind-dark-definition.scss +1 -0
  271. package/styles/context-menu/_tailwind-definition.scss +53 -0
  272. package/styles/context-menu/_theme-mixin.scss +59 -0
  273. package/styles/context-menu/_theme.scss +50 -0
  274. package/styles/context-menu/bootstrap-dark.scss +7 -1
  275. package/styles/context-menu/bootstrap.scss +7 -1
  276. package/styles/context-menu/bootstrap4.scss +7 -1
  277. package/styles/context-menu/bootstrap5-dark.css +1 -1
  278. package/styles/context-menu/bootstrap5-dark.scss +7 -1
  279. package/styles/context-menu/bootstrap5.css +1 -1
  280. package/styles/context-menu/bootstrap5.scss +7 -1
  281. package/styles/context-menu/fabric-dark.scss +7 -1
  282. package/styles/context-menu/fabric.scss +7 -1
  283. package/styles/context-menu/fluent-dark.css +1 -1
  284. package/styles/context-menu/fluent-dark.scss +7 -1
  285. package/styles/context-menu/fluent.css +1 -1
  286. package/styles/context-menu/fluent.scss +7 -1
  287. package/styles/context-menu/highcontrast-light.scss +7 -1
  288. package/styles/context-menu/highcontrast.scss +7 -1
  289. package/styles/context-menu/icons/_bootstrap-dark.scss +33 -0
  290. package/styles/context-menu/icons/_bootstrap.scss +33 -0
  291. package/styles/context-menu/icons/_bootstrap4.scss +33 -0
  292. package/styles/context-menu/icons/_bootstrap5-dark.scss +1 -0
  293. package/styles/context-menu/icons/_bootstrap5.scss +33 -0
  294. package/styles/context-menu/icons/_fabric-dark.scss +33 -0
  295. package/styles/context-menu/icons/_fabric.scss +33 -0
  296. package/styles/context-menu/icons/_fluent-dark.scss +1 -0
  297. package/styles/context-menu/icons/_fluent.scss +33 -0
  298. package/styles/context-menu/icons/_fusionnew.scss +33 -0
  299. package/styles/context-menu/icons/_highcontrast-light.scss +33 -0
  300. package/styles/context-menu/icons/_highcontrast.scss +33 -0
  301. package/styles/context-menu/icons/_material-dark.scss +33 -0
  302. package/styles/context-menu/icons/_material.scss +33 -0
  303. package/styles/context-menu/icons/_material3.scss +33 -0
  304. package/styles/context-menu/icons/_tailwind-dark.scss +33 -0
  305. package/styles/context-menu/icons/_tailwind.scss +33 -0
  306. package/styles/context-menu/material-dark.scss +7 -1
  307. package/styles/context-menu/material.scss +7 -1
  308. package/styles/context-menu/tailwind-dark.css +1 -1
  309. package/styles/context-menu/tailwind-dark.scss +7 -1
  310. package/styles/context-menu/tailwind.css +1 -1
  311. package/styles/context-menu/tailwind.scss +7 -1
  312. package/styles/fabric-dark.css +21 -4
  313. package/styles/fabric.css +21 -4
  314. package/styles/fluent-dark.css +28 -11
  315. package/styles/fluent.css +28 -11
  316. package/styles/h-scroll/_all.scss +2 -0
  317. package/styles/h-scroll/_bootstrap-dark-definition.scss +50 -0
  318. package/styles/h-scroll/_bootstrap-definition.scss +49 -0
  319. package/styles/h-scroll/_bootstrap4-definition.scss +49 -0
  320. package/styles/h-scroll/_bootstrap5-dark-definition.scss +1 -0
  321. package/styles/h-scroll/_bootstrap5-definition.scss +76 -0
  322. package/styles/h-scroll/_fabric-dark-definition.scss +51 -0
  323. package/styles/h-scroll/_fabric-definition.scss +48 -0
  324. package/styles/h-scroll/_fluent-dark-definition.scss +1 -0
  325. package/styles/h-scroll/_fluent-definition.scss +76 -0
  326. package/styles/h-scroll/_fusionnew-definition.scss +76 -0
  327. package/styles/h-scroll/_highcontrast-definition.scss +52 -0
  328. package/styles/h-scroll/_highcontrast-light-definition.scss +55 -0
  329. package/styles/h-scroll/_layout.scss +201 -0
  330. package/styles/h-scroll/_material-dark-definition.scss +78 -0
  331. package/styles/h-scroll/_material-definition.scss +75 -0
  332. package/styles/h-scroll/_material3-definition.scss +76 -0
  333. package/styles/h-scroll/_tailwind-dark-definition.scss +1 -0
  334. package/styles/h-scroll/_tailwind-definition.scss +76 -0
  335. package/styles/h-scroll/_theme.scss +160 -0
  336. package/styles/h-scroll/bootstrap-dark.scss +4 -1
  337. package/styles/h-scroll/bootstrap.scss +4 -1
  338. package/styles/h-scroll/bootstrap4.scss +4 -1
  339. package/styles/h-scroll/bootstrap5-dark.scss +4 -1
  340. package/styles/h-scroll/bootstrap5.scss +4 -1
  341. package/styles/h-scroll/fabric-dark.scss +4 -1
  342. package/styles/h-scroll/fabric.scss +4 -1
  343. package/styles/h-scroll/fluent-dark.scss +4 -1
  344. package/styles/h-scroll/fluent.scss +4 -1
  345. package/styles/h-scroll/highcontrast-light.scss +4 -1
  346. package/styles/h-scroll/highcontrast.scss +4 -1
  347. package/styles/h-scroll/icons/_bootstrap-dark.scss +49 -0
  348. package/styles/h-scroll/icons/_bootstrap.scss +49 -0
  349. package/styles/h-scroll/icons/_bootstrap4.scss +49 -0
  350. package/styles/h-scroll/icons/_bootstrap5-dark.scss +1 -0
  351. package/styles/h-scroll/icons/_bootstrap5.scss +49 -0
  352. package/styles/h-scroll/icons/_fabric-dark.scss +49 -0
  353. package/styles/h-scroll/icons/_fabric.scss +49 -0
  354. package/styles/h-scroll/icons/_fluent-dark.scss +1 -0
  355. package/styles/h-scroll/icons/_fluent.scss +49 -0
  356. package/styles/h-scroll/icons/_fusionnew.scss +49 -0
  357. package/styles/h-scroll/icons/_highcontrast-light.scss +49 -0
  358. package/styles/h-scroll/icons/_highcontrast.scss +49 -0
  359. package/styles/h-scroll/icons/_material-dark.scss +49 -0
  360. package/styles/h-scroll/icons/_material.scss +49 -0
  361. package/styles/h-scroll/icons/_material3.scss +49 -0
  362. package/styles/h-scroll/icons/_tailwind-dark.scss +1 -0
  363. package/styles/h-scroll/icons/_tailwind.scss +49 -0
  364. package/styles/h-scroll/material-dark.scss +4 -1
  365. package/styles/h-scroll/material.scss +4 -1
  366. package/styles/h-scroll/tailwind-dark.scss +4 -1
  367. package/styles/h-scroll/tailwind.scss +4 -1
  368. package/styles/highcontrast-light.css +20 -3
  369. package/styles/highcontrast.css +20 -3
  370. package/styles/material-dark.css +20 -3
  371. package/styles/material.css +20 -3
  372. package/styles/menu/_all.scss +2 -0
  373. package/styles/menu/_bootstrap-dark-definition.scss +64 -0
  374. package/styles/menu/_bootstrap-definition.scss +65 -0
  375. package/styles/menu/_bootstrap4-definition.scss +64 -0
  376. package/styles/menu/_bootstrap5-dark-definition.scss +1 -0
  377. package/styles/menu/_bootstrap5-definition.scss +67 -0
  378. package/styles/menu/_fabric-dark-definition.scss +64 -0
  379. package/styles/menu/_fabric-definition.scss +64 -0
  380. package/styles/menu/_fluent-dark-definition.scss +1 -0
  381. package/styles/menu/_fluent-definition.scss +67 -0
  382. package/styles/menu/_fusionnew-definition.scss +67 -0
  383. package/styles/menu/_highcontrast-definition.scss +65 -0
  384. package/styles/menu/_highcontrast-light-definition.scss +61 -0
  385. package/styles/menu/_layout.scss +709 -0
  386. package/styles/menu/_material-dark-definition.scss +64 -0
  387. package/styles/menu/_material-definition.scss +64 -0
  388. package/styles/menu/_material3-definition.scss +67 -0
  389. package/styles/menu/_tailwind-dark-definition.scss +1 -0
  390. package/styles/menu/_tailwind-definition.scss +66 -0
  391. package/styles/menu/_theme.scss +262 -0
  392. package/styles/menu/bootstrap-dark.css +2 -0
  393. package/styles/menu/bootstrap-dark.scss +8 -1
  394. package/styles/menu/bootstrap.css +2 -0
  395. package/styles/menu/bootstrap.scss +8 -1
  396. package/styles/menu/bootstrap4.css +2 -0
  397. package/styles/menu/bootstrap4.scss +8 -1
  398. package/styles/menu/bootstrap5-dark.css +3 -1
  399. package/styles/menu/bootstrap5-dark.scss +8 -1
  400. package/styles/menu/bootstrap5.css +3 -1
  401. package/styles/menu/bootstrap5.scss +8 -1
  402. package/styles/menu/fabric-dark.css +2 -0
  403. package/styles/menu/fabric-dark.scss +8 -1
  404. package/styles/menu/fabric.css +2 -0
  405. package/styles/menu/fabric.scss +8 -1
  406. package/styles/menu/fluent-dark.css +3 -1
  407. package/styles/menu/fluent-dark.scss +8 -1
  408. package/styles/menu/fluent.css +3 -1
  409. package/styles/menu/fluent.scss +8 -1
  410. package/styles/menu/highcontrast-light.css +2 -0
  411. package/styles/menu/highcontrast-light.scss +8 -1
  412. package/styles/menu/highcontrast.css +2 -0
  413. package/styles/menu/highcontrast.scss +8 -1
  414. package/styles/menu/icons/_bootstrap-dark.scss +134 -0
  415. package/styles/menu/icons/_bootstrap.scss +134 -0
  416. package/styles/menu/icons/_bootstrap4.scss +134 -0
  417. package/styles/menu/icons/_bootstrap5-dark.scss +1 -0
  418. package/styles/menu/icons/_bootstrap5.scss +134 -0
  419. package/styles/menu/icons/_fabric-dark.scss +134 -0
  420. package/styles/menu/icons/_fabric.scss +134 -0
  421. package/styles/menu/icons/_fluent-dark.scss +1 -0
  422. package/styles/menu/icons/_fluent.scss +134 -0
  423. package/styles/menu/icons/_fusionnew.scss +134 -0
  424. package/styles/menu/icons/_highcontrast-light.scss +134 -0
  425. package/styles/menu/icons/_highcontrast.scss +134 -0
  426. package/styles/menu/icons/_material-dark.scss +134 -0
  427. package/styles/menu/icons/_material.scss +134 -0
  428. package/styles/menu/icons/_material3.scss +134 -0
  429. package/styles/menu/icons/_tailwind-dark.scss +134 -0
  430. package/styles/menu/icons/_tailwind.scss +134 -0
  431. package/styles/menu/material-dark.css +2 -0
  432. package/styles/menu/material-dark.scss +8 -1
  433. package/styles/menu/material.css +2 -0
  434. package/styles/menu/material.scss +8 -1
  435. package/styles/menu/tailwind-dark.css +3 -1
  436. package/styles/menu/tailwind-dark.scss +8 -1
  437. package/styles/menu/tailwind.css +3 -1
  438. package/styles/menu/tailwind.scss +8 -1
  439. package/styles/pager/_all.scss +2 -0
  440. package/styles/pager/_bootstrap-dark-definition.scss +131 -0
  441. package/styles/pager/_bootstrap-definition.scss +131 -0
  442. package/styles/pager/_bootstrap4-definition.scss +131 -0
  443. package/styles/pager/_bootstrap5-dark-definition.scss +1 -0
  444. package/styles/pager/_bootstrap5-definition.scss +146 -0
  445. package/styles/pager/_fabric-dark-definition.scss +131 -0
  446. package/styles/pager/_fabric-definition.scss +129 -0
  447. package/styles/pager/_fluent-dark-definition.scss +1 -0
  448. package/styles/pager/_fluent-definition.scss +133 -0
  449. package/styles/pager/_fusionnew-definition.scss +146 -0
  450. package/styles/pager/_highcontrast-definition.scss +129 -0
  451. package/styles/pager/_highcontrast-light-definition.scss +131 -0
  452. package/styles/pager/_layout.scss +896 -0
  453. package/styles/pager/_material-dark-definition.scss +132 -0
  454. package/styles/pager/_material-definition.scss +130 -0
  455. package/styles/pager/_material3-definition.scss +146 -0
  456. package/styles/pager/_tailwind-dark-definition.scss +1 -0
  457. package/styles/pager/_tailwind-definition.scss +132 -0
  458. package/styles/pager/_theme.scss +152 -0
  459. package/styles/pager/bootstrap-dark.css +5 -3
  460. package/styles/pager/bootstrap-dark.scss +4 -1
  461. package/styles/pager/bootstrap.css +5 -3
  462. package/styles/pager/bootstrap.scss +4 -1
  463. package/styles/pager/bootstrap4.css +5 -3
  464. package/styles/pager/bootstrap4.scss +4 -1
  465. package/styles/pager/bootstrap5-dark.css +5 -3
  466. package/styles/pager/bootstrap5-dark.scss +4 -1
  467. package/styles/pager/bootstrap5.css +5 -3
  468. package/styles/pager/bootstrap5.scss +4 -1
  469. package/styles/pager/fabric-dark.css +5 -3
  470. package/styles/pager/fabric-dark.scss +4 -1
  471. package/styles/pager/fabric.css +5 -3
  472. package/styles/pager/fabric.scss +4 -1
  473. package/styles/pager/fluent-dark.css +5 -3
  474. package/styles/pager/fluent-dark.scss +4 -1
  475. package/styles/pager/fluent.css +5 -3
  476. package/styles/pager/fluent.scss +4 -1
  477. package/styles/pager/highcontrast-light.css +4 -2
  478. package/styles/pager/highcontrast-light.scss +4 -1
  479. package/styles/pager/highcontrast.css +4 -2
  480. package/styles/pager/highcontrast.scss +4 -1
  481. package/styles/pager/icons/_bootstrap-dark.scss +50 -0
  482. package/styles/pager/icons/_bootstrap.scss +50 -0
  483. package/styles/pager/icons/_bootstrap4.scss +50 -0
  484. package/styles/pager/icons/_bootstrap5-dark.scss +1 -0
  485. package/styles/pager/icons/_bootstrap5.scss +50 -0
  486. package/styles/pager/icons/_fabric-dark.scss +50 -0
  487. package/styles/pager/icons/_fabric.scss +50 -0
  488. package/styles/pager/icons/_fluent-dark.scss +1 -0
  489. package/styles/pager/icons/_fluent.scss +50 -0
  490. package/styles/pager/icons/_fusionnew.scss +50 -0
  491. package/styles/pager/icons/_highcontrast-light.scss +50 -0
  492. package/styles/pager/icons/_highcontrast.scss +46 -0
  493. package/styles/pager/icons/_material-dark.scss +50 -0
  494. package/styles/pager/icons/_material.scss +46 -0
  495. package/styles/pager/icons/_material3.scss +50 -0
  496. package/styles/pager/icons/_tailwind-dark.scss +1 -0
  497. package/styles/pager/icons/_tailwind.scss +50 -0
  498. package/styles/pager/material-dark.css +4 -2
  499. package/styles/pager/material-dark.scss +4 -1
  500. package/styles/pager/material.css +4 -2
  501. package/styles/pager/material.scss +4 -1
  502. package/styles/pager/tailwind-dark.css +5 -3
  503. package/styles/pager/tailwind-dark.scss +4 -1
  504. package/styles/pager/tailwind.css +5 -3
  505. package/styles/pager/tailwind.scss +4 -1
  506. package/styles/sidebar/_all.scss +3 -0
  507. package/styles/sidebar/_bootstrap-dark-definition.scss +4 -0
  508. package/styles/sidebar/_bootstrap-definition.scss +4 -0
  509. package/styles/sidebar/_bootstrap4-definition.scss +4 -0
  510. package/styles/sidebar/_bootstrap5-dark-definition.scss +1 -0
  511. package/styles/sidebar/_bootstrap5-definition.scss +6 -0
  512. package/styles/sidebar/_fabric-dark-definition.scss +4 -0
  513. package/styles/sidebar/_fabric-definition.scss +4 -0
  514. package/styles/sidebar/_fluent-dark-definition.scss +1 -0
  515. package/styles/sidebar/_fluent-definition.scss +6 -0
  516. package/styles/sidebar/_fusionnew-definition.scss +6 -0
  517. package/styles/sidebar/_highcontrast-definition.scss +4 -0
  518. package/styles/sidebar/_highcontrast-light-definition.scss +4 -0
  519. package/styles/sidebar/_icons.scss +1 -0
  520. package/styles/sidebar/_layout.scss +1 -0
  521. package/styles/sidebar/_material-dark-definition.scss +4 -0
  522. package/styles/sidebar/_material-definition.scss +6 -0
  523. package/styles/sidebar/_material3-definition.scss +6 -0
  524. package/styles/sidebar/_tailwind-dark-definition.scss +1 -0
  525. package/styles/sidebar/_tailwind-definition.scss +6 -0
  526. package/styles/sidebar/_theme.scss +182 -0
  527. package/styles/sidebar/bootstrap-dark.css +4 -0
  528. package/styles/sidebar/bootstrap-dark.scss +3 -1
  529. package/styles/sidebar/bootstrap.css +4 -0
  530. package/styles/sidebar/bootstrap.scss +3 -1
  531. package/styles/sidebar/bootstrap4.css +4 -0
  532. package/styles/sidebar/bootstrap4.scss +3 -1
  533. package/styles/sidebar/bootstrap5-dark.css +4 -0
  534. package/styles/sidebar/bootstrap5-dark.scss +3 -1
  535. package/styles/sidebar/bootstrap5.css +4 -0
  536. package/styles/sidebar/bootstrap5.scss +3 -1
  537. package/styles/sidebar/fabric-dark.css +4 -0
  538. package/styles/sidebar/fabric-dark.scss +3 -1
  539. package/styles/sidebar/fabric.css +4 -0
  540. package/styles/sidebar/fabric.scss +3 -1
  541. package/styles/sidebar/fluent-dark.css +4 -0
  542. package/styles/sidebar/fluent-dark.scss +3 -1
  543. package/styles/sidebar/fluent.css +4 -0
  544. package/styles/sidebar/fluent.scss +3 -1
  545. package/styles/sidebar/highcontrast-light.css +4 -0
  546. package/styles/sidebar/highcontrast-light.scss +3 -1
  547. package/styles/sidebar/highcontrast.css +4 -0
  548. package/styles/sidebar/highcontrast.scss +3 -1
  549. package/styles/sidebar/material-dark.css +4 -0
  550. package/styles/sidebar/material-dark.scss +3 -1
  551. package/styles/sidebar/material.css +4 -0
  552. package/styles/sidebar/material.scss +3 -1
  553. package/styles/sidebar/tailwind-dark.css +4 -0
  554. package/styles/sidebar/tailwind-dark.scss +3 -1
  555. package/styles/sidebar/tailwind.css +4 -0
  556. package/styles/sidebar/tailwind.scss +3 -1
  557. package/styles/tab/_all.scss +2 -0
  558. package/styles/tab/_bootstrap-dark-definition.scss +398 -0
  559. package/styles/tab/_bootstrap-definition.scss +407 -0
  560. package/styles/tab/_bootstrap4-definition.scss +411 -0
  561. package/styles/tab/_bootstrap5-dark-definition.scss +1 -0
  562. package/styles/tab/_bootstrap5-definition.scss +401 -0
  563. package/styles/tab/_fabric-dark-definition.scss +406 -0
  564. package/styles/tab/_fabric-definition.scss +421 -0
  565. package/styles/tab/_fluent-dark-definition.scss +1 -0
  566. package/styles/tab/_fluent-definition.scss +409 -0
  567. package/styles/tab/_fusionnew-definition.scss +401 -0
  568. package/styles/tab/_highcontrast-definition.scss +445 -0
  569. package/styles/tab/_highcontrast-light-definition.scss +433 -0
  570. package/styles/tab/_icons.scss +44 -0
  571. package/styles/tab/_layout.scss +4113 -0
  572. package/styles/tab/_material-dark-definition.scss +417 -0
  573. package/styles/tab/_material-definition.scss +427 -0
  574. package/styles/tab/_material3-definition.scss +401 -0
  575. package/styles/tab/_tailwind-dark-definition.scss +1 -0
  576. package/styles/tab/_tailwind-definition.scss +430 -0
  577. package/styles/tab/_theme.scss +2024 -0
  578. package/styles/tab/bootstrap-dark.css +1 -1
  579. package/styles/tab/bootstrap-dark.scss +5 -1
  580. package/styles/tab/bootstrap.css +1 -1
  581. package/styles/tab/bootstrap.scss +5 -1
  582. package/styles/tab/bootstrap4.css +1 -1
  583. package/styles/tab/bootstrap4.scss +5 -1
  584. package/styles/tab/bootstrap5-dark.css +5 -2
  585. package/styles/tab/bootstrap5-dark.scss +5 -1
  586. package/styles/tab/bootstrap5.css +5 -2
  587. package/styles/tab/bootstrap5.scss +5 -1
  588. package/styles/tab/fabric-dark.css +1 -1
  589. package/styles/tab/fabric-dark.scss +5 -1
  590. package/styles/tab/fabric.css +1 -1
  591. package/styles/tab/fabric.scss +5 -1
  592. package/styles/tab/fluent-dark.css +5 -5
  593. package/styles/tab/fluent-dark.scss +5 -1
  594. package/styles/tab/fluent.css +5 -5
  595. package/styles/tab/fluent.scss +5 -1
  596. package/styles/tab/highcontrast-light.css +1 -1
  597. package/styles/tab/highcontrast-light.scss +5 -1
  598. package/styles/tab/highcontrast.css +1 -1
  599. package/styles/tab/highcontrast.scss +5 -1
  600. package/styles/tab/icons/_bootstrap-dark.scss +141 -0
  601. package/styles/tab/icons/_bootstrap.scss +141 -0
  602. package/styles/tab/icons/_bootstrap4.scss +141 -0
  603. package/styles/tab/icons/_bootstrap5-dark.scss +1 -0
  604. package/styles/tab/icons/_bootstrap5.scss +141 -0
  605. package/styles/tab/icons/_fabric-dark.scss +141 -0
  606. package/styles/tab/icons/_fabric.scss +141 -0
  607. package/styles/tab/icons/_fluent-dark.scss +1 -0
  608. package/styles/tab/icons/_fluent.scss +141 -0
  609. package/styles/tab/icons/_fusionnew.scss +141 -0
  610. package/styles/tab/icons/_highcontrast-light.scss +141 -0
  611. package/styles/tab/icons/_highcontrast.scss +141 -0
  612. package/styles/tab/icons/_material-dark.scss +141 -0
  613. package/styles/tab/icons/_material.scss +141 -0
  614. package/styles/tab/icons/_material3.scss +141 -0
  615. package/styles/tab/icons/_tailwind-dark.scss +1 -0
  616. package/styles/tab/icons/_tailwind.scss +141 -0
  617. package/styles/tab/material-dark.css +1 -1
  618. package/styles/tab/material-dark.scss +5 -1
  619. package/styles/tab/material.css +1 -1
  620. package/styles/tab/material.scss +5 -1
  621. package/styles/tab/tailwind-dark.css +1 -1
  622. package/styles/tab/tailwind-dark.scss +5 -1
  623. package/styles/tab/tailwind.css +1 -1
  624. package/styles/tab/tailwind.scss +5 -1
  625. package/styles/tailwind-dark.css +24 -7
  626. package/styles/tailwind.css +24 -7
  627. package/styles/toolbar/_all.scss +2 -0
  628. package/styles/toolbar/_bootstrap-dark-definition.scss +143 -0
  629. package/styles/toolbar/_bootstrap-definition.scss +141 -0
  630. package/styles/toolbar/_bootstrap4-definition.scss +146 -0
  631. package/styles/toolbar/_bootstrap5-dark-definition.scss +1 -0
  632. package/styles/toolbar/_bootstrap5-definition.scss +162 -0
  633. package/styles/toolbar/_fabric-dark-definition.scss +162 -0
  634. package/styles/toolbar/_fabric-definition.scss +147 -0
  635. package/styles/toolbar/_fluent-dark-definition.scss +1 -0
  636. package/styles/toolbar/_fluent-definition.scss +150 -0
  637. package/styles/toolbar/_fusionnew-definition.scss +162 -0
  638. package/styles/toolbar/_highcontrast-definition.scss +157 -0
  639. package/styles/toolbar/_highcontrast-light-definition.scss +173 -0
  640. package/styles/toolbar/_layout.scss +1440 -0
  641. package/styles/toolbar/_material-dark-definition.scss +184 -0
  642. package/styles/toolbar/_material-definition.scss +170 -0
  643. package/styles/toolbar/_material3-definition.scss +162 -0
  644. package/styles/toolbar/_tailwind-dark-definition.scss +1 -0
  645. package/styles/toolbar/_tailwind-definition.scss +150 -0
  646. package/styles/toolbar/_theme.scss +550 -0
  647. package/styles/toolbar/bootstrap-dark.css +2 -0
  648. package/styles/toolbar/bootstrap-dark.scss +8 -1
  649. package/styles/toolbar/bootstrap.css +2 -0
  650. package/styles/toolbar/bootstrap.scss +8 -1
  651. package/styles/toolbar/bootstrap4.css +2 -0
  652. package/styles/toolbar/bootstrap4.scss +8 -1
  653. package/styles/toolbar/bootstrap5-dark.css +4 -1
  654. package/styles/toolbar/bootstrap5-dark.scss +8 -1
  655. package/styles/toolbar/bootstrap5.css +4 -1
  656. package/styles/toolbar/bootstrap5.scss +8 -1
  657. package/styles/toolbar/fabric-dark.css +2 -0
  658. package/styles/toolbar/fabric-dark.scss +8 -1
  659. package/styles/toolbar/fabric.css +2 -0
  660. package/styles/toolbar/fabric.scss +8 -1
  661. package/styles/toolbar/fluent-dark.css +3 -1
  662. package/styles/toolbar/fluent-dark.scss +8 -1
  663. package/styles/toolbar/fluent.css +3 -1
  664. package/styles/toolbar/fluent.scss +8 -1
  665. package/styles/toolbar/highcontrast-light.css +2 -0
  666. package/styles/toolbar/highcontrast-light.scss +8 -1
  667. package/styles/toolbar/highcontrast.css +2 -0
  668. package/styles/toolbar/highcontrast.scss +8 -1
  669. package/styles/toolbar/icons/_bootstrap-dark.scss +16 -0
  670. package/styles/toolbar/icons/_bootstrap.scss +16 -0
  671. package/styles/toolbar/icons/_bootstrap4.scss +16 -0
  672. package/styles/toolbar/icons/_bootstrap5-dark.scss +1 -0
  673. package/styles/toolbar/icons/_bootstrap5.scss +16 -0
  674. package/styles/toolbar/icons/_fabric-dark.scss +16 -0
  675. package/styles/toolbar/icons/_fabric.scss +16 -0
  676. package/styles/toolbar/icons/_fluent-dark.scss +1 -0
  677. package/styles/toolbar/icons/_fluent.scss +16 -0
  678. package/styles/toolbar/icons/_fusionnew.scss +16 -0
  679. package/styles/toolbar/icons/_highcontrast-light.scss +16 -0
  680. package/styles/toolbar/icons/_highcontrast.scss +16 -0
  681. package/styles/toolbar/icons/_material-dark.scss +16 -0
  682. package/styles/toolbar/icons/_material.scss +16 -0
  683. package/styles/toolbar/icons/_material3.scss +16 -0
  684. package/styles/toolbar/icons/_tailwind-dark.scss +1 -0
  685. package/styles/toolbar/icons/_tailwind.scss +16 -0
  686. package/styles/toolbar/material-dark.css +2 -0
  687. package/styles/toolbar/material-dark.scss +8 -1
  688. package/styles/toolbar/material.css +2 -0
  689. package/styles/toolbar/material.scss +8 -1
  690. package/styles/toolbar/tailwind-dark.css +3 -1
  691. package/styles/toolbar/tailwind-dark.scss +8 -1
  692. package/styles/toolbar/tailwind.css +3 -1
  693. package/styles/toolbar/tailwind.scss +8 -1
  694. package/styles/treeview/_all.scss +2 -0
  695. package/styles/treeview/_bootstrap-dark-definition.scss +118 -0
  696. package/styles/treeview/_bootstrap-definition.scss +113 -0
  697. package/styles/treeview/_bootstrap4-definition.scss +141 -0
  698. package/styles/treeview/_bootstrap5-dark-definition.scss +1 -0
  699. package/styles/treeview/_bootstrap5-definition.scss +120 -0
  700. package/styles/treeview/_fabric-dark-definition.scss +116 -0
  701. package/styles/treeview/_fabric-definition.scss +112 -0
  702. package/styles/treeview/_fluent-dark-definition.scss +1 -0
  703. package/styles/treeview/_fluent-definition.scss +120 -0
  704. package/styles/treeview/_fusionnew-definition.scss +120 -0
  705. package/styles/treeview/_highcontrast-definition.scss +118 -0
  706. package/styles/treeview/_highcontrast-light-definition.scss +123 -0
  707. package/styles/treeview/_layout.scss +1036 -0
  708. package/styles/treeview/_material-dark-definition.scss +114 -0
  709. package/styles/treeview/_material-definition.scss +112 -0
  710. package/styles/treeview/_material3-definition.scss +120 -0
  711. package/styles/treeview/_tailwind-dark-definition.scss +1 -0
  712. package/styles/treeview/_tailwind-definition.scss +124 -0
  713. package/styles/treeview/_theme.scss +364 -0
  714. package/styles/treeview/bootstrap-dark.css +6 -0
  715. package/styles/treeview/bootstrap-dark.scss +6 -1
  716. package/styles/treeview/bootstrap.css +6 -0
  717. package/styles/treeview/bootstrap.scss +6 -1
  718. package/styles/treeview/bootstrap4.css +6 -0
  719. package/styles/treeview/bootstrap4.scss +6 -1
  720. package/styles/treeview/bootstrap5-dark.css +6 -0
  721. package/styles/treeview/bootstrap5-dark.scss +6 -1
  722. package/styles/treeview/bootstrap5.css +6 -0
  723. package/styles/treeview/bootstrap5.scss +6 -1
  724. package/styles/treeview/fabric-dark.css +6 -0
  725. package/styles/treeview/fabric-dark.scss +6 -1
  726. package/styles/treeview/fabric.css +6 -0
  727. package/styles/treeview/fabric.scss +6 -1
  728. package/styles/treeview/fluent-dark.css +6 -0
  729. package/styles/treeview/fluent-dark.scss +6 -1
  730. package/styles/treeview/fluent.css +6 -0
  731. package/styles/treeview/fluent.scss +6 -1
  732. package/styles/treeview/highcontrast-light.css +6 -0
  733. package/styles/treeview/highcontrast-light.scss +6 -1
  734. package/styles/treeview/highcontrast.css +6 -0
  735. package/styles/treeview/highcontrast.scss +6 -1
  736. package/styles/treeview/icons/_bootstrap-dark.scss +39 -0
  737. package/styles/treeview/icons/_bootstrap.scss +39 -0
  738. package/styles/treeview/icons/_bootstrap4.scss +39 -0
  739. package/styles/treeview/icons/_bootstrap5-dark.scss +1 -0
  740. package/styles/treeview/icons/_bootstrap5.scss +43 -0
  741. package/styles/treeview/icons/_fabric-dark.scss +43 -0
  742. package/styles/treeview/icons/_fabric.scss +43 -0
  743. package/styles/treeview/icons/_fluent-dark.scss +1 -0
  744. package/styles/treeview/icons/_fluent.scss +43 -0
  745. package/styles/treeview/icons/_fusionnew.scss +43 -0
  746. package/styles/treeview/icons/_highcontrast-light.scss +43 -0
  747. package/styles/treeview/icons/_highcontrast.scss +43 -0
  748. package/styles/treeview/icons/_material-dark.scss +43 -0
  749. package/styles/treeview/icons/_material.scss +43 -0
  750. package/styles/treeview/icons/_material3.scss +43 -0
  751. package/styles/treeview/icons/_tailwind-dark.scss +43 -0
  752. package/styles/treeview/icons/_tailwind.scss +43 -0
  753. package/styles/treeview/material-dark.css +6 -0
  754. package/styles/treeview/material-dark.scss +6 -1
  755. package/styles/treeview/material.css +6 -0
  756. package/styles/treeview/material.scss +6 -1
  757. package/styles/treeview/tailwind-dark.css +6 -0
  758. package/styles/treeview/tailwind-dark.scss +6 -1
  759. package/styles/treeview/tailwind.css +6 -0
  760. package/styles/treeview/tailwind.scss +6 -1
  761. package/styles/v-scroll/_all.scss +2 -0
  762. package/styles/v-scroll/_bootstrap-dark-definition.scss +51 -0
  763. package/styles/v-scroll/_bootstrap-definition.scss +49 -0
  764. package/styles/v-scroll/_bootstrap4-definition.scss +49 -0
  765. package/styles/v-scroll/_bootstrap5-dark-definition.scss +1 -0
  766. package/styles/v-scroll/_bootstrap5-definition.scss +49 -0
  767. package/styles/v-scroll/_fabric-dark-definition.scss +52 -0
  768. package/styles/v-scroll/_fabric-definition.scss +50 -0
  769. package/styles/v-scroll/_fluent-dark-definition.scss +1 -0
  770. package/styles/v-scroll/_fluent-definition.scss +49 -0
  771. package/styles/v-scroll/_fusionnew-definition.scss +49 -0
  772. package/styles/v-scroll/_highcontrast-definition.scss +51 -0
  773. package/styles/v-scroll/_highcontrast-light-definition.scss +53 -0
  774. package/styles/v-scroll/_layout.scss +163 -0
  775. package/styles/v-scroll/_material-dark-definition.scss +79 -0
  776. package/styles/v-scroll/_material-definition.scss +77 -0
  777. package/styles/v-scroll/_material3-definition.scss +49 -0
  778. package/styles/v-scroll/_tailwind-dark-definition.scss +1 -0
  779. package/styles/v-scroll/_tailwind-definition.scss +49 -0
  780. package/styles/v-scroll/_theme.scss +134 -0
  781. package/styles/v-scroll/bootstrap-dark.scss +4 -1
  782. package/styles/v-scroll/bootstrap.scss +4 -1
  783. package/styles/v-scroll/bootstrap4.scss +4 -1
  784. package/styles/v-scroll/bootstrap5-dark.scss +4 -1
  785. package/styles/v-scroll/bootstrap5.scss +4 -1
  786. package/styles/v-scroll/fabric-dark.scss +4 -1
  787. package/styles/v-scroll/fabric.scss +4 -1
  788. package/styles/v-scroll/fluent-dark.scss +4 -1
  789. package/styles/v-scroll/fluent.scss +4 -1
  790. package/styles/v-scroll/highcontrast-light.scss +4 -1
  791. package/styles/v-scroll/highcontrast.scss +4 -1
  792. package/styles/v-scroll/icons/_bootstrap-dark.scss +27 -0
  793. package/styles/v-scroll/icons/_bootstrap.scss +27 -0
  794. package/styles/v-scroll/icons/_bootstrap4.scss +27 -0
  795. package/styles/v-scroll/icons/_bootstrap5-dark.scss +1 -0
  796. package/styles/v-scroll/icons/_bootstrap5.scss +27 -0
  797. package/styles/v-scroll/icons/_fabric-dark.scss +27 -0
  798. package/styles/v-scroll/icons/_fabric.scss +27 -0
  799. package/styles/v-scroll/icons/_fluent-dark.scss +1 -0
  800. package/styles/v-scroll/icons/_fluent.scss +27 -0
  801. package/styles/v-scroll/icons/_fusionnew.scss +27 -0
  802. package/styles/v-scroll/icons/_highcontrast-light.scss +27 -0
  803. package/styles/v-scroll/icons/_highcontrast.scss +27 -0
  804. package/styles/v-scroll/icons/_material-dark.scss +27 -0
  805. package/styles/v-scroll/icons/_material.scss +27 -0
  806. package/styles/v-scroll/icons/_material3.scss +27 -0
  807. package/styles/v-scroll/icons/_tailwind-dark.scss +1 -0
  808. package/styles/v-scroll/icons/_tailwind.scss +27 -0
  809. package/styles/v-scroll/material-dark.scss +4 -1
  810. package/styles/v-scroll/material.scss +4 -1
  811. package/styles/v-scroll/tailwind-dark.scss +4 -1
  812. package/styles/v-scroll/tailwind.scss +4 -1
  813. package/syncfusion-ej2-angular-navigations.d.ts +5 -0
  814. package/@syncfusion/ej2-angular-navigations.es5.js +0 -1880
  815. package/@syncfusion/ej2-angular-navigations.es5.js.map +0 -1
  816. package/@syncfusion/ej2-angular-navigations.js +0 -1729
  817. package/@syncfusion/ej2-angular-navigations.js.map +0 -1
  818. package/CHANGELOG.md +0 -1748
  819. package/dist/ej2-angular-navigations.umd.js +0 -1967
  820. package/dist/ej2-angular-navigations.umd.js.map +0 -1
  821. package/dist/ej2-angular-navigations.umd.min.js +0 -11
  822. package/dist/ej2-angular-navigations.umd.min.js.map +0 -1
  823. package/ej2-angular-navigations.d.ts +0 -13
  824. package/ej2-angular-navigations.metadata.json +0 -1
  825. package/postinstall/tagchange.js +0 -18
  826. package/schematics/collection.json +0 -155
  827. package/schematics/generators/accordion-default/index.d.ts +0 -3
  828. package/schematics/generators/accordion-default/index.js +0 -8
  829. package/schematics/generators/accordion-default/sample-details.d.ts +0 -5
  830. package/schematics/generators/accordion-default/sample-details.js +0 -7
  831. package/schematics/generators/accordion-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  832. package/schematics/generators/accordion-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -49
  833. package/schematics/generators/accordion-default/schema.d.ts +0 -3
  834. package/schematics/generators/accordion-default/schema.js +0 -2
  835. package/schematics/generators/accordion-default/schema.json +0 -125
  836. package/schematics/generators/accordion-html-template/index.d.ts +0 -3
  837. package/schematics/generators/accordion-html-template/index.js +0 -8
  838. package/schematics/generators/accordion-html-template/sample-details.d.ts +0 -5
  839. package/schematics/generators/accordion-html-template/sample-details.js +0 -7
  840. package/schematics/generators/accordion-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -57
  841. package/schematics/generators/accordion-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -50
  842. package/schematics/generators/accordion-html-template/schema.d.ts +0 -3
  843. package/schematics/generators/accordion-html-template/schema.js +0 -2
  844. package/schematics/generators/accordion-html-template/schema.json +0 -125
  845. package/schematics/generators/accordion-multiple-expand/index.d.ts +0 -3
  846. package/schematics/generators/accordion-multiple-expand/index.js +0 -8
  847. package/schematics/generators/accordion-multiple-expand/sample-details.d.ts +0 -5
  848. package/schematics/generators/accordion-multiple-expand/sample-details.js +0 -7
  849. package/schematics/generators/accordion-multiple-expand/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  850. package/schematics/generators/accordion-multiple-expand/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -49
  851. package/schematics/generators/accordion-multiple-expand/schema.d.ts +0 -3
  852. package/schematics/generators/accordion-multiple-expand/schema.js +0 -2
  853. package/schematics/generators/accordion-multiple-expand/schema.json +0 -125
  854. package/schematics/generators/accordion-nested/index.d.ts +0 -3
  855. package/schematics/generators/accordion-nested/index.js +0 -8
  856. package/schematics/generators/accordion-nested/sample-details.d.ts +0 -5
  857. package/schematics/generators/accordion-nested/sample-details.js +0 -7
  858. package/schematics/generators/accordion-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  859. package/schematics/generators/accordion-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -104
  860. package/schematics/generators/accordion-nested/schema.d.ts +0 -3
  861. package/schematics/generators/accordion-nested/schema.js +0 -2
  862. package/schematics/generators/accordion-nested/schema.json +0 -125
  863. package/schematics/generators/contextmenu-default/index.d.ts +0 -3
  864. package/schematics/generators/contextmenu-default/index.js +0 -8
  865. package/schematics/generators/contextmenu-default/sample-details.d.ts +0 -5
  866. package/schematics/generators/contextmenu-default/sample-details.js +0 -7
  867. package/schematics/generators/contextmenu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -65
  868. package/schematics/generators/contextmenu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -6
  869. package/schematics/generators/contextmenu-default/schema.d.ts +0 -3
  870. package/schematics/generators/contextmenu-default/schema.js +0 -2
  871. package/schematics/generators/contextmenu-default/schema.json +0 -125
  872. package/schematics/generators/menu-default/index.d.ts +0 -3
  873. package/schematics/generators/menu-default/index.js +0 -8
  874. package/schematics/generators/menu-default/sample-details.d.ts +0 -5
  875. package/schematics/generators/menu-default/sample-details.js +0 -7
  876. package/schematics/generators/menu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -52
  877. package/schematics/generators/menu-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -5
  878. package/schematics/generators/menu-default/schema.d.ts +0 -3
  879. package/schematics/generators/menu-default/schema.js +0 -2
  880. package/schematics/generators/menu-default/schema.json +0 -125
  881. package/schematics/generators/sidebar-backdrop/index.d.ts +0 -3
  882. package/schematics/generators/sidebar-backdrop/index.js +0 -8
  883. package/schematics/generators/sidebar-backdrop/sample-details.d.ts +0 -5
  884. package/schematics/generators/sidebar-backdrop/sample-details.js +0 -7
  885. package/schematics/generators/sidebar-backdrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -74
  886. package/schematics/generators/sidebar-backdrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -17
  887. package/schematics/generators/sidebar-backdrop/schema.d.ts +0 -3
  888. package/schematics/generators/sidebar-backdrop/schema.js +0 -2
  889. package/schematics/generators/sidebar-backdrop/schema.json +0 -125
  890. package/schematics/generators/sidebar-dock/index.d.ts +0 -3
  891. package/schematics/generators/sidebar-dock/index.js +0 -8
  892. package/schematics/generators/sidebar-dock/sample-details.d.ts +0 -5
  893. package/schematics/generators/sidebar-dock/sample-details.js +0 -7
  894. package/schematics/generators/sidebar-dock/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -170
  895. package/schematics/generators/sidebar-dock/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -41
  896. package/schematics/generators/sidebar-dock/schema.d.ts +0 -3
  897. package/schematics/generators/sidebar-dock/schema.js +0 -2
  898. package/schematics/generators/sidebar-dock/schema.json +0 -125
  899. package/schematics/generators/sidebar-target/index.d.ts +0 -3
  900. package/schematics/generators/sidebar-target/index.js +0 -8
  901. package/schematics/generators/sidebar-target/sample-details.d.ts +0 -5
  902. package/schematics/generators/sidebar-target/sample-details.js +0 -7
  903. package/schematics/generators/sidebar-target/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -91
  904. package/schematics/generators/sidebar-target/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
  905. package/schematics/generators/sidebar-target/schema.d.ts +0 -3
  906. package/schematics/generators/sidebar-target/schema.js +0 -2
  907. package/schematics/generators/sidebar-target/schema.json +0 -125
  908. package/schematics/generators/sidebar-types/index.d.ts +0 -3
  909. package/schematics/generators/sidebar-types/index.js +0 -8
  910. package/schematics/generators/sidebar-types/sample-details.d.ts +0 -5
  911. package/schematics/generators/sidebar-types/sample-details.js +0 -7
  912. package/schematics/generators/sidebar-types/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -134
  913. package/schematics/generators/sidebar-types/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -37
  914. package/schematics/generators/sidebar-types/schema.d.ts +0 -3
  915. package/schematics/generators/sidebar-types/schema.js +0 -2
  916. package/schematics/generators/sidebar-types/schema.json +0 -125
  917. package/schematics/generators/tab-html-template/index.d.ts +0 -3
  918. package/schematics/generators/tab-html-template/index.js +0 -8
  919. package/schematics/generators/tab-html-template/sample-details.d.ts +0 -5
  920. package/schematics/generators/tab-html-template/sample-details.js +0 -7
  921. package/schematics/generators/tab-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  922. package/schematics/generators/tab-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -42
  923. package/schematics/generators/tab-html-template/schema.d.ts +0 -3
  924. package/schematics/generators/tab-html-template/schema.js +0 -2
  925. package/schematics/generators/tab-html-template/schema.json +0 -125
  926. package/schematics/generators/tab-icon/index.d.ts +0 -3
  927. package/schematics/generators/tab-icon/index.js +0 -8
  928. package/schematics/generators/tab-icon/sample-details.d.ts +0 -5
  929. package/schematics/generators/tab-icon/sample-details.js +0 -7
  930. package/schematics/generators/tab-icon/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -37
  931. package/schematics/generators/tab-icon/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -45
  932. package/schematics/generators/tab-icon/schema.d.ts +0 -3
  933. package/schematics/generators/tab-icon/schema.js +0 -2
  934. package/schematics/generators/tab-icon/schema.json +0 -125
  935. package/schematics/generators/tab-nested/index.d.ts +0 -3
  936. package/schematics/generators/tab-nested/index.js +0 -8
  937. package/schematics/generators/tab-nested/sample-details.d.ts +0 -5
  938. package/schematics/generators/tab-nested/sample-details.js +0 -7
  939. package/schematics/generators/tab-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  940. package/schematics/generators/tab-nested/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -71
  941. package/schematics/generators/tab-nested/schema.d.ts +0 -3
  942. package/schematics/generators/tab-nested/schema.js +0 -2
  943. package/schematics/generators/tab-nested/schema.json +0 -125
  944. package/schematics/generators/tab-popup/index.d.ts +0 -3
  945. package/schematics/generators/tab-popup/index.js +0 -8
  946. package/schematics/generators/tab-popup/sample-details.d.ts +0 -5
  947. package/schematics/generators/tab-popup/sample-details.js +0 -7
  948. package/schematics/generators/tab-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  949. package/schematics/generators/tab-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -118
  950. package/schematics/generators/tab-popup/schema.d.ts +0 -3
  951. package/schematics/generators/tab-popup/schema.js +0 -2
  952. package/schematics/generators/tab-popup/schema.json +0 -125
  953. package/schematics/generators/tab-scrollable/index.d.ts +0 -3
  954. package/schematics/generators/tab-scrollable/index.js +0 -8
  955. package/schematics/generators/tab-scrollable/sample-details.d.ts +0 -5
  956. package/schematics/generators/tab-scrollable/sample-details.js +0 -7
  957. package/schematics/generators/tab-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  958. package/schematics/generators/tab-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -118
  959. package/schematics/generators/tab-scrollable/schema.d.ts +0 -3
  960. package/schematics/generators/tab-scrollable/schema.js +0 -2
  961. package/schematics/generators/tab-scrollable/schema.json +0 -125
  962. package/schematics/generators/tab-vertical/index.d.ts +0 -3
  963. package/schematics/generators/tab-vertical/index.js +0 -8
  964. package/schematics/generators/tab-vertical/sample-details.d.ts +0 -5
  965. package/schematics/generators/tab-vertical/sample-details.js +0 -7
  966. package/schematics/generators/tab-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  967. package/schematics/generators/tab-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -118
  968. package/schematics/generators/tab-vertical/schema.d.ts +0 -3
  969. package/schematics/generators/tab-vertical/schema.js +0 -2
  970. package/schematics/generators/tab-vertical/schema.json +0 -125
  971. package/schematics/generators/toolbar-alignment/index.d.ts +0 -3
  972. package/schematics/generators/toolbar-alignment/index.js +0 -8
  973. package/schematics/generators/toolbar-alignment/sample-details.d.ts +0 -5
  974. package/schematics/generators/toolbar-alignment/sample-details.js +0 -7
  975. package/schematics/generators/toolbar-alignment/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -97
  976. package/schematics/generators/toolbar-alignment/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -48
  977. package/schematics/generators/toolbar-alignment/schema.d.ts +0 -3
  978. package/schematics/generators/toolbar-alignment/schema.js +0 -2
  979. package/schematics/generators/toolbar-alignment/schema.json +0 -125
  980. package/schematics/generators/toolbar-extended/index.d.ts +0 -3
  981. package/schematics/generators/toolbar-extended/index.js +0 -8
  982. package/schematics/generators/toolbar-extended/sample-details.d.ts +0 -5
  983. package/schematics/generators/toolbar-extended/sample-details.js +0 -7
  984. package/schematics/generators/toolbar-extended/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
  985. package/schematics/generators/toolbar-extended/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
  986. package/schematics/generators/toolbar-extended/schema.d.ts +0 -3
  987. package/schematics/generators/toolbar-extended/schema.js +0 -2
  988. package/schematics/generators/toolbar-extended/schema.json +0 -125
  989. package/schematics/generators/toolbar-html-template/index.d.ts +0 -3
  990. package/schematics/generators/toolbar-html-template/index.js +0 -8
  991. package/schematics/generators/toolbar-html-template/sample-details.d.ts +0 -5
  992. package/schematics/generators/toolbar-html-template/sample-details.js +0 -7
  993. package/schematics/generators/toolbar-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  994. package/schematics/generators/toolbar-html-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -16
  995. package/schematics/generators/toolbar-html-template/schema.d.ts +0 -3
  996. package/schematics/generators/toolbar-html-template/schema.js +0 -2
  997. package/schematics/generators/toolbar-html-template/schema.json +0 -125
  998. package/schematics/generators/toolbar-multi-row/index.d.ts +0 -3
  999. package/schematics/generators/toolbar-multi-row/index.js +0 -8
  1000. package/schematics/generators/toolbar-multi-row/sample-details.d.ts +0 -5
  1001. package/schematics/generators/toolbar-multi-row/sample-details.js +0 -7
  1002. package/schematics/generators/toolbar-multi-row/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
  1003. package/schematics/generators/toolbar-multi-row/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
  1004. package/schematics/generators/toolbar-multi-row/schema.d.ts +0 -3
  1005. package/schematics/generators/toolbar-multi-row/schema.js +0 -2
  1006. package/schematics/generators/toolbar-multi-row/schema.json +0 -125
  1007. package/schematics/generators/toolbar-popup/index.d.ts +0 -3
  1008. package/schematics/generators/toolbar-popup/index.js +0 -8
  1009. package/schematics/generators/toolbar-popup/sample-details.d.ts +0 -5
  1010. package/schematics/generators/toolbar-popup/sample-details.js +0 -7
  1011. package/schematics/generators/toolbar-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
  1012. package/schematics/generators/toolbar-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
  1013. package/schematics/generators/toolbar-popup/schema.d.ts +0 -3
  1014. package/schematics/generators/toolbar-popup/schema.js +0 -2
  1015. package/schematics/generators/toolbar-popup/schema.json +0 -125
  1016. package/schematics/generators/toolbar-scrollable/index.d.ts +0 -3
  1017. package/schematics/generators/toolbar-scrollable/index.js +0 -8
  1018. package/schematics/generators/toolbar-scrollable/sample-details.d.ts +0 -5
  1019. package/schematics/generators/toolbar-scrollable/sample-details.js +0 -7
  1020. package/schematics/generators/toolbar-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -125
  1021. package/schematics/generators/toolbar-scrollable/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -33
  1022. package/schematics/generators/toolbar-scrollable/schema.d.ts +0 -3
  1023. package/schematics/generators/toolbar-scrollable/schema.js +0 -2
  1024. package/schematics/generators/toolbar-scrollable/schema.json +0 -125
  1025. package/schematics/generators/treeview-checkbox/index.d.ts +0 -3
  1026. package/schematics/generators/treeview-checkbox/index.js +0 -8
  1027. package/schematics/generators/treeview-checkbox/sample-details.d.ts +0 -5
  1028. package/schematics/generators/treeview-checkbox/sample-details.js +0 -7
  1029. package/schematics/generators/treeview-checkbox/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  1030. package/schematics/generators/treeview-checkbox/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  1031. package/schematics/generators/treeview-checkbox/schema.d.ts +0 -3
  1032. package/schematics/generators/treeview-checkbox/schema.js +0 -2
  1033. package/schematics/generators/treeview-checkbox/schema.json +0 -125
  1034. package/schematics/generators/treeview-default/index.d.ts +0 -3
  1035. package/schematics/generators/treeview-default/index.js +0 -8
  1036. package/schematics/generators/treeview-default/sample-details.d.ts +0 -5
  1037. package/schematics/generators/treeview-default/sample-details.js +0 -7
  1038. package/schematics/generators/treeview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  1039. package/schematics/generators/treeview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  1040. package/schematics/generators/treeview-default/schema.d.ts +0 -3
  1041. package/schematics/generators/treeview-default/schema.js +0 -2
  1042. package/schematics/generators/treeview-default/schema.json +0 -125
  1043. package/schematics/generators/treeview-draganddrop/index.d.ts +0 -3
  1044. package/schematics/generators/treeview-draganddrop/index.js +0 -8
  1045. package/schematics/generators/treeview-draganddrop/sample-details.d.ts +0 -5
  1046. package/schematics/generators/treeview-draganddrop/sample-details.js +0 -7
  1047. package/schematics/generators/treeview-draganddrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  1048. package/schematics/generators/treeview-draganddrop/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  1049. package/schematics/generators/treeview-draganddrop/schema.d.ts +0 -3
  1050. package/schematics/generators/treeview-draganddrop/schema.js +0 -2
  1051. package/schematics/generators/treeview-draganddrop/schema.json +0 -125
  1052. package/schematics/generators/treeview-multiselection/index.d.ts +0 -3
  1053. package/schematics/generators/treeview-multiselection/index.js +0 -8
  1054. package/schematics/generators/treeview-multiselection/sample-details.d.ts +0 -5
  1055. package/schematics/generators/treeview-multiselection/sample-details.js +0 -7
  1056. package/schematics/generators/treeview-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  1057. package/schematics/generators/treeview-multiselection/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  1058. package/schematics/generators/treeview-multiselection/schema.d.ts +0 -3
  1059. package/schematics/generators/treeview-multiselection/schema.js +0 -2
  1060. package/schematics/generators/treeview-multiselection/schema.json +0 -125
  1061. package/schematics/generators/treeview-nodeediting/index.d.ts +0 -3
  1062. package/schematics/generators/treeview-nodeediting/index.js +0 -8
  1063. package/schematics/generators/treeview-nodeediting/sample-details.d.ts +0 -5
  1064. package/schematics/generators/treeview-nodeediting/sample-details.js +0 -7
  1065. package/schematics/generators/treeview-nodeediting/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  1066. package/schematics/generators/treeview-nodeediting/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  1067. package/schematics/generators/treeview-nodeediting/schema.d.ts +0 -3
  1068. package/schematics/generators/treeview-nodeediting/schema.js +0 -2
  1069. package/schematics/generators/treeview-nodeediting/schema.json +0 -125
  1070. package/schematics/generators/treeview-remotedata/index.d.ts +0 -3
  1071. package/schematics/generators/treeview-remotedata/index.js +0 -8
  1072. package/schematics/generators/treeview-remotedata/sample-details.d.ts +0 -5
  1073. package/schematics/generators/treeview-remotedata/sample-details.js +0 -7
  1074. package/schematics/generators/treeview-remotedata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -12
  1075. package/schematics/generators/treeview-remotedata/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -8
  1076. package/schematics/generators/treeview-remotedata/schema.d.ts +0 -3
  1077. package/schematics/generators/treeview-remotedata/schema.js +0 -2
  1078. package/schematics/generators/treeview-remotedata/schema.json +0 -125
  1079. package/schematics/generators/treeview-treetemplate/index.d.ts +0 -3
  1080. package/schematics/generators/treeview-treetemplate/index.js +0 -8
  1081. package/schematics/generators/treeview-treetemplate/sample-details.d.ts +0 -5
  1082. package/schematics/generators/treeview-treetemplate/sample-details.js +0 -7
  1083. package/schematics/generators/treeview-treetemplate/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  1084. package/schematics/generators/treeview-treetemplate/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -21
  1085. package/schematics/generators/treeview-treetemplate/schema.d.ts +0 -3
  1086. package/schematics/generators/treeview-treetemplate/schema.js +0 -2
  1087. package/schematics/generators/treeview-treetemplate/schema.json +0 -125
  1088. package/schematics/ng-add/index.d.ts +0 -3
  1089. package/schematics/ng-add/index.js +0 -9
  1090. package/schematics/ng-add/schema.d.ts +0 -13
  1091. package/schematics/ng-add/schema.js +0 -2
  1092. package/schematics/ng-add/schema.json +0 -34
  1093. package/schematics/tsconfig.json +0 -25
  1094. package/schematics/utils/lib-details.d.ts +0 -4
  1095. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,4113 @@
1
+ @include export-module('tab-layout') {
2
+
3
+ /*! tab layout */
4
+
5
+ .e-bigger .e-tab,
6
+ .e-tab.e-bigger {
7
+
8
+ .e-tab-header {
9
+ height: $tab-big-height;
10
+ min-height: $tab-big-height;
11
+
12
+ .e-toolbar-items {
13
+ height: auto;
14
+ min-height: auto;
15
+
16
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' or $tbar-skin == 'FluentUI' {
17
+ height: $tab-big-height;
18
+ min-height: $tab-big-height;
19
+ }
20
+
21
+ &:not(.e-tbar-pos) .e-toolbar-item:first-child,
22
+ &:not(.e-tbar-pos) .e-toolbar-item:last-child {
23
+ margin: $tab-big-first-item-margin;
24
+
25
+ @media screen and (max-width: 480px) {
26
+ margin: $tab-nrml-first-item-margin;
27
+ }
28
+ }
29
+
30
+ &:not(.e-tbar-pos) .e-toolbar-item:last-child {
31
+ padding-bottom: $tab-big-boot-active-item-padding-bottom;
32
+
33
+ @media screen and (max-width: 480px) {
34
+ margin: $tab-mob-last-item-margin;
35
+ }
36
+ }
37
+
38
+ .e-indicator + .e-toolbar-item:last-child.e-active {
39
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
40
+ margin: 1px 2px 0 0;
41
+ }
42
+ }
43
+ }
44
+
45
+ .e-toolbar-items.e-hscroll {
46
+
47
+ &:not(.e-tbar-pos) .e-toolbar-item:last-child {
48
+ margin: $tab-big-scroll-last-item-margin;
49
+
50
+ @media screen and (max-width: 480px) {
51
+ margin: $tab-mob-last-item-margin;
52
+ }
53
+
54
+ &.e-active {
55
+ margin: $tab-big-active-last-item-margin;
56
+ }
57
+ }
58
+
59
+ .e-scroll-nav {
60
+ width: 50px;
61
+ @if $tab-skin == 'FluentUI' {
62
+ width: 38px;
63
+ }
64
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
65
+ border-radius: 4px;
66
+ width: 38px;
67
+ }
68
+ }
69
+ }
70
+
71
+ .e-toolbar-item {
72
+
73
+ &:not(.e-separator) {
74
+ height: $tab-big-height;
75
+ margin: $tab-big-item-margin;
76
+ min-height: $tab-big-height;
77
+ min-width: auto;
78
+ padding: $tab-big-item-padding;
79
+
80
+ @media screen and (max-width: 480px) {
81
+ margin: $tab-nrml-item-margin;
82
+ }
83
+ }
84
+
85
+ &:not(.e-separator).e-itop,
86
+ &:not(.e-separator).e-ibottom {
87
+ height: $tab-big-icon-top-bottom-item-height;
88
+ min-height: $tab-big-icon-top-bottom-item-height;
89
+ }
90
+
91
+ .e-tab-wrap {
92
+ height: $tab-big-height;
93
+ padding: $tab-big-wrap-padding;
94
+
95
+ @media screen and (max-width: 480px) {
96
+ padding: $tab-mob-wrap-padding;
97
+ }
98
+ }
99
+
100
+ .e-text-wrap {
101
+ height: $tab-big-height;
102
+
103
+ @if $tab-skin == 'fabric' {
104
+ height: $tab-big-height - 2;
105
+ }
106
+ @else if $tab-skin == 'highcontrast' {
107
+ height: $tab-big-height - 4;
108
+ }
109
+ }
110
+
111
+ .e-tab-text {
112
+ font-size: $tab-big-font-size;
113
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
114
+ align-self: auto;
115
+ }
116
+ }
117
+
118
+ &.e-active {
119
+ margin: $tab-big-boot-item-margin;
120
+ padding-bottom: $tab-big-boot-active-item-padding-bottom;
121
+
122
+ @media screen and (max-width: 480px) {
123
+ margin: $tab-mob-boot-item-margin;
124
+ }
125
+
126
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
127
+ &.e-ileft:not(.e-icon) .e-tab-icon::before {
128
+ position: relative;
129
+ top: -.5px;
130
+ }
131
+ }
132
+
133
+ .e-text-wrap {
134
+ height: $tab-big-active-text-container-height;
135
+ margin-top: $tab-active-text-container-margin;
136
+
137
+ @if $tab-skin == 'fabric' {
138
+ height: $tab-big-height - 2;
139
+ }
140
+ @else if $tab-skin == 'highcontrast' {
141
+ height: $tab-big-height - 4;
142
+ }
143
+ }
144
+
145
+ &.e-ileft .e-text-wrap,
146
+ &.e-iright .e-text-wrap {
147
+ height: $tab-big-active-it-text-container-height;
148
+
149
+ @if $tab-skin == 'fabric' {
150
+ height: $tab-big-height - 2;
151
+ }
152
+ @else if $tab-skin == 'highcontrast' {
153
+ height: $tab-big-height - 4;
154
+ }
155
+ }
156
+
157
+ &.e-ileft .e-text-wrap {
158
+ padding: $tab-big-ileft-active-text-wrap-padding;
159
+
160
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
161
+ padding: 0;
162
+ }
163
+ }
164
+ }
165
+
166
+ .e-icons.e-close-icon {
167
+ cursor: pointer;
168
+ margin: $tab-big-close-icon-margin;
169
+
170
+ @media screen and (max-width: 480px) {
171
+ margin: $tab-mob-close-icon-margin;
172
+ }
173
+ }
174
+
175
+ .e-icons.e-close-icon,
176
+ .e-close-icon::before {
177
+ font-size: $tab-big-close-icon-size;
178
+
179
+ @media screen and (max-width: 480px) {
180
+ font-size: $tab-mob-close-icon-size;
181
+ }
182
+ }
183
+
184
+ .e-icons.e-tab-icon {
185
+ height: $tab-big-icon-container-size;
186
+ min-width: $tab-big-icon-container-size;
187
+ width: $tab-big-icon-container-size;
188
+
189
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
190
+ line-height: $tab-big-icon-container-size;
191
+ }
192
+ }
193
+
194
+ .e-tab-icon,
195
+ .e-tab-icon::before {
196
+ font-size: $tab-big-icon-size;
197
+ }
198
+
199
+ &.e-icon {
200
+
201
+ .e-tab-wrap {
202
+ padding: $tab-big-io-wrap-padding;
203
+ }
204
+ }
205
+
206
+ @if $tab-skin == 'FluentUI' {
207
+ .e-icon-right {
208
+ margin: $tab-big-it-text-margin;
209
+
210
+ @media screen and (max-width: 480px) {
211
+ margin: $tab-mob-it-text-margin;
212
+ }
213
+ }
214
+ }
215
+
216
+ .e-icon-left + .e-tab-text {
217
+ margin: $tab-big-it-text-margin;
218
+
219
+ @media screen and (max-width: 480px) {
220
+ margin: $tab-mob-it-text-margin;
221
+ }
222
+ }
223
+
224
+ &.e-itop,
225
+ &.e-ibottom {
226
+ height: $tab-big-icon-top-bottom-item-height;
227
+
228
+ .e-tab-wrap {
229
+ height: $tab-big-icon-top-bottom-item-height;
230
+
231
+ &:focus .e-text-wrap {
232
+ height: auto;
233
+ }
234
+ }
235
+
236
+ &.e-active .e-tab-wrap {
237
+ height: $tab-big-icon-top-bottom-item-height;
238
+
239
+ &:focus .e-text-wrap {
240
+ height: auto;
241
+ }
242
+ }
243
+
244
+ .e-close-icon {
245
+ right: $tab-big-close-icon-top-bottom-right;
246
+ }
247
+
248
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
249
+
250
+ .e-text-wrap {
251
+ height: auto;
252
+ }
253
+
254
+ &.e-active .e-tab-wrap {
255
+ height: 72px;
256
+ }
257
+ }
258
+ }
259
+
260
+ &.e-itop .e-tab-text {
261
+ margin: $tab-big-icon-top-margin;
262
+ }
263
+
264
+ &.e-ibottom .e-tab-text {
265
+ margin: $tab-big-icon-bottom-margin;
266
+ }
267
+ }
268
+
269
+ &.e-close-show {
270
+
271
+ .e-toolbar-item.e-itop .e-text-wrap,
272
+ .e-toolbar-item.e-ibottom .e-text-wrap {
273
+ margin-right: $tab-big-text-container-margin-right;
274
+ }
275
+ }
276
+
277
+ .e-toolbar-pop {
278
+
279
+ .e-toolbar-item {
280
+ height: $tab-big-pop-item-height;
281
+ min-height: $tab-big-pop-item-height;
282
+
283
+ .e-tab-wrap {
284
+ height: $tab-big-pop-item-height;
285
+ padding: $tab-big-pop-item-wrap-padding;
286
+
287
+ @media screen and (max-width: 480px) {
288
+ padding: $tab-mob-pop-item-wrap-padding;
289
+ }
290
+ }
291
+
292
+ .e-text-wrap {
293
+ height: $tab-big-pop-item-height;
294
+
295
+ @if $tab-skin == 'fabric' {
296
+ height: $tab-big-pop-item-height - 2;
297
+ }
298
+ @else if $tab-skin == 'highcontrast' {
299
+ height: $tab-big-pop-item-height - 4;
300
+ }
301
+ }
302
+
303
+ .e-tab-text + .e-close-icon[style = 'display:block'] {
304
+ padding-right: $tab-big-pop-text-padding-right;
305
+
306
+ @media screen and (max-width: 480px) {
307
+ padding-right: 0;
308
+ }
309
+ }
310
+
311
+ .e-close-icon {
312
+ margin: 0;
313
+ }
314
+
315
+ .e-close-icon::before {
316
+ top: $tab-big-pop-close-top;
317
+ }
318
+
319
+ &.e-itop,
320
+ &.e-ibottom {
321
+
322
+ .e-close-icon {
323
+ right: $tab-big-pop-close-icon-top-bottom-right;
324
+ }
325
+ }
326
+
327
+ &.e-itop:not(.e-separator),
328
+ &.e-ibottom:not(.e-separator) {
329
+ min-height: $tab-pop-big-icon-top-bottom-item-height;
330
+
331
+ @media screen and (max-width: 480px) {
332
+ min-height: $tab-pop-big-icon-top-bottom-item-height;
333
+ }
334
+ }
335
+
336
+ &.e-itop,
337
+ &.e-itop .e-tab-wrap,
338
+ &.e-ibottom,
339
+ &.e-ibottom .e-tab-wrap {
340
+ height: $tab-pop-big-icon-top-bottom-item-height;
341
+
342
+ @media screen and (max-width: 480px) {
343
+ height: $tab-pop-big-icon-top-bottom-item-height;
344
+ }
345
+ }
346
+
347
+ &.e-itop .e-tab-text,
348
+ &.e-ibottom .e-tab-text {
349
+ margin: 0;
350
+ padding-left: 0;
351
+ padding-right: 12px;
352
+
353
+ @media screen and (max-width: 480px) {
354
+ margin: 0;
355
+ padding-left: 0;
356
+ padding-right: 0;
357
+ }
358
+ }
359
+ }
360
+ }
361
+
362
+ .e-scroll-nav {
363
+ height: $tab-big-height;
364
+ min-height: $tab-big-height;
365
+ padding: $tab-big-nav-right-icon-padding;
366
+
367
+ @media screen and (max-width: 480px) {
368
+ padding: $tab-mob-nav-right-icon-padding;
369
+ }
370
+
371
+ &.e-scroll-right-nav {
372
+ padding: $tab-big-nav-right-icon-padding;
373
+ }
374
+
375
+ &.e-scroll-left-nav {
376
+ padding: $tab-big-nav-left-icon-padding;
377
+ }
378
+
379
+ .e-nav-arrow {
380
+ font-size: $tab-big-nav-icon-size;
381
+ height: $tab-big-nav-icon-container-size;
382
+ line-height: $tab-big-nav-icon-container-size;
383
+ width: $tab-big-nav-icon-container-size;
384
+
385
+ @media screen and (max-width: 480px) {
386
+ font-size: $tab-big-nav-icon-size;
387
+ height: $tab-big-nav-icon-container-size;
388
+ line-height: $tab-big-nav-icon-container-size;
389
+ width: $tab-big-nav-icon-container-size;
390
+ }
391
+ }
392
+
393
+ .e-nav-left-arrow,
394
+ .e-nav-right-arrow {
395
+
396
+ &::before {
397
+ font-size: $tab-big-nav-icon-size;
398
+ line-height: $tab-big-nav-icon-container-size;
399
+ top: 0;
400
+ vertical-align: initial;
401
+
402
+ @if $tab-skin == 'highcontrast' {
403
+ top: -2px;
404
+ }
405
+ }
406
+ }
407
+ }
408
+
409
+ .e-hor-nav {
410
+ height: $tab-big-height;
411
+ min-height: $tab-big-height;
412
+ padding: $tab-big-nav-right-icon-padding;
413
+
414
+ @media screen and (max-width: 480px) {
415
+ padding: $tab-mob-nav-right-icon-padding;
416
+ }
417
+
418
+ .e-popup-up-icon,
419
+ .e-popup-down-icon {
420
+ font-size: $tab-big-nav-icon-size;
421
+ height: $tab-big-nav-icon-container-size;
422
+ line-height: $tab-big-nav-icon-container-size;
423
+ width: $tab-big-nav-icon-container-size;
424
+
425
+ @media screen and (max-width: 480px) {
426
+ font-size: $tab-big-nav-icon-size;
427
+ height: $tab-big-nav-icon-container-size;
428
+ line-height: $tab-big-nav-icon-container-size;
429
+ width: $tab-big-nav-icon-container-size;
430
+ }
431
+
432
+ &::before {
433
+ font-size: $tab-big-nav-icon-size;
434
+ line-height: $tab-big-nav-icon-container-size;
435
+ top: 0;
436
+ vertical-align: initial;
437
+
438
+ @media screen and (max-width: 480px) {
439
+ font-size: $tab-mob-nav-icon-size;
440
+ }
441
+
442
+ @if $tab-skin == 'highcontrast' {
443
+ top: -2px;
444
+ }
445
+ }
446
+
447
+ &:hover {
448
+ @if $tab-skin == 'bootstrap' {
449
+ line-height: 42px;
450
+ }
451
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
452
+ line-height: 38px;
453
+ }
454
+
455
+ &::before {
456
+ top: $tab-big-hover-nav-pop-icon-top;
457
+
458
+ @if $tab-skin == 'bootstrap' {
459
+ line-height: 42px;
460
+ top: .5px;
461
+ }
462
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
463
+ line-height: 38px;
464
+ top: .5px;
465
+ }
466
+
467
+ @if $tab-skin == 'highcontrast' {
468
+ top: -2px;
469
+ }
470
+ }
471
+ }
472
+ }
473
+
474
+ &:focus {
475
+
476
+ .e-popup-up-icon,
477
+ .e-popup-down-icon {
478
+ @if $tab-skin == 'bootstrap' {
479
+ line-height: 42px;
480
+ }
481
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
482
+ line-height: 38px;
483
+ }
484
+
485
+ &::before {
486
+ top: $tab-big-hover-nav-pop-icon-top;
487
+
488
+ @if $tab-skin == 'bootstrap' {
489
+ line-height: 42px;
490
+ }
491
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
492
+ line-height: 38px;
493
+ }
494
+
495
+ @if $tab-skin == 'highcontrast' {
496
+ top: -2px;
497
+ }
498
+ }
499
+
500
+ &:hover {
501
+ @if $tab-skin == 'bootstrap' {
502
+ line-height: 42px;
503
+ top: -2px;
504
+ }
505
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
506
+ line-height: 38px;
507
+ top: -2px;
508
+ }
509
+ }
510
+ }
511
+ }
512
+ }
513
+
514
+ .e-hor-nav.e-ie-align,
515
+ .e-scroll-nav.e-ie-align {
516
+
517
+ .e-popup-up-icon,
518
+ .e-popup-down-icon {
519
+ line-height: $tab-big-ie-pop-icon-line-height;
520
+ }
521
+
522
+ .e-nav-left-arrow,
523
+ .e-nav-right-arrow {
524
+ line-height: $tab-big-ie-nav-icon-line-height;
525
+ }
526
+ }
527
+
528
+ &.e-horizontal-bottom {
529
+
530
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child.e-active {
531
+ margin: $tab-big-even-last-item-margin;
532
+ }
533
+
534
+ .e-toolbar-item {
535
+
536
+ &.e-active {
537
+ margin: $tab-big-even-boot-item-margin;
538
+ padding-bottom: 0;
539
+
540
+ @media screen and (max-width: 480px) {
541
+ margin: $tab-mob-even-boot-item-margin;
542
+ }
543
+
544
+ .e-tab-text {
545
+ padding-top: $tab-big-even-boot-active-item-padding-bottom;
546
+ }
547
+
548
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
549
+ .e-close-icon::before {
550
+ top: .5px;
551
+ }
552
+
553
+ &.e-itop .e-text-wrap,
554
+ &.e-ibottom .e-text-wrap {
555
+ height: initial;
556
+ }
557
+
558
+ &.e-itop .e-close-icon::before,
559
+ &.e-ibottom .e-close-icon::before {
560
+ top: 1.5px;
561
+ }
562
+ }
563
+ }
564
+
565
+ &.e-active:last-child {
566
+ margin: $tab-big-even-last-item-margin;
567
+ padding-bottom: 0;
568
+
569
+ @media screen and (max-width: 480px) {
570
+ margin: $tab-mob-even-last-item-margin;
571
+ }
572
+
573
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4'or $tbar-skin == 'bootstrap5' {
574
+
575
+ .e-tab-text {
576
+ padding-top: .5px;
577
+ }
578
+
579
+ .e-close-icon::before {
580
+ top: 0;
581
+ }
582
+ }
583
+ }
584
+
585
+ &.e-itop,
586
+ &.e-ibottom {
587
+ padding-bottom: 0;
588
+ padding-top: 0;
589
+ }
590
+
591
+ &.e-itop.e-active .e-tab-wrap:focus,
592
+ &.e-ibottom.e-active .e-tab-wrap:focus {
593
+
594
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
595
+
596
+ .e-icon-close::before {
597
+ top: -1px;
598
+ }
599
+ }
600
+ }
601
+
602
+ &.e-ileft.e-active .e-text-wrap {
603
+ margin: $tab-big-even-ileft-active-text-wrap-margin;
604
+ }
605
+
606
+ &.e-active .e-text-wrap {
607
+ height: $tab-big-even-active-text-container-height;
608
+ padding: 0;
609
+
610
+ @if $tab-skin == 'fabric' {
611
+ height: $tab-big-height - 2;
612
+ }
613
+ @else if $tab-skin == 'highcontrast' {
614
+ height: $tab-big-height - 4;
615
+ }
616
+ }
617
+
618
+ &.e-active.e-itop .e-text-wrap,
619
+ &.e-active.e-ibottom .e-text-wrap {
620
+ height: $tab-big-height;
621
+
622
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
623
+ height: auto;
624
+ }
625
+ }
626
+
627
+ &.e-itop.e-active .e-text-wrap,
628
+ &.e-ibottom.e-active .e-text-wrap {
629
+ height: initial;
630
+ }
631
+
632
+ &.e-ileft.e-active {
633
+
634
+ @if $tab-skin == 'fabric' {
635
+ height: $tab-big-height - 2;
636
+ }
637
+ @else if $tab-skin == 'highcontrast' {
638
+ height: $tab-big-height - 4;
639
+ }
640
+ }
641
+ }
642
+ }
643
+
644
+ &.e-vertical {
645
+ max-width: 150px;
646
+
647
+ &[style *= 'overflow: hidden']::before {
648
+ bottom: $tab-big-vertical-scroll-nav-top-bottom;
649
+ top: $tab-big-vertical-scroll-nav-top-bottom;
650
+
651
+ @media screen and (max-width: 480px) {
652
+ bottom: 0;
653
+ top: 0;
654
+ }
655
+ }
656
+
657
+ .e-toolbar-items {
658
+ height: inherit;
659
+
660
+ &:not(.e-tbar-pos) {
661
+
662
+ .e-toolbar-item:last-child {
663
+ margin: 0;
664
+ }
665
+ }
666
+ }
667
+
668
+ .e-toolbar-items.e-vscroll:not(.e-scroll-device) {
669
+ padding: $tab-vscroll-big-padding;
670
+ }
671
+
672
+ .e-toolbar-item {
673
+
674
+ .e-tab-wrap {
675
+ padding: $tab-big-v-wrap-padding;
676
+ }
677
+
678
+ &.e-itop,
679
+ &.e-ibottom {
680
+
681
+ .e-close-icon {
682
+ right: $tab-v-big-close-icon-top-bottom-right;
683
+ }
684
+ }
685
+
686
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
687
+
688
+ &.e-ileft.e-icon {
689
+ min-height: $tab-big-height;
690
+ min-width: $tab-big-height;
691
+ }
692
+ }
693
+ }
694
+
695
+ .e-scroll-nav {
696
+ height: $tab-big-vertical-nav-arrow-size;
697
+ min-height: $tab-big-vertical-nav-arrow-size;
698
+
699
+ .e-nav-arrow {
700
+ font-size: $tab-big-vertical-nav-arrow-font-size;
701
+ height: $tab-big-vertical-nav-arrow-size;
702
+ line-height: $tab-big-vertical-nav-arrow-size;
703
+ width: $tab-big-vertical-nav-arrow-size;
704
+ }
705
+ }
706
+
707
+ .e-hor-nav {
708
+ padding: $tab-big-wrap-padding;
709
+
710
+ .e-popup-up-icon,
711
+ .e-popup-down-icon {
712
+
713
+ &::before {
714
+ line-height: $tab-big-more-btn-line-height;
715
+ }
716
+
717
+ &::after {
718
+ font-size: $tab-big-font-size;
719
+ line-height: $tab-big-more-btn-line-height;
720
+ margin: $tab-pop-more-icon-margin;
721
+ }
722
+ }
723
+ }
724
+
725
+ &.e-toolpop {
726
+
727
+ .e-toolbar-items {
728
+ height: auto;
729
+ }
730
+ }
731
+ }
732
+ }
733
+
734
+ &.e-vertical-icon {
735
+
736
+ .e-tab-header {
737
+ height: $tab-big-tb-icon-height;
738
+ min-height: $tab-big-tb-icon-height;
739
+
740
+ .e-toolbar-items {
741
+ height: $tab-big-tb-icon-height;
742
+ }
743
+
744
+ .e-toolbar-item.e-active,
745
+ .e-toolbar-item:not(.e-separator):last-child.e-active {
746
+
747
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
748
+
749
+ .e-text-wrap::before {
750
+ bottom: -10px;
751
+ top: auto;
752
+ }
753
+ }
754
+ }
755
+
756
+ .e-scroll-nav {
757
+ height: $tab-big-icon-top-bottom-item-height;
758
+ }
759
+
760
+ .e-hor-nav {
761
+ height: $tab-big-icon-top-bottom-item-height;
762
+
763
+ .e-popup-up-icon::before,
764
+ .e-popup-down-icon::before {
765
+
766
+ @media screen and (max-width: 480px) {
767
+ font-size: $tab-mob-nav-vicon-size;
768
+ }
769
+ }
770
+ }
771
+ }
772
+
773
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
774
+ &.e-rtl .e-toolbar-item.e-active {
775
+ margin: 0 0 0 2px;
776
+ }
777
+ }
778
+
779
+ &.e-vertical-tab {
780
+
781
+ .e-tab-header.e-vertical {
782
+
783
+ .e-toolbar-items {
784
+ height: inherit;
785
+ }
786
+
787
+ .e-scroll-nav {
788
+ height: $tab-big-vertical-nav-arrow-size;
789
+ }
790
+ }
791
+ }
792
+ }
793
+
794
+ &.e-focused {
795
+
796
+ .e-tab-header {
797
+
798
+ .e-toolbar-item {
799
+
800
+ .e-tab-wrap:focus {
801
+ height: $tab-big-height;
802
+ }
803
+
804
+ .e-tab-wrap:focus .e-text-wrap {
805
+ height: $tab-big-height;
806
+
807
+ @if $tab-skin == 'fabric' {
808
+ height: $tab-big-height - 2;
809
+ }
810
+ @else if $tab-skin == 'highcontrast' {
811
+ height: $tab-big-height - 4;
812
+ }
813
+ }
814
+
815
+ &.e-itop,
816
+ &.e-ibottom {
817
+
818
+ .e-tab-wrap:focus {
819
+ height: $tab-big-focus-icon-top-bottom-item-height;
820
+
821
+ .e-text-wrap {
822
+ height: auto;
823
+ }
824
+ }
825
+
826
+ &.e-active .e-tab-wrap:focus .e-text-wrap {
827
+ height: auto;
828
+ }
829
+ }
830
+ }
831
+
832
+ .e-toolbar-pop {
833
+
834
+ .e-toolbar-item {
835
+
836
+ .e-tab-wrap:focus {
837
+ height: $tab-big-pop-item-height;
838
+
839
+ .e-text-wrap {
840
+ height: $tab-big-pop-item-height;
841
+
842
+ @if $tab-skin == 'fabric' {
843
+ height: $tab-big-pop-item-height - 2;
844
+ }
845
+ @else if $tab-skin == 'highcontrast' {
846
+ height: $tab-big-pop-item-height - 4;
847
+ }
848
+ }
849
+ }
850
+
851
+ &.e-itop .e-tab-wrap:focus,
852
+ &.e-ibottom .e-tab-wrap:focus {
853
+ height: $tab-big-height;
854
+ }
855
+ }
856
+ }
857
+
858
+ &.e-horizontal-bottom {
859
+
860
+ .e-toolbar-item {
861
+
862
+ &.e-active {
863
+
864
+ .e-tab-wrap:focus .e-text-wrap {
865
+ height: $tab-big-height;
866
+ padding: 0;
867
+
868
+ @if $tab-skin == 'fabric' {
869
+ height: $tab-big-height - 2;
870
+ }
871
+ @else if $tab-skin == 'highcontrast' {
872
+ height: $tab-big-height - 4;
873
+ }
874
+ }
875
+
876
+ &.e-ileft {
877
+
878
+ @if $tab-skin == 'fabric' {
879
+ height: $tab-big-height - 2;
880
+ }
881
+ @else if $tab-skin == 'highcontrast' {
882
+ height: $tab-big-height - 4;
883
+ }
884
+ }
885
+ }
886
+ }
887
+ }
888
+ }
889
+ }
890
+
891
+ &.e-ie .e-tab-header {
892
+
893
+ .e-hor-nav.e-ie-align,
894
+ .e-scroll-nav.e-ie-align {
895
+
896
+ .e-popup-up-icon,
897
+ .e-popup-down-icon {
898
+ line-height: $tab-big-ie-pop-icon-line-height;
899
+ }
900
+
901
+ .e-nav-left-arrow,
902
+ .e-nav-right-arrow {
903
+ line-height: $tab-big-ie-nav-icon-line-height;
904
+ }
905
+ }
906
+ }
907
+
908
+ &.e-edge .e-tab-header {
909
+
910
+ .e-hor-nav.e-ie-align,
911
+ .e-scroll-nav.e-ie-align {
912
+
913
+ .e-popup-up-icon,
914
+ .e-popup-down-icon {
915
+ line-height: $tab-big-edge-pop-icon-line-height;
916
+ }
917
+
918
+ .e-nav-left-arrow,
919
+ .e-nav-right-arrow {
920
+ line-height: $tab-big-edge-nav-icon-line-height;
921
+ }
922
+ }
923
+ }
924
+
925
+ &.e-safari .e-tab-header {
926
+
927
+ .e-close-icon::before {
928
+ top: $tab-big-safari-close-icon-top;
929
+ }
930
+
931
+ .e-hor-nav,
932
+ .e-scroll-nav {
933
+
934
+ .e-popup-up-icon::before,
935
+ .e-popup-down-icon::before {
936
+ top: 0;
937
+ }
938
+
939
+ .e-nav-left-arrow::before,
940
+ .e-nav-right-arrow::before {
941
+ top: 0;
942
+ }
943
+ }
944
+ }
945
+
946
+ &.e-rtl {
947
+
948
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
949
+
950
+ .e-tab-header {
951
+
952
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child.e-active {
953
+ margin: $tab-big-rtl-item-margin;
954
+ }
955
+
956
+ &.e-horizontal-bottom {
957
+
958
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:not(.e-separator) {
959
+ margin: 0 0 0 2px;
960
+
961
+ &.e-active {
962
+ margin: 0 0 0 2px;
963
+ }
964
+ }
965
+ }
966
+ }
967
+ }
968
+ }
969
+
970
+ &.e-fill {
971
+
972
+ .e-tab-header {
973
+ height: $tab-big-fill-height;
974
+ min-height: $tab-big-fill-height;
975
+
976
+ @media screen and (max-width: 480px) {
977
+ height: $tab-mob-fill-height;
978
+ min-height: $tab-mob-fill-height;
979
+ }
980
+
981
+ .e-toolbar-items {
982
+ height: auto;
983
+ min-height: $tab-big-fill-height;
984
+
985
+ @media screen and (max-width: 480px) {
986
+ min-height: $tab-mob-fill-height;
987
+ }
988
+ }
989
+
990
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
991
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
992
+ margin: $tab-big-alt-first-item-margin;
993
+ padding: 0;
994
+ @if $tab-skin == 'tailwind' {
995
+ padding: 0 12px;
996
+ }
997
+ }
998
+
999
+ .e-toolbar-item {
1000
+
1001
+ &:not(.e-separator) {
1002
+ height: $tab-big-fill-height;
1003
+ margin: $tab-alt-item-margin;
1004
+ min-height: $tab-big-fill-height;
1005
+
1006
+ @media screen and (max-width: 480px) {
1007
+ height: $tab-mob-fill-height;
1008
+ min-height: $tab-mob-fill-height;
1009
+ }
1010
+ }
1011
+
1012
+ &:not(.e-separator).e-itop,
1013
+ &:not(.e-separator).e-ibottom {
1014
+ height: $tab-big-fill-icon-top-bottom-item-height;
1015
+ min-height: $tab-big-fill-icon-top-bottom-item-height;
1016
+ }
1017
+
1018
+ .e-tab-wrap {
1019
+ height: $tab-big-fill-height;
1020
+ padding: $tab-fill-big-wrap-padding;
1021
+
1022
+ @media screen and (max-width: 480px) {
1023
+ height: $tab-mob-fill-height;
1024
+ padding: $tab-fill-big-wrap-padding;
1025
+ }
1026
+ }
1027
+
1028
+ .e-text-wrap {
1029
+ height: $tab-big-fill-height;
1030
+
1031
+ @media screen and (max-width: 480px) {
1032
+ height: $tab-mob-fill-height;
1033
+ }
1034
+
1035
+ @if $tab-skin == 'fabric' {
1036
+ height: $tab-big-fill-height - 2;
1037
+ }
1038
+
1039
+ @if $tab-skin == 'highcontrast' {
1040
+ height: $tab-big-fill-height - 4;
1041
+ }
1042
+ }
1043
+
1044
+ &.e-active {
1045
+ padding: $tab-alt-big-active-item-padding;
1046
+
1047
+ .e-tab-wrap {
1048
+ margin-bottom: $tab-fill-big-active-item-wrap-margin-bottom;
1049
+ }
1050
+
1051
+ .e-text-wrap {
1052
+ height: $tab-big-fill-height;
1053
+
1054
+ @media screen and (max-width: 480px) {
1055
+ height: $tab-mob-fill-height;
1056
+ }
1057
+
1058
+ @if $tab-skin == 'fabric' {
1059
+ height: $tab-big-fill-height - 2;
1060
+ }
1061
+
1062
+ @if $tab-skin == 'highcontrast' {
1063
+ height: $tab-big-fill-height - 4;
1064
+ }
1065
+ }
1066
+
1067
+ &.e-ileft .e-text-wrap,
1068
+ &.e-iright .e-text-wrap {
1069
+ height: $tab-fill-big-active-it-text-container-height;
1070
+
1071
+ @media screen and (max-width: 480px) {
1072
+ height: $tab-fill-big-active-it-text-container-height;
1073
+ }
1074
+
1075
+ @if $tab-skin == 'fabric' {
1076
+ height: $tab-big-fill-height - 2;
1077
+ }
1078
+ @else if $tab-skin == 'highcontrast' {
1079
+ height: $tab-big-fill-height - 4;
1080
+ }
1081
+ }
1082
+ }
1083
+
1084
+ &.e-itop .e-tab-wrap,
1085
+ &.e-ibottom .e-tab-wrap {
1086
+ height: $tab-big-fill-icon-top-bottom-item-height;
1087
+ }
1088
+ }
1089
+
1090
+ .e-toolbar-pop {
1091
+
1092
+ .e-toolbar-item.e-itop:not(.e-separator),
1093
+ .e-toolbar-item.e-ibottom:not(.e-separator) {
1094
+ height: auto;
1095
+ }
1096
+ }
1097
+
1098
+ &.e-vertical {
1099
+
1100
+ .e-toolbar-items {
1101
+
1102
+ .e-toolbar-item {
1103
+
1104
+ .e-tab-wrap {
1105
+ padding: $tab-big-v-wrap-padding;
1106
+ }
1107
+ }
1108
+ }
1109
+ }
1110
+
1111
+ &.e-horizontal-bottom {
1112
+
1113
+ .e-toolbar-item.e-active .e-text-wrap {
1114
+ height: $tab-fill-big-even-active-text-height;
1115
+
1116
+ @if $tab-skin == 'fabric' {
1117
+ height: $tab-big-fill-height - 2;
1118
+ }
1119
+
1120
+ @if $tab-skin == 'highcontrast' {
1121
+ height: $tab-big-fill-height - 4;
1122
+ }
1123
+ }
1124
+
1125
+ .e-toolbar-item.e-itop .e-text-wrap,
1126
+ .e-toolbar-item.e-ibottom .e-text-wrap {
1127
+ height: auto;
1128
+ }
1129
+
1130
+ .e-toolbar-item.e-itop .e-tab-wrap:focus .e-text-wrap,
1131
+ .e-toolbar-item.e-ibottom .e-tab-wrap:focus .e-text-wrap {
1132
+ height: $tab-big-fill-tb-wrap-height;
1133
+ }
1134
+ }
1135
+ }
1136
+
1137
+ &.e-focused {
1138
+
1139
+ .e-tab-header {
1140
+
1141
+ .e-toolbar-item {
1142
+
1143
+ .e-tab-wrap:focus {
1144
+ height: $tab-focus-big-fill-height;
1145
+ }
1146
+
1147
+ .e-tab-wrap:focus .e-text-wrap {
1148
+ height: $tab-focus-big-fill-height;
1149
+
1150
+ @if $tab-skin == 'fabric' {
1151
+ height: $tab-big-fill-height - 2;
1152
+ }
1153
+
1154
+ @if $tab-skin == 'highcontrast' {
1155
+ height: $tab-big-fill-height - 4;
1156
+ }
1157
+ }
1158
+
1159
+ &.e-active .e-tab-wrap:focus {
1160
+
1161
+ .e-text-wrap {
1162
+ @if $tab-skin == 'fabric' {
1163
+ height: $tab-big-fill-height - 2;
1164
+ }
1165
+ @else if $tab-skin == 'highcontrast' {
1166
+ height: $tab-big-fill-height - 4;
1167
+ }
1168
+ }
1169
+
1170
+ .e-close-icon::before {
1171
+
1172
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
1173
+ top: 1px;
1174
+ }
1175
+ }
1176
+ }
1177
+
1178
+ &.e-itop .e-tab-wrap:focus,
1179
+ &.e-ibottom .e-tab-wrap:focus {
1180
+ height: $tab-big-focus-fill-icon-top-bottom-item-height;
1181
+
1182
+ .e-text-wrap {
1183
+ height: auto;
1184
+
1185
+ @media screen and (max-width: 480px) {
1186
+ height: auto;
1187
+ }
1188
+ }
1189
+ }
1190
+ }
1191
+
1192
+ &.e-horizontal-bottom {
1193
+
1194
+ .e-tab-wrap:focus .e-text-wrap {
1195
+ @if $tab-skin == 'fabric' {
1196
+ height: $tab-big-fill-height - 2;
1197
+ }
1198
+
1199
+ @if $tab-skin == 'highcontrast' {
1200
+ height: $tab-big-fill-height - 4;
1201
+ }
1202
+ }
1203
+ }
1204
+ }
1205
+ }
1206
+
1207
+ &.e-rtl .e-tab-header {
1208
+
1209
+ .e-toolbar-item:not(.e-separator) {
1210
+ margin: $tab-big-rtl-alt-item-margin;
1211
+ }
1212
+ }
1213
+
1214
+ &.e-vertical-icon {
1215
+
1216
+ .e-tab-header {
1217
+ height: $tab-big-tb-icon-height - 2;
1218
+ min-height: $tab-big-tb-icon-height - 2;
1219
+ }
1220
+ }
1221
+ }
1222
+
1223
+ &.e-background {
1224
+
1225
+ .e-tab-header {
1226
+
1227
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
1228
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
1229
+ margin: $tab-big-alt-first-item-margin;
1230
+ padding: 0;
1231
+ @if $tab-skin == 'tailwind' {
1232
+ padding: 0 12px;
1233
+ }
1234
+ }
1235
+
1236
+ .e-toolbar-item {
1237
+
1238
+ &:not(.e-separator) {
1239
+ @if $tab-skin != 'bootstrap5' {
1240
+ margin: $tab-alt-item-margin;
1241
+ }
1242
+ }
1243
+
1244
+ .e-tab-wrap {
1245
+ padding: $tab-bg-big-wrap-padding;
1246
+
1247
+ @media screen and (max-width: 480px) {
1248
+ padding: $tab-bg-big-wrap-padding;
1249
+ }
1250
+ }
1251
+
1252
+ &.e-active {
1253
+ padding: $tab-alt-big-active-item-padding;
1254
+
1255
+ .e-tab-wrap {
1256
+ margin-bottom: $tab-bg-big-active-item-wrap-margin-bottom;
1257
+ }
1258
+
1259
+ .e-text-wrap {
1260
+ height: $tab-big-height;
1261
+
1262
+ @if $tab-skin == 'fabric' {
1263
+ height: $tab-big-height - 2;
1264
+ }
1265
+
1266
+ @if $tab-skin == 'highcontrast' {
1267
+ height: $tab-big-height - 4;
1268
+ }
1269
+ }
1270
+ }
1271
+
1272
+ &:hover {
1273
+ @if $tab-skin == 'highcontrast' {
1274
+ &.e-itop,
1275
+ &.e-ibottom {
1276
+
1277
+ .e-text-wrap {
1278
+ height: auto;
1279
+ }
1280
+ }
1281
+ }
1282
+ }
1283
+ }
1284
+
1285
+ &.e-vertical {
1286
+
1287
+ .e-toolbar-items {
1288
+
1289
+ .e-toolbar-item {
1290
+
1291
+ .e-tab-wrap {
1292
+ padding: $tab-big-v-wrap-padding;
1293
+ }
1294
+ }
1295
+ }
1296
+ }
1297
+ }
1298
+
1299
+ &.e-rtl .e-tab-header {
1300
+
1301
+ .e-toolbar-item:not(.e-separator) {
1302
+ margin: $tab-big-rtl-alt-item-margin;
1303
+ }
1304
+ }
1305
+ }
1306
+
1307
+ &.e-rtl {
1308
+
1309
+ .e-tab-header {
1310
+
1311
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
1312
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
1313
+ margin: $tab-big-rtl-item-margin;
1314
+ }
1315
+
1316
+ .e-toolbar-item:not(.e-separator) {
1317
+ margin: $tab-big-rtl-item-margin;
1318
+
1319
+ @if $tab-skin == 'FluentUI' {
1320
+ .e-icon-right {
1321
+ margin: $tab-rtl-big-it-text-margin;
1322
+
1323
+ @media screen and (max-width: 480px) {
1324
+ margin: $tab-rtl-mob-it-text-margin;
1325
+ }
1326
+ }
1327
+ }
1328
+
1329
+ .e-icon-left + .e-tab-text {
1330
+ margin: $tab-rtl-big-it-text-margin;
1331
+
1332
+ @media screen and (max-width: 480px) {
1333
+ margin: $tab-rtl-mob-it-text-margin;
1334
+ }
1335
+ }
1336
+
1337
+ .e-icons.e-close-icon {
1338
+ margin: $tab-rtl-big-close-icon-margin;
1339
+
1340
+ @media screen and (max-width: 480px) {
1341
+ margin: $tab-rtl-mob-close-icon-margin;
1342
+ }
1343
+ }
1344
+
1345
+ &.e-itop .e-close-icon,
1346
+ &.e-ibottom .e-close-icon {
1347
+ left: $tab-rtl-big-close-icon-top-bottom-left;
1348
+ right: auto;
1349
+ }
1350
+ }
1351
+
1352
+ &.e-close-show {
1353
+
1354
+ .e-toolbar-item.e-itop .e-text-wrap,
1355
+ .e-toolbar-item.e-ibottom .e-text-wrap {
1356
+ margin-left: $tab-rtl-big-text-container-margin-left;
1357
+ margin-right: $tab-rtl-big-text-container-margin-right;
1358
+ }
1359
+ }
1360
+
1361
+ .e-toolbar-pop {
1362
+
1363
+ .e-toolbar-item {
1364
+ margin: 0;
1365
+
1366
+ .e-tab-text {
1367
+ padding-left: $tab-rtl-big-pop-text-padding-left;
1368
+ padding-right: 0;
1369
+
1370
+ @media screen and (max-width: 480px) {
1371
+ padding-left: 0;
1372
+ }
1373
+ }
1374
+
1375
+ .e-icons.e-close-icon {
1376
+ margin: $tab-rtl-big-pop-close-icon-margin;
1377
+ }
1378
+
1379
+ &.e-itop,
1380
+ &.e-ibottom {
1381
+
1382
+ .e-close-icon {
1383
+ left: $tab-rtl-big-pop-close-icon-top-bottom-left;
1384
+ right: auto;
1385
+ }
1386
+ }
1387
+
1388
+ &.e-itop .e-tab-text,
1389
+ &.e-ibottom .e-tab-text {
1390
+ margin: 0;
1391
+ padding-left: 12px;
1392
+ padding-right: 0;
1393
+
1394
+ @media screen and (max-width: 480px) {
1395
+ margin: 0;
1396
+ padding-left: 0;
1397
+ padding-right: 0;
1398
+ }
1399
+ }
1400
+ }
1401
+ }
1402
+
1403
+ .e-hor-nav,
1404
+ .e-scroll-right-nav {
1405
+ padding: $tab-rtl-big-nav-right-icon-padding;
1406
+ }
1407
+
1408
+ .e-scroll-left-nav {
1409
+ padding: $tab-rtl-big-nav-left-icon-padding;
1410
+ }
1411
+
1412
+ &.e-vertical {
1413
+
1414
+ .e-toolbar-item {
1415
+
1416
+ &:not(.e-separator) {
1417
+ margin: 0;
1418
+ }
1419
+
1420
+ &.e-itop,
1421
+ &.e-ibottom {
1422
+
1423
+ .e-close-icon {
1424
+ left: $tab-v-rtl-big-close-icon-top-bottom-left;
1425
+ }
1426
+ }
1427
+ }
1428
+
1429
+ .e-hor-nav {
1430
+ padding: $tab-big-wrap-padding;
1431
+ }
1432
+
1433
+ .e-popup-up-icon,
1434
+ .e-popup-down-icon {
1435
+
1436
+ &::after {
1437
+ margin: $tab-rtl-pop-more-icon-margin;
1438
+ }
1439
+ }
1440
+ }
1441
+ }
1442
+ }
1443
+ }
1444
+
1445
+ .e-tab {
1446
+ display: block;
1447
+ position: relative;
1448
+
1449
+ &.e-hidden {
1450
+ display: none;
1451
+ }
1452
+
1453
+ &.e-fill-mode .e-content,
1454
+ &.e-fill-mode .e-content .e-item,
1455
+ &.e-fill-mode .e-content .e-item > div,
1456
+ &.e-fill-mode .e-content .e-item > div > .e-blazor-template {
1457
+ height: 100%;
1458
+ }
1459
+
1460
+ .e-tab-header {
1461
+ height: $tab-nrml-height;
1462
+ min-height: $tab-nrml-height;
1463
+
1464
+ @media screen and (max-width: 480px) {
1465
+ height: $tab-big-height;
1466
+ min-height: $tab-big-height;
1467
+ }
1468
+
1469
+ &::before {
1470
+ content: '';
1471
+ position: absolute;
1472
+
1473
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
1474
+ display: block;
1475
+ }
1476
+ }
1477
+
1478
+ &:not(.e-vertical) {
1479
+
1480
+ &::before {
1481
+ bottom: 0;
1482
+ top: 0;
1483
+ width: 100%;
1484
+ }
1485
+ }
1486
+
1487
+ .e-toolbar-items {
1488
+ height: auto;
1489
+ margin: 0;
1490
+ min-height: $tab-nrml-height;
1491
+ position: relative;
1492
+
1493
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' or $tbar-skin == 'FluentUI' {
1494
+ height: $tab-nrml-height;
1495
+ min-height: $tab-nrml-height;
1496
+ }
1497
+
1498
+ @media screen and (max-width: 480px) {
1499
+ min-height: $tab-big-height;
1500
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
1501
+ height: $tab-big-height;
1502
+ }
1503
+ }
1504
+
1505
+ &:not(.e-tbar-pos) .e-toolbar-item:first-child,
1506
+ &:not(.e-tbar-pos) .e-toolbar-item:last-child {
1507
+ margin: $tab-nrml-first-item-margin;
1508
+ }
1509
+
1510
+ &:not(.e-tbar-pos) .e-toolbar-item:last-child {
1511
+ margin: $tab-nrml-last-item-margin;
1512
+ padding-bottom: $tab-big-boot-active-item-padding-bottom;
1513
+
1514
+ @media screen and (max-width: 480px) {
1515
+ margin: $tab-mob-last-item-margin;
1516
+ }
1517
+ }
1518
+ @if $tab-skin == 'FluentUI' {
1519
+ .e-toolbar-item.e-active {
1520
+ position: relative;
1521
+
1522
+ &:hover::before {
1523
+ left: 0;
1524
+ right: 0;
1525
+ }
1526
+
1527
+ &::before {
1528
+ background-color: $tab-alt-hdr-bg-color;
1529
+ bottom: 0;
1530
+ content: '';
1531
+ height: 2px;
1532
+ left: 8px;
1533
+ position: absolute;
1534
+ right: 8px;
1535
+ transition: left .267s cubic-bezier(.1, .25, .75, .9) 0s, right .267s cubic-bezier(.1, .25, .75, .9) 0s;
1536
+ }
1537
+
1538
+ &::after {
1539
+ color: transparent;
1540
+ content: attr(data-content);
1541
+ display: block;
1542
+ font-weight: bold;
1543
+ height: 1px;
1544
+ overflow: hidden;
1545
+ visibility: hidden;
1546
+ }
1547
+ }
1548
+ }
1549
+ }
1550
+
1551
+ .e-toolbar-items.e-hscroll {
1552
+
1553
+ &.e-scroll-device {
1554
+ padding: 0;
1555
+
1556
+ .e-scroll-right-nav {
1557
+ display: none;
1558
+ }
1559
+ }
1560
+
1561
+ @if $tab-skin == 'bootstrap'or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
1562
+
1563
+ &[style *= 'overflow: hidden'] .e-toolbar-item:not(.e-separator).e-active {
1564
+ margin-bottom: 0;
1565
+ }
1566
+ }
1567
+
1568
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
1569
+ .e-hscroll-bar {
1570
+ padding: 0 1px;
1571
+ }
1572
+ }
1573
+
1574
+ .e-scroll-nav {
1575
+ width: 40px;
1576
+ @if $tab-skin == 'FluentUI' {
1577
+ width: 32px;
1578
+ }
1579
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
1580
+ border-radius: 4px;
1581
+ width: 32px;
1582
+ }
1583
+
1584
+ @if $tab-skin == 'tailwind' {
1585
+ width: 24px;
1586
+ }
1587
+ }
1588
+
1589
+ &:not(.e-tbar-pos) .e-toolbar-item:last-child {
1590
+ margin: $tab-nrml-scroll-last-item-margin;
1591
+
1592
+ @media screen and (max-width: 480px) {
1593
+ margin: $tab-mob-last-item-margin;
1594
+ }
1595
+
1596
+ &.e-active {
1597
+ margin: $tab-nrml-active-scroll-last-item-margin;
1598
+ }
1599
+ }
1600
+ }
1601
+
1602
+ .e-hscroll-bar {
1603
+ overflow: hidden;
1604
+ }
1605
+
1606
+ .e-indicator {
1607
+ display: $tab-anim-border-display;
1608
+ position: absolute;
1609
+
1610
+ &.e-hidden {
1611
+ display: none;
1612
+ }
1613
+ }
1614
+
1615
+ &:not(.e-vertical) .e-indicator {
1616
+ bottom: 0;
1617
+ height: $tab-border-width;
1618
+ left: 0;
1619
+ right: 0;
1620
+ transition: left .125s cubic-bezier(.35, 0, .25, 1), right .25s cubic-bezier(.35, 0, .25, 1);
1621
+
1622
+ @if $tab-skin == 'tailwind' {
1623
+ border-radius: $tab-border-width;
1624
+ transition: all .4s cubic-bezier(.25, .46, .45, .94);
1625
+ }
1626
+ }
1627
+
1628
+ .e-toolbar-item {
1629
+
1630
+ &.e-hidden {
1631
+ display: none;
1632
+ }
1633
+
1634
+ &:not(.e-separator) {
1635
+ height: $tab-nrml-height;
1636
+ margin: $tab-nrml-item-margin;
1637
+ min-height: $tab-nrml-height;
1638
+ min-width: auto;
1639
+ padding: $tab-nrml-item-padding;
1640
+
1641
+ @media screen and (max-width: 480px) {
1642
+ height: $tab-big-height;
1643
+ min-height: $tab-big-height;
1644
+ }
1645
+ }
1646
+
1647
+ .e-tab-wrap {
1648
+ height: $tab-nrml-height;
1649
+ padding: $tab-nrml-wrap-padding;
1650
+ width: 100%;
1651
+
1652
+ @media screen and (max-width: 480px) {
1653
+ height: $tab-big-height;
1654
+ padding: $tab-mob-wrap-padding;
1655
+ }
1656
+ }
1657
+
1658
+ .e-text-wrap {
1659
+ align-content: center;
1660
+ align-items: center;
1661
+ display: inline-flex;
1662
+ height: $tab-nrml-height;
1663
+
1664
+ @media screen and (max-width: 480px) {
1665
+ height: $tab-big-height;
1666
+ }
1667
+
1668
+ @if $tab-skin == 'fabric' {
1669
+ height: $tab-nrml-height - 2;
1670
+ }
1671
+ @else if $tab-skin == 'highcontrast' {
1672
+ height: $tab-nrml-height - 4;
1673
+ }
1674
+ }
1675
+
1676
+ .e-tab-text {
1677
+ display: inherit;
1678
+ font-family: $tab-font-family;
1679
+ font-size: $tab-nrml-font-size;
1680
+ font-weight: $tab-font-weight;
1681
+ text-transform: $tab-text-transform;
1682
+
1683
+ @media screen and (max-width: 480px) {
1684
+ font-size: $tab-big-font-size;
1685
+ }
1686
+ }
1687
+
1688
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
1689
+ .e-tab-text {
1690
+ align-self: auto;
1691
+ }
1692
+ }
1693
+
1694
+ &.e-active {
1695
+ margin: $tab-nrml-boot-item-margin;
1696
+ padding-bottom: $tab-nrml-even-boot-active-item-padding-bottom;
1697
+
1698
+ @media screen and (max-width: 480px) {
1699
+ margin: $tab-mob-boot-item-margin;
1700
+ }
1701
+
1702
+ .e-text-wrap {
1703
+ height: $tab-nrml-active-text-container-height;
1704
+ margin-top: $tab-active-text-container-margin;
1705
+
1706
+ @media screen and (max-width: 480px) {
1707
+ height: $tab-big-active-text-container-height;
1708
+ }
1709
+
1710
+ @if $tab-skin == 'fabric' {
1711
+ height: $tab-nrml-height - 2;
1712
+ }
1713
+ @else if $tab-skin == 'highcontrast' {
1714
+ height: $tab-nrml-height - 4;
1715
+ }
1716
+ }
1717
+
1718
+ .e-tab-wrap {
1719
+ margin-bottom: $tab-nrml-active-item-wrap-margin-bottom;
1720
+
1721
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
1722
+ &:hover {
1723
+ border: 0;
1724
+ }
1725
+ }
1726
+ }
1727
+
1728
+ .e-tab-text {
1729
+ font-weight: $tab-semi-font-weight;
1730
+ }
1731
+
1732
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
1733
+ .e-tab-text {
1734
+ align-self: auto;
1735
+ }
1736
+ }
1737
+
1738
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
1739
+ .e-tab-icon::before {
1740
+ top: -1px;
1741
+ }
1742
+ }
1743
+
1744
+ &.e-ileft,
1745
+ &.e-iright {
1746
+
1747
+ .e-text-wrap {
1748
+ height: $tab-nrml-active-it-text-container-height;
1749
+ padding: $tab-nrml-ileft-active-text-wrap-padding;
1750
+
1751
+ @media screen and (max-width: 480px) {
1752
+ height: $tab-big-active-it-text-container-height;
1753
+ }
1754
+
1755
+ @if $tab-skin == 'fabric' {
1756
+ height: $tab-nrml-height - 2;
1757
+ padding: 0;
1758
+ }
1759
+ @else if $tab-skin == 'highcontrast' {
1760
+ height: $tab-nrml-height - 4;
1761
+ padding: 0;
1762
+ }
1763
+ }
1764
+
1765
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
1766
+ .e-tab-wrap .e-tab-text {
1767
+ align-self: auto;
1768
+ }
1769
+
1770
+ .e-tab-wrap:focus .e-tab-text {
1771
+ align-self: auto;
1772
+ }
1773
+ }
1774
+ }
1775
+ }
1776
+
1777
+ .e-icons.e-close-icon {
1778
+ display: none;
1779
+ margin: $tab-nrml-close-icon-margin;
1780
+ min-width: $tab-close-icon-minwidth;
1781
+
1782
+ @media screen and (max-width: 480px) {
1783
+ margin: $tab-mob-close-icon-margin;
1784
+ }
1785
+ }
1786
+
1787
+ .e-close-icon,
1788
+ .e-close-icon::before {
1789
+ font-size: $tab-nrml-close-icon-size;
1790
+
1791
+ @media screen and (max-width: 480px) {
1792
+ font-size: $tab-mob-close-icon-size;
1793
+ }
1794
+ }
1795
+
1796
+ .e-close-icon::before {
1797
+ top: $tab-pop-close-icon-top;
1798
+
1799
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
1800
+ top: 1px;
1801
+ }
1802
+ }
1803
+
1804
+ .e-icons.e-tab-icon {
1805
+ display: inline-flex;
1806
+ height: $tab-nrml-icon-container-size;
1807
+ min-width: $tab-nrml-icon-container-size;
1808
+ width: $tab-nrml-icon-container-size;
1809
+
1810
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
1811
+ line-height: $tab-nrml-icon-container-size;
1812
+ }
1813
+
1814
+ @media screen and (max-width: 480px) {
1815
+ height: $tab-mob-icon-container-size;
1816
+ width: $tab-mob-icon-container-size;
1817
+ }
1818
+ }
1819
+
1820
+ .e-tab-icon,
1821
+ .e-tab-icon::before {
1822
+ font-size: $tab-nrml-icon-size;
1823
+
1824
+ @media screen and (max-width: 480px) {
1825
+ font-size: $tab-mob-icon-size;
1826
+ }
1827
+ }
1828
+
1829
+ &.e-icon {
1830
+
1831
+ .e-tab-wrap {
1832
+ justify-content: center;
1833
+ padding: $tab-nrml-io-wrap-padding;
1834
+
1835
+ @media screen and (max-width: 480px) {
1836
+ padding: $tab-big-wrap-padding;
1837
+ }
1838
+ }
1839
+ }
1840
+
1841
+ @if $tab-skin == 'FluentUI' {
1842
+ .e-icon-right {
1843
+ margin: $tab-nrml-it-text-margin;
1844
+
1845
+ @media screen and (max-width: 480px) {
1846
+ margin: $tab-mob-it-text-margin;
1847
+ }
1848
+ }
1849
+ }
1850
+
1851
+ .e-icon-left + .e-tab-text {
1852
+ margin: $tab-nrml-it-text-margin;
1853
+
1854
+ @media screen and (max-width: 480px) {
1855
+ margin: $tab-mob-it-text-margin;
1856
+ }
1857
+ }
1858
+
1859
+ &.e-itop,
1860
+ &.e-ibottom {
1861
+ height: $tab-nrml-icon-top-bottom-item-height;
1862
+
1863
+ @media screen and (max-width: 480px) {
1864
+ height: $tab-big-icon-top-bottom-item-height;
1865
+ }
1866
+
1867
+ .e-tab-wrap {
1868
+ align-items: center;
1869
+ display: flex;
1870
+ height: $tab-nrml-icon-top-bottom-item-height;
1871
+ position: relative;
1872
+
1873
+ @media screen and (max-width: 480px) {
1874
+ height: $tab-big-icon-top-bottom-item-height;
1875
+ }
1876
+
1877
+ &:focus {
1878
+
1879
+ .e-text-wrap {
1880
+ height: auto;
1881
+ }
1882
+ }
1883
+ }
1884
+
1885
+ .e-text-wrap {
1886
+ display: block;
1887
+ height: auto;
1888
+ }
1889
+
1890
+ &.e-active {
1891
+
1892
+ .e-tab-wrap {
1893
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
1894
+ height: 62px;
1895
+ }
1896
+
1897
+ &:focus {
1898
+
1899
+ .e-text-wrap {
1900
+ height: auto;
1901
+ }
1902
+ }
1903
+
1904
+ .e-text-wrap {
1905
+ height: auto;
1906
+ }
1907
+ }
1908
+ }
1909
+
1910
+ .e-close-icon {
1911
+ position: absolute;
1912
+ right: $tab-nrml-close-icon-top-bottom-right;
1913
+ top: calc(50% - 6px);
1914
+
1915
+ @media screen and (max-width: 480px) {
1916
+ right: $tab-mob-close-icon-top-bottom-right;
1917
+ }
1918
+ }
1919
+ }
1920
+
1921
+ &.e-itop .e-tab-text {
1922
+ margin: $tab-nrml-icon-top-margin;
1923
+
1924
+ @media screen and (max-width: 480px) {
1925
+ margin: $tab-big-icon-top-margin;
1926
+ }
1927
+ }
1928
+
1929
+ &.e-ibottom .e-tab-text {
1930
+ margin: $tab-nrml-icon-bottom-margin;
1931
+
1932
+ @media screen and (max-width: 480px) {
1933
+ margin: $tab-big-icon-bottom-margin;
1934
+ }
1935
+ }
1936
+
1937
+ .e-tab-icon.e-icon-top,
1938
+ .e-tab-icon.e-icon-bottom {
1939
+ align-items: center;
1940
+ display: flex;
1941
+ flex-direction: column;
1942
+ justify-content: center;
1943
+ margin: auto;
1944
+ }
1945
+ }
1946
+
1947
+ .e-toolbar-pop {
1948
+ overflow-y: auto;
1949
+ padding: $tab-pop-padding;
1950
+
1951
+ .e-toolbar-item {
1952
+ height: $tab-nrml-pop-item-height;
1953
+ min-height: $tab-nrml-pop-item-height;
1954
+ min-width: auto;
1955
+
1956
+ @media screen and (max-width: 480px) {
1957
+ height: $tab-mob-pop-item-height;
1958
+ min-height: $tab-mob-pop-item-height;
1959
+ }
1960
+
1961
+ &:not(.e-separator) {
1962
+ margin: $tab-pop-item-margin;
1963
+ @if $tab-skin == 'tailwind' {
1964
+ padding: 0;
1965
+ }
1966
+ }
1967
+
1968
+ .e-tab-wrap {
1969
+ height: $tab-nrml-pop-item-height;
1970
+ padding: $tab-nrml-pop-item-wrap-padding;
1971
+ text-align: initial;
1972
+
1973
+ @media screen and (max-width: 480px) {
1974
+ height: $tab-mob-pop-item-height;
1975
+ padding: $tab-mob-pop-item-wrap-padding;
1976
+ }
1977
+ }
1978
+
1979
+ .e-text-wrap {
1980
+ height: $tab-nrml-pop-item-height;
1981
+ width: 100%;
1982
+
1983
+ @if $tab-skin == 'fabric' {
1984
+ height: $tab-nrml-pop-item-height - 2;
1985
+ }
1986
+ @else if $tab-skin == 'highcontrast' {
1987
+ height: $tab-nrml-pop-item-height - 4;
1988
+ }
1989
+ }
1990
+
1991
+ .e-tab-text {
1992
+ display: inline-flex;
1993
+ width: 100%;
1994
+ }
1995
+
1996
+ .e-close-icon {
1997
+ margin: 0 0 0 8px;
1998
+ }
1999
+
2000
+ .e-close-icon::before {
2001
+ top: $tab-nrml-pop-close-top;
2002
+ }
2003
+
2004
+ .e-tab-text + .e-close-icon[style = 'display:block'] {
2005
+ padding-right: $tab-nrml-pop-text-padding-right;
2006
+
2007
+ @media screen and (max-width: 480px) {
2008
+ padding-right: 0;
2009
+ }
2010
+ }
2011
+
2012
+ &.e-itop,
2013
+ &.e-ibottom {
2014
+ height: $tab-pop-nrml-icon-top-bottom-item-height;
2015
+
2016
+ @media screen and (max-width: 480px) {
2017
+ height: $tab-pop-big-icon-top-bottom-item-height;
2018
+ }
2019
+
2020
+ &:not(.e-separator) {
2021
+ min-height: $tab-pop-nrml-icon-top-bottom-item-height;
2022
+
2023
+ @media screen and (max-width: 480px) {
2024
+ min-height: $tab-pop-big-icon-top-bottom-item-height;
2025
+ }
2026
+ }
2027
+
2028
+ .e-tab-wrap {
2029
+ height: $tab-pop-nrml-icon-top-bottom-item-height;
2030
+
2031
+ @media screen and (max-width: 480px) {
2032
+ height: $tab-pop-big-icon-top-bottom-item-height;
2033
+ }
2034
+ }
2035
+
2036
+ .e-text-wrap {
2037
+ display: inline-flex;
2038
+ height: auto;
2039
+ }
2040
+
2041
+ .e-tab-text {
2042
+ display: block;
2043
+ justify-content: center;
2044
+ margin: 0 0 0 10px;
2045
+ padding-left: 0;
2046
+ padding-right: 10px;
2047
+
2048
+ @media screen and (max-width: 480px) {
2049
+ justify-content: center;
2050
+ margin: 0 0 0 12px;
2051
+ padding-left: 0;
2052
+ padding-right: 0;
2053
+ }
2054
+ }
2055
+
2056
+ .e-close-icon {
2057
+ right: $tab-nrml-pop-close-icon-top-bottom-right;
2058
+ top: initial;
2059
+ }
2060
+ }
2061
+
2062
+ &.e-ibottom {
2063
+
2064
+ .e-tab-text {
2065
+ margin: 0;
2066
+ }
2067
+ }
2068
+
2069
+ .e-tab-icon.e-icon-top,
2070
+ .e-tab-icon.e-icon-bottom {
2071
+ display: inline-flex;
2072
+ }
2073
+ }
2074
+ }
2075
+
2076
+ &.e-close-show {
2077
+
2078
+ .e-icons.e-close-icon {
2079
+ align-items: center;
2080
+ align-self: center;
2081
+ display: inline-flex;
2082
+
2083
+ @media screen and (max-width: 480px) {
2084
+ display: none;
2085
+ }
2086
+ }
2087
+
2088
+ .e-toolbar-item.e-active .e-close-icon {
2089
+
2090
+ @media screen and (max-width: 480px) {
2091
+ display: inline-flex;
2092
+ }
2093
+ }
2094
+
2095
+ .e-toolbar-item.e-itop .e-text-wrap,
2096
+ .e-toolbar-item.e-ibottom .e-text-wrap {
2097
+ margin-right: $tab-nrml-text-container-margin-right;
2098
+ }
2099
+ }
2100
+
2101
+ .e-scroll-nav {
2102
+ height: $tab-nrml-height;
2103
+ min-height: $tab-nrml-height;
2104
+ min-width: auto;
2105
+ width: auto;
2106
+
2107
+ @media screen and (max-width: 480px) {
2108
+ height: $tab-big-height;
2109
+ min-height: $tab-big-height;
2110
+ }
2111
+
2112
+ &.e-scroll-left-nav {
2113
+ padding: $tab-nrml-nav-left-icon-padding;
2114
+ }
2115
+
2116
+ &.e-scroll-right-nav {
2117
+ padding: $tab-nrml-nav-right-icon-padding;
2118
+
2119
+ @media screen and (max-width: 480px) {
2120
+ padding: $tab-mob-nav-right-icon-padding;
2121
+ }
2122
+ }
2123
+
2124
+ .e-nav-left-arrow::before,
2125
+ .e-nav-right-arrow::before {
2126
+ font-size: $tab-nrml-nav-icon-size;
2127
+ line-height: $tab-nrml-nav-icon-container-size;
2128
+ position: relative;
2129
+ top: 0;
2130
+ vertical-align: initial;
2131
+
2132
+ @if $tab-skin == 'fabric' {
2133
+ top: -1px;
2134
+ }
2135
+
2136
+ @if $tab-skin == 'highcontrast' {
2137
+ top: -2px;
2138
+ }
2139
+ }
2140
+
2141
+ .e-nav-arrow {
2142
+ font-size: $tab-nrml-nav-icon-size;
2143
+ height: $tab-nrml-nav-icon-container-size;
2144
+ line-height: $tab-nrml-nav-icon-container-size;
2145
+ width: $tab-nrml-nav-icon-container-size;
2146
+
2147
+ @media screen and (max-width: 480px) {
2148
+ font-size: $tab-big-nav-icon-size;
2149
+ height: $tab-big-nav-icon-container-size;
2150
+ line-height: $tab-big-nav-icon-container-size;
2151
+ width: $tab-big-nav-icon-container-size;
2152
+ }
2153
+ }
2154
+ }
2155
+
2156
+ .e-hor-nav {
2157
+ height: $tab-nrml-height;
2158
+ min-height: $tab-nrml-height;
2159
+ min-width: auto;
2160
+ padding: $tab-nrml-nav-right-icon-padding;
2161
+ width: auto;
2162
+
2163
+ @media screen and (max-width: 480px) {
2164
+ height: $tab-big-height;
2165
+ min-height: $tab-big-height;
2166
+ padding: $tab-mob-nav-right-icon-padding;
2167
+ }
2168
+
2169
+ .e-popup-up-icon,
2170
+ .e-popup-down-icon {
2171
+ font-size: $tab-nrml-nav-icon-size;
2172
+ height: $tab-nrml-nav-icon-container-size;
2173
+ line-height: $tab-nrml-nav-icon-container-size;
2174
+ width: $tab-nrml-nav-icon-container-size;
2175
+
2176
+ @media screen and (max-width: 480px) {
2177
+ font-size: $tab-big-nav-icon-size;
2178
+ height: $tab-big-nav-icon-container-size;
2179
+ line-height: $tab-big-nav-icon-container-size;
2180
+ width: $tab-big-nav-icon-container-size;
2181
+ }
2182
+
2183
+ &::before {
2184
+ font-size: $tab-nrml-nav-icon-size;
2185
+ line-height: $tab-nrml-nav-icon-container-size;
2186
+ position: relative;
2187
+ top: 0;
2188
+ vertical-align: initial;
2189
+
2190
+ @if $tab-skin == 'fabric' {
2191
+ top: -1px;
2192
+ }
2193
+
2194
+ @if $tab-skin == 'highcontrast' {
2195
+ top: -2px;
2196
+ }
2197
+
2198
+ @media screen and (max-width: 480px) {
2199
+ font-size: $tab-mob-nav-icon-size;
2200
+ }
2201
+ }
2202
+
2203
+ &:hover {
2204
+ @if $tab-skin == 'bootstrap' {
2205
+ line-height: 34px;
2206
+ }
2207
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
2208
+ line-height: 32px;
2209
+ }
2210
+
2211
+ &::before {
2212
+ top: $tab-nrml-hover-nav-pop-icon-top;
2213
+
2214
+ @if $tab-skin == 'fabric' {
2215
+ top: -1px;
2216
+ }
2217
+
2218
+ @if $tab-skin == 'bootstrap' {
2219
+ line-height: 34px;
2220
+ top: 0;
2221
+
2222
+ @media screen and (max-width: 480px) {
2223
+ line-height: 43px;
2224
+ }
2225
+ }
2226
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
2227
+ line-height: 32px;
2228
+ top: 0;
2229
+
2230
+ @media screen and (max-width: 480px) {
2231
+ line-height: 43px;
2232
+ }
2233
+ }
2234
+
2235
+ @if $tab-skin == 'highcontrast' {
2236
+ top: -2px;
2237
+ }
2238
+ }
2239
+ }
2240
+ }
2241
+
2242
+ .e-popup-up-icon {
2243
+ transform: $tab-pop-up-icon-transform;
2244
+ transition: $tab-pop-icon-transition;
2245
+
2246
+ @media screen and (max-width: 480px) {
2247
+ transform: none;
2248
+ transition: none;
2249
+ }
2250
+ }
2251
+
2252
+ .e-popup-down-icon {
2253
+ transform: $tab-pop-down-icon-transform;
2254
+ transition: $tab-pop-icon-transition;
2255
+
2256
+ @media screen and (max-width: 480px) {
2257
+ transform: none;
2258
+ transition: none;
2259
+ }
2260
+ }
2261
+
2262
+ &:focus {
2263
+
2264
+ .e-popup-up-icon,
2265
+ .e-popup-down-icon {
2266
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
2267
+ line-height: 32px;
2268
+ }
2269
+
2270
+ &::before {
2271
+ top: $tab-nrml-hover-nav-pop-icon-top;
2272
+
2273
+ @if $tab-skin == 'fabric' {
2274
+ top: -1px;
2275
+ }
2276
+
2277
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
2278
+ line-height: 32px;
2279
+ top: 0;
2280
+
2281
+ @media screen and (max-width: 480px) {
2282
+ line-height: 43px;
2283
+ }
2284
+ }
2285
+
2286
+ @if $tab-skin == 'highcontrast' {
2287
+ top: -2px;
2288
+ }
2289
+ }
2290
+
2291
+ &:hover {
2292
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
2293
+ line-height: 32px;
2294
+ top: -.5px;
2295
+ }
2296
+ }
2297
+ }
2298
+ }
2299
+ }
2300
+
2301
+ &.e-horizontal-bottom {
2302
+
2303
+ @if $tab-skin == 'FluentUI' {
2304
+ .e-toolbar-items .e-toolbar-item.e-active {
2305
+ position: relative;
2306
+
2307
+ &:hover::before {
2308
+ left: 0;
2309
+ right: 0;
2310
+ }
2311
+
2312
+ &::before {
2313
+ background-color: $tab-alt-hdr-bg-color;
2314
+ content: '';
2315
+ height: 2px;
2316
+ left: 8px;
2317
+ position: absolute;
2318
+ right: 8px;
2319
+ top: 0;
2320
+ transition: left .267s cubic-bezier(.1, .25, .75, .9) 0s, right .267s cubic-bezier(.1, .25, .75, .9) 0s;
2321
+ }
2322
+
2323
+ &::after {
2324
+ color: transparent;
2325
+ content: attr(data-content);
2326
+ display: block;
2327
+ font-weight: bold;
2328
+ height: 1px;
2329
+ overflow: hidden;
2330
+ visibility: hidden;
2331
+ }
2332
+ }
2333
+ }
2334
+
2335
+ &::before {
2336
+ bottom: auto;
2337
+ }
2338
+
2339
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
2340
+ .e-hscroll-bar {
2341
+ margin-top: -1px;
2342
+ }
2343
+ }
2344
+
2345
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
2346
+ margin: $tab-nrml-even-last-item-margin;
2347
+ padding-bottom: 0;
2348
+ padding-top: $tab-nrml-even-boot-active-item-padding-bottom;
2349
+
2350
+ @media screen and (max-width: 480px) {
2351
+ margin: $tab-mob-even-last-item-margin;
2352
+ }
2353
+ }
2354
+
2355
+ .e-indicator {
2356
+ bottom: auto;
2357
+ top: 0;
2358
+ }
2359
+
2360
+ .e-toolbar-item {
2361
+
2362
+ &.e-active {
2363
+ margin: $tab-nrml-even-boot-item-margin;
2364
+ padding-bottom: 0;
2365
+ padding-top: $tab-nrml-boot-active-item-padding-bottom;
2366
+
2367
+ @media screen and (max-width: 480px) {
2368
+ margin: $tab-mob-even-boot-item-margin;
2369
+ }
2370
+
2371
+ .e-text-wrap {
2372
+ height: $tab-nrml-height;
2373
+ padding: $tab-even-active-text-container-padding;
2374
+
2375
+ @if $tab-skin == 'fabric' {
2376
+ height: $tab-nrml-height - 2;
2377
+ padding: 0;
2378
+ }
2379
+ @else if $tab-skin == 'highcontrast' {
2380
+ height: $tab-nrml-height - 4;
2381
+ padding: 0;
2382
+ }
2383
+ }
2384
+
2385
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
2386
+ .e-text-wrap::before,
2387
+ &:not(.e-separator):last-child .e-text-wrap::before {
2388
+ top: 0;
2389
+ }
2390
+
2391
+ &.e-itop {
2392
+
2393
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
2394
+ .e-tab-wrap:focus .e-close-icon::before {
2395
+ top: 0;
2396
+ }
2397
+
2398
+ .e-text-wrap {
2399
+ height: auto;
2400
+ }
2401
+ }
2402
+ }
2403
+ }
2404
+
2405
+ &.e-ileft {
2406
+
2407
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
2408
+ .e-tab-wrap .e-tab-text {
2409
+ align-self: auto;
2410
+ }
2411
+
2412
+ .e-tab-wrap:focus .e-tab-text {
2413
+ align-self: auto;
2414
+ }
2415
+ }
2416
+ }
2417
+ }
2418
+
2419
+ &.e-itop,
2420
+ &.e-ibottom {
2421
+
2422
+ .e-text-wrap {
2423
+ height: initial;
2424
+ }
2425
+
2426
+ &.e-active {
2427
+
2428
+ .e-text-wrap {
2429
+ height: initial;
2430
+ padding: 0;
2431
+ }
2432
+
2433
+ .e-text-wrap::before {
2434
+ bottom: auto;
2435
+ top: 0;
2436
+ }
2437
+ }
2438
+ }
2439
+ }
2440
+ }
2441
+
2442
+ &.e-reorder-active-item .e-toolbar-pop .e-toolbar-item.e-active .e-text-wrap::before {
2443
+ display: none;
2444
+ }
2445
+
2446
+ &.e-vertical {
2447
+ max-width: 150px;
2448
+ z-index: 1;
2449
+
2450
+ &::before {
2451
+ bottom: 0;
2452
+ height: 100%;
2453
+ left: 0;
2454
+ top: 0;
2455
+ }
2456
+
2457
+ &[style *= 'overflow: hidden']::before {
2458
+ bottom: $tab-nrml-vertical-scroll-nav-top-bottom;
2459
+ height: auto;
2460
+ top: $tab-nrml-vertical-scroll-nav-top-bottom;
2461
+
2462
+ @media screen and (max-width: 480px) {
2463
+ bottom: 0;
2464
+ top: 0;
2465
+ }
2466
+ }
2467
+
2468
+ .e-indicator {
2469
+ display: $tab-indicator-display;
2470
+ transition: top .125s cubic-bezier(.35, 0, .25, 1), bottom .25s cubic-bezier(.35, 0, .25, 1);
2471
+ width: 2px;
2472
+
2473
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
2474
+ transition: initial;
2475
+ }
2476
+ }
2477
+
2478
+ .e-toolbar-items {
2479
+ height: inherit;
2480
+
2481
+ &.e-vscroll:not(.e-scroll-device) {
2482
+ padding: $tab-vscroll-nrml-padding;
2483
+ }
2484
+ }
2485
+
2486
+ .e-toolbar-item {
2487
+
2488
+ &:last-child {
2489
+ margin: 0;
2490
+ }
2491
+
2492
+ &:not(.e-separator) {
2493
+ margin: 0;
2494
+ }
2495
+
2496
+ .e-tab-wrap {
2497
+ padding: $tab-nrml-v-wrap-padding;
2498
+ }
2499
+
2500
+ .e-text-wrap {
2501
+ position: relative;
2502
+ width: 100%;
2503
+ }
2504
+
2505
+ .e-tab-text,
2506
+ .e-tab-icon::before {
2507
+ text-align: center;
2508
+ width: 100%;
2509
+ }
2510
+
2511
+ .e-tab-text {
2512
+ overflow: hidden;
2513
+ text-overflow: ellipsis;
2514
+ white-space: nowrap;
2515
+ }
2516
+
2517
+ &.e-active {
2518
+
2519
+ .e-text-wrap::before {
2520
+ display: none;
2521
+ }
2522
+ }
2523
+
2524
+ &.e-ileft.e-icon {
2525
+
2526
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
2527
+ min-height: $tab-nrml-height;
2528
+ min-width: $tab-nrml-height;
2529
+
2530
+ .e-tab-icon {
2531
+ margin: auto;
2532
+ }
2533
+ }
2534
+ }
2535
+
2536
+ &.e-itop,
2537
+ &.e-ibottom {
2538
+
2539
+ .e-close-icon {
2540
+ right: $tab-v-nrml-close-icon-top-bottom-right;
2541
+ }
2542
+ }
2543
+ }
2544
+
2545
+ .e-toolbar-pop {
2546
+ top: initial !important; /* stylelint-disable-line declaration-no-important */
2547
+ }
2548
+
2549
+ &.e-vertical-left {
2550
+ float: left;
2551
+
2552
+ &::before {
2553
+ right: 0;
2554
+ }
2555
+
2556
+ .e-indicator {
2557
+ left: auto;
2558
+ right: 0;
2559
+ }
2560
+
2561
+ @if $tab-skin == 'FluentUI' {
2562
+ .e-toolbar-items .e-toolbar-item.e-active {
2563
+ position: relative;
2564
+
2565
+ &:hover::before {
2566
+ bottom: 0;
2567
+ height: 100%;
2568
+ }
2569
+
2570
+ &::before {
2571
+ background-color: $tab-alt-hdr-bg-color;
2572
+ bottom: 10px;
2573
+ content: '';
2574
+ height: 60%;
2575
+ left: 99%;
2576
+ position: absolute;
2577
+ right: 0;
2578
+ transition: bottom .267s cubic-bezier(.1, .25, .75, .9) 0s, height .267s cubic-bezier(.1, .25, .75, .9) 0s;
2579
+ width: 2px;
2580
+ }
2581
+
2582
+ &::after {
2583
+ color: transparent;
2584
+ content: attr(data-content);
2585
+ display: block;
2586
+ font-weight: bold;
2587
+ height: 1px;
2588
+ overflow: hidden;
2589
+ visibility: hidden;
2590
+ }
2591
+ }
2592
+ }
2593
+ }
2594
+
2595
+ &.e-vertical-right {
2596
+ float: right;
2597
+
2598
+ &::before {
2599
+ right: auto;
2600
+ }
2601
+
2602
+ .e-indicator {
2603
+ left: 0;
2604
+ right: auto;
2605
+ }
2606
+
2607
+ .e-tab-wrap {
2608
+ text-align: right;
2609
+ }
2610
+
2611
+ .e-toolbar-pop {
2612
+
2613
+ .e-tab-text {
2614
+ width: auto;
2615
+ }
2616
+ }
2617
+
2618
+ @if $tab-skin == 'FluentUI' {
2619
+ .e-toolbar-items .e-toolbar-item.e-active {
2620
+ position: relative;
2621
+
2622
+ &:hover::before {
2623
+ bottom: 0;
2624
+ height: 100%;
2625
+ }
2626
+
2627
+ &::before {
2628
+ background-color: $tab-alt-hdr-bg-color;
2629
+ bottom: 10px;
2630
+ content: '';
2631
+ height: 60%;
2632
+ left: 0;
2633
+ position: absolute;
2634
+ right: 99%;
2635
+ transition: bottom .267s cubic-bezier(.1, .25, .75, .9) 0s, height .267s cubic-bezier(.1, .25, .75, .9) 0s;
2636
+ width: 2px;
2637
+ }
2638
+
2639
+ &::after {
2640
+ color: transparent;
2641
+ content: attr(data-content);
2642
+ display: block;
2643
+ font-weight: bold;
2644
+ height: 1px;
2645
+ overflow: hidden;
2646
+ visibility: hidden;
2647
+ }
2648
+ }
2649
+ }
2650
+ }
2651
+
2652
+ .e-scroll-nav {
2653
+ height: $tab-nrml-vertical-nav-arrow-size;
2654
+ justify-content: center;
2655
+ min-height: $tab-nrml-vertical-nav-arrow-size;
2656
+ width: 100%;
2657
+
2658
+ .e-nav-arrow {
2659
+ font-size: $tab-nrml-vertical-nav-arrow-font-size;
2660
+ height: $tab-nrml-vertical-nav-arrow-size;
2661
+ line-height: $tab-nrml-vertical-nav-arrow-size;
2662
+ margin: 0 auto;
2663
+ width: $tab-nrml-vertical-nav-arrow-size;
2664
+ }
2665
+ }
2666
+
2667
+ .e-hor-nav {
2668
+ padding: $tab-nrml-wrap-padding;
2669
+ width: 100%;
2670
+
2671
+ .e-popup-up-icon,
2672
+ .e-popup-down-icon {
2673
+ height: 100%;
2674
+ transform: none;
2675
+ transition: none;
2676
+ width: 100%;
2677
+
2678
+ &::before {
2679
+ float: left;
2680
+ font-family: $tab-font-family;
2681
+ font-size: $tab-nrml-font-size;
2682
+ font-weight: $tab-font-weight;
2683
+ line-height: $tab-nrml-more-btn-line-height;
2684
+ text-align: left;
2685
+ text-transform: $tab-text-transform;
2686
+ transform: none;
2687
+ transition: none;
2688
+ }
2689
+
2690
+ &::after {
2691
+ float: left;
2692
+ font-size: 12px;
2693
+ line-height: $tab-nrml-more-btn-line-height;
2694
+ margin: $tab-pop-more-icon-margin;
2695
+ vertical-align: initial;
2696
+
2697
+ @media screen and (max-width: 480px) {
2698
+ font-size: $tab-big-font-size;
2699
+ }
2700
+ }
2701
+ }
2702
+ }
2703
+
2704
+ .e-scroll-device {
2705
+
2706
+ .e-scroll-nav,
2707
+ .e-scroll-overlay {
2708
+ display: none;
2709
+ }
2710
+ }
2711
+
2712
+ &.e-toolpop {
2713
+
2714
+ .e-toolbar-items {
2715
+ height: auto;
2716
+ }
2717
+ }
2718
+ }
2719
+ }
2720
+
2721
+ &.e-rtl {
2722
+
2723
+ .e-tab-header.e-vertical {
2724
+
2725
+ .e-toolbar-items:not(.e-tbar-pos) {
2726
+
2727
+ .e-toolbar-item:last-child {
2728
+ margin: 0;
2729
+ }
2730
+ }
2731
+
2732
+ .e-toolbar-item {
2733
+
2734
+ &:not(.e-separator) {
2735
+ margin: 0;
2736
+
2737
+ &.e-itop .e-close-icon,
2738
+ &.e-ibottom .e-close-icon {
2739
+ left: $tab-v-rtl-nrml-close-icon-top-bottom-left;
2740
+ }
2741
+ }
2742
+ }
2743
+
2744
+ .e-hor-nav {
2745
+ padding: $tab-nrml-wrap-padding;
2746
+
2747
+ .e-popup-up-icon,
2748
+ .e-popup-down-icon {
2749
+
2750
+ &::before {
2751
+ float: right;
2752
+ }
2753
+
2754
+ &::after {
2755
+ float: right;
2756
+ margin: $tab-rtl-pop-more-icon-margin;
2757
+ }
2758
+ }
2759
+ }
2760
+ }
2761
+ }
2762
+
2763
+ .e-content {
2764
+ position: relative;
2765
+
2766
+ .e-item {
2767
+
2768
+ &.e-view {
2769
+ bottom: 0;
2770
+ left: 0;
2771
+ overflow: hidden;
2772
+ position: absolute;
2773
+ right: 0;
2774
+ top: 0;
2775
+ }
2776
+ }
2777
+
2778
+ > .e-item {
2779
+ display: none;
2780
+
2781
+ &.e-active {
2782
+ background: inherit;
2783
+ display: block;
2784
+ }
2785
+ }
2786
+
2787
+ &.e-progress {
2788
+ overflow: hidden;
2789
+ }
2790
+ }
2791
+
2792
+ &.e-vertical-tab {
2793
+
2794
+ .e-content {
2795
+ display: flex;
2796
+
2797
+ .e-item.e-active {
2798
+ display: flex;
2799
+ flex: none;
2800
+ }
2801
+
2802
+ .e-item,
2803
+ .e-item > :first-child {
2804
+ width: 100%;
2805
+ }
2806
+ }
2807
+ }
2808
+
2809
+ &.e-vertical-icon {
2810
+
2811
+ .e-tab-header {
2812
+ height: $tab-nrml-tb-icon-height;
2813
+ min-height: $tab-nrml-tb-icon-height;
2814
+
2815
+ &.e-reorder-active-item .e-toolbar-pop {
2816
+
2817
+ .e-toolbar-item.e-active .e-tab-wrap::before,
2818
+ .e-toolbar-item:not(.e-separator):last-child.e-active .e-tab-wrap::before {
2819
+ display: none;
2820
+ }
2821
+ }
2822
+
2823
+ .e-toolbar-items {
2824
+ height: $tab-nrml-tb-icon-height;
2825
+ }
2826
+
2827
+ .e-toolbar-item.e-active,
2828
+ .e-toolbar-item:not(.e-separator):last-child.e-active {
2829
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
2830
+ .e-text-wrap {
2831
+ position: static;
2832
+
2833
+ &::before {
2834
+ content: none;
2835
+ }
2836
+ }
2837
+
2838
+ .e-tab-wrap::before {
2839
+ content: '';
2840
+ display: block;
2841
+ position: absolute;
2842
+ top: 96%;
2843
+ width: calc(100% - 16px);
2844
+
2845
+ @if $tab-skin == 'fabric' {
2846
+ border: 1px solid $theme-primary;
2847
+ }
2848
+ @else if $tab-skin == 'highcontrast' {
2849
+ border: 1px solid $selection-bg;
2850
+ }
2851
+ }
2852
+ }
2853
+ }
2854
+
2855
+ .e-scroll-nav {
2856
+ height: $tab-nrml-icon-top-bottom-item-height;
2857
+ }
2858
+
2859
+ .e-hor-nav {
2860
+ height: $tab-nrml-icon-top-bottom-item-height;
2861
+
2862
+ .e-popup-up-icon::before,
2863
+ .e-popup-down-icon::before {
2864
+
2865
+ @media screen and (max-width: 480px) {
2866
+ font-size: $tab-mob-nav-vicon-size;
2867
+ }
2868
+ }
2869
+ }
2870
+
2871
+ &.e-vertical {
2872
+
2873
+ .e-indicator {
2874
+
2875
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
2876
+ width: 3px;
2877
+ }
2878
+ }
2879
+
2880
+ .e-toolbar-item.e-active,
2881
+ .e-toolbar-item:not(.e-separator):last-child.e-active {
2882
+
2883
+ .e-tab-wrap::before {
2884
+ display: none;
2885
+ }
2886
+
2887
+ .e-text-wrap {
2888
+ position: relative;
2889
+ }
2890
+ }
2891
+
2892
+ .e-scroll-nav {
2893
+ height: $tab-nrml-vertical-nav-arrow-size;
2894
+ }
2895
+ }
2896
+
2897
+ &.e-horizontal-bottom {
2898
+
2899
+ .e-toolbar-item.e-active,
2900
+ .e-toolbar-item:not(.e-separator):last-child.e-active {
2901
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
2902
+ .e-tab-wrap::before {
2903
+ top: 0;
2904
+ }
2905
+ }
2906
+ }
2907
+ }
2908
+ }
2909
+
2910
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
2911
+ &.e-rtl .e-tab-header .e-toolbar-item.e-active {
2912
+ margin: 0 0 0 2px;
2913
+ }
2914
+ }
2915
+
2916
+ &.e-vertical-tab {
2917
+
2918
+ .e-tab-header.e-vertical .e-toolbar-items {
2919
+ height: inherit;
2920
+ }
2921
+ }
2922
+ }
2923
+
2924
+ &.e-focused {
2925
+
2926
+ .e-tab-header .e-toolbar-item {
2927
+
2928
+ .e-tab-wrap:focus {
2929
+ height: $tab-nrml-height;
2930
+
2931
+ .e-text-wrap {
2932
+ height: $tab-nrml-height;
2933
+
2934
+ @if $tab-skin == 'fabric' {
2935
+ height: $tab-nrml-height - 2;
2936
+ }
2937
+ @else if $tab-skin == 'highcontrast' {
2938
+ height: $tab-nrml-height - 4;
2939
+ }
2940
+ }
2941
+ }
2942
+
2943
+ &.e-itop,
2944
+ &.e-ibottom {
2945
+
2946
+ .e-tab-wrap:focus {
2947
+ height: $tab-nrml-icon-top-bottom-item-height;
2948
+ }
2949
+
2950
+ .e-tab-wrap:focus .e-text-wrap {
2951
+ height: auto;
2952
+ }
2953
+
2954
+ &.e-active .e-tab-wrap:focus .e-text-wrap {
2955
+ height: auto;
2956
+ }
2957
+ }
2958
+ }
2959
+
2960
+ .e-tab-header .e-toolbar-pop {
2961
+
2962
+ .e-toolbar-item {
2963
+
2964
+ .e-tab-wrap:focus {
2965
+ height: $tab-nrml-pop-item-height;
2966
+
2967
+ .e-text-wrap {
2968
+ height: $tab-nrml-pop-item-height;
2969
+
2970
+ @if $tab-skin == 'fabric' {
2971
+ height: $tab-nrml-pop-item-height - 2;
2972
+ }
2973
+ @else if $tab-skin == 'highcontrast' {
2974
+ height: $tab-nrml-pop-item-height - 4;
2975
+ }
2976
+ }
2977
+ }
2978
+
2979
+ &.e-itop .e-tab-wrap:focus,
2980
+ &.e-ibottom .e-tab-wrap:focus {
2981
+ height: $tab-nrml-height;
2982
+ }
2983
+ }
2984
+ }
2985
+
2986
+ .e-tab-header .e-horizontal-bottom {
2987
+
2988
+ .e-toolbar-item {
2989
+
2990
+ &.e-active {
2991
+
2992
+ .e-tab-wrap:focus .e-text-wrap {
2993
+ height: $tab-nrml-height;
2994
+ padding: 0;
2995
+
2996
+ @if $tab-skin == 'fabric' {
2997
+ height: $tab-nrml-height - 2;
2998
+ }
2999
+ @else if $tab-skin == 'highcontrast' {
3000
+ height: $tab-nrml-height - 4;
3001
+ }
3002
+ }
3003
+
3004
+ &.e-ileft {
3005
+
3006
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
3007
+ .e-tab-wrap:focus .e-tab-text {
3008
+ align-self: auto;
3009
+ }
3010
+ }
3011
+ }
3012
+ }
3013
+
3014
+ &.e-itop,
3015
+ &.e-ibottom {
3016
+
3017
+ .e-tab-wrap:focus .e-text-wrap {
3018
+ height: auto;
3019
+ }
3020
+
3021
+ &.e-active .e-tab-wrap:focus .e-text-wrap {
3022
+ height: auto;
3023
+ }
3024
+ }
3025
+ }
3026
+ }
3027
+ }
3028
+
3029
+ &.e-template .e-content {
3030
+
3031
+ > .e-item {
3032
+ display: none;
3033
+
3034
+ &.e-active {
3035
+ background: inherit;
3036
+ display: block;
3037
+ }
3038
+ }
3039
+ }
3040
+
3041
+ &.e-ie .e-tab-header {
3042
+
3043
+ .e-hor-nav.e-ie-align,
3044
+ .e-scroll-nav.e-ie-align {
3045
+ display: flex;
3046
+
3047
+ .e-popup-up-icon,
3048
+ .e-popup-down-icon {
3049
+ display: block;
3050
+ line-height: $tab-nrml-ie-pop-icon-line-height;
3051
+ }
3052
+
3053
+ .e-nav-left-arrow,
3054
+ .e-nav-right-arrow {
3055
+ display: block;
3056
+ line-height: $tab-nrml-ie-nav-icon-line-height;
3057
+ }
3058
+ }
3059
+
3060
+ .e-popup-up-icon,
3061
+ .e-popup-down-icon {
3062
+ transform: none;
3063
+ transition: none;
3064
+ }
3065
+
3066
+ .e-popup-up-icon::before {
3067
+ transform: $tab-pop-up-icon-transform;
3068
+ transition: $tab-pop-icon-transition;
3069
+
3070
+ @media screen and (max-width: 480px) {
3071
+ transform: none;
3072
+ transition: none;
3073
+ }
3074
+ }
3075
+
3076
+ .e-popup-down-icon::before {
3077
+ transform: $tab-pop-down-icon-transform;
3078
+ transition: $tab-pop-icon-transition;
3079
+
3080
+ @media screen and (max-width: 480px) {
3081
+ transform: none;
3082
+ transition: none;
3083
+ }
3084
+ }
3085
+ }
3086
+
3087
+ &.e-edge .e-tab-header {
3088
+
3089
+ .e-hor-nav.e-ie-align,
3090
+ .e-scroll-nav.e-ie-align {
3091
+ display: flex;
3092
+
3093
+ .e-popup-up-icon,
3094
+ .e-popup-down-icon {
3095
+ display: block;
3096
+ line-height: $tab-nrml-edge-pop-icon-line-height;
3097
+ position: relative;
3098
+ }
3099
+
3100
+ .e-nav-left-arrow,
3101
+ .e-nav-right-arrow {
3102
+ display: block;
3103
+ line-height: $tab-nrml-edge-nav-icon-line-height;
3104
+ position: relative;
3105
+ }
3106
+ }
3107
+
3108
+ .e-popup-up-icon {
3109
+ transform: $tab-pop-up-icon-transform;
3110
+ transition: $tab-pop-icon-transition;
3111
+
3112
+ @media screen and (max-width: 480px) {
3113
+ transform: none;
3114
+ transition: none;
3115
+ }
3116
+ }
3117
+
3118
+ .e-popup-down-icon {
3119
+ transform: $tab-pop-down-icon-transform;
3120
+ transition: $tab-pop-icon-transition;
3121
+
3122
+ @media screen and (max-width: 480px) {
3123
+ transform: none;
3124
+ transition: none;
3125
+
3126
+ @media screen and (max-width: 480px) {
3127
+ transform: none;
3128
+ transition: none;
3129
+ }
3130
+ }
3131
+ }
3132
+
3133
+ .e-popup-up-icon::before {
3134
+ transform: $tab-pop-up-icon-transform;
3135
+ transition: $tab-pop-icon-transition;
3136
+
3137
+ @media screen and (max-width: 480px) {
3138
+ transform: none;
3139
+ transition: none;
3140
+ }
3141
+ }
3142
+
3143
+ .e-popup-down-icon::before {
3144
+ transform: $tab-pop-down-icon-transform;
3145
+ transition: $tab-pop-icon-transition;
3146
+
3147
+ @media screen and (max-width: 480px) {
3148
+ transform: none;
3149
+ transition: none;
3150
+ }
3151
+ }
3152
+ }
3153
+
3154
+ &.e-safari .e-tab-header {
3155
+
3156
+ .e-close-icon::before {
3157
+ top: $tab-nrml-safari-close-icon-top;
3158
+ }
3159
+
3160
+ .e-hor-nav,
3161
+ .e-scroll-nav {
3162
+
3163
+ .e-popup-up-icon::before,
3164
+ .e-popup-down-icon::before {
3165
+ top: 0;
3166
+ }
3167
+
3168
+ .e-nav-left-arrow::before,
3169
+ .e-nav-right-arrow::before {
3170
+ top: 0;
3171
+ }
3172
+ }
3173
+ }
3174
+
3175
+ &.e-disable {
3176
+ pointer-events: none;
3177
+ }
3178
+
3179
+ &.e-fill {
3180
+
3181
+ .e-tab-header {
3182
+ height: $tab-nrml-fill-height;
3183
+ min-height: $tab-nrml-fill-height;
3184
+
3185
+ @media screen and (max-width: 480px) {
3186
+ height: $tab-mob-fill-height;
3187
+ min-height: $tab-mob-fill-height;
3188
+ }
3189
+
3190
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
3191
+ &::before {
3192
+ display: none;
3193
+ }
3194
+ }
3195
+
3196
+ .e-indicator {
3197
+ display: none;
3198
+ }
3199
+
3200
+ .e-toolbar-items {
3201
+ height: auto;
3202
+ min-height: $tab-nrml-fill-height;
3203
+
3204
+ @media screen and (max-width: 480px) {
3205
+ min-height: $tab-mob-fill-height;
3206
+ }
3207
+
3208
+ &:not(.e-tbar-pos) .e-toolbar-item:first-child,
3209
+ &:not(.e-tbar-pos) .e-toolbar-item:last-child {
3210
+ margin: $tab-nrml-alt-first-item-margin;
3211
+ padding: 0;
3212
+ @if $tab-skin == 'tailwind' {
3213
+ padding: 0 8px;
3214
+ }
3215
+ }
3216
+ }
3217
+
3218
+ .e-toolbar-item {
3219
+
3220
+ &:not(.e-separator) {
3221
+ height: $tab-nrml-fill-height;
3222
+ margin: $tab-alt-item-margin;
3223
+ min-height: $tab-nrml-fill-height;
3224
+
3225
+ @media screen and (max-width: 480px) {
3226
+ height: $tab-mob-fill-height;
3227
+ min-height: $tab-mob-fill-height;
3228
+ }
3229
+
3230
+ &.e-itop,
3231
+ &.e-ibottom {
3232
+ height: $tab-nrml-fill-icon-top-bottom-item-height;
3233
+ min-height: $tab-nrml-fill-icon-top-bottom-item-height;
3234
+ }
3235
+ }
3236
+
3237
+ .e-tab-wrap {
3238
+ height: $tab-nrml-fill-height;
3239
+ padding: $tab-fill-nrml-wrap-padding;
3240
+
3241
+ @media screen and (max-width: 480px) {
3242
+ height: $tab-mob-fill-height;
3243
+ padding: $tab-mob-fill-wrap-padding;
3244
+ }
3245
+ }
3246
+
3247
+ .e-text-wrap {
3248
+ height: $tab-nrml-fill-height;
3249
+
3250
+ @media screen and (max-width: 480px) {
3251
+ height: $tab-mob-fill-height;
3252
+ }
3253
+
3254
+ @if $tab-skin == 'fabric' {
3255
+ height: $tab-nrml-fill-height - 2;
3256
+ }
3257
+
3258
+ @if $tab-skin == 'highcontrast' {
3259
+ height: $tab-nrml-fill-height - 4;
3260
+ }
3261
+ }
3262
+
3263
+ &.e-active {
3264
+ padding: $tab-alt-nrml-active-item-padding;
3265
+
3266
+ .e-tab-wrap {
3267
+ margin-bottom: $tab-fill-nrml-active-item-wrap-margin-bottom;
3268
+ }
3269
+
3270
+ .e-text-wrap {
3271
+ height: $tab-nrml-fill-height;
3272
+
3273
+ @media screen and (max-width: 480px) {
3274
+ height: $tab-mob-fill-height;
3275
+ }
3276
+
3277
+ @if $tab-skin == 'fabric' {
3278
+ height: $tab-nrml-fill-height - 2;
3279
+ }
3280
+
3281
+ @if $tab-skin == 'highcontrast' {
3282
+ height: $tab-nrml-fill-height - 4;
3283
+ }
3284
+ }
3285
+
3286
+ .e-tab-text {
3287
+ font-weight: $tab-light-font-weight;
3288
+ }
3289
+
3290
+ &.e-ileft .e-text-wrap,
3291
+ &.e-iright .e-text-wrap {
3292
+ height: $tab-fill-nrml-active-it-text-container-height;
3293
+
3294
+ @media screen and (max-width: 480px) {
3295
+ height: $tab-fill-big-active-it-text-container-height;
3296
+ }
3297
+
3298
+ @if $tab-skin == 'fabric' {
3299
+ height: $tab-nrml-fill-height - 2;
3300
+ }
3301
+ @else if $tab-skin == 'highcontrast' {
3302
+ height: $tab-nrml-fill-height - 4;
3303
+ }
3304
+ }
3305
+ }
3306
+
3307
+ &.e-itop .e-tab-wrap,
3308
+ &.e-ibottom .e-tab-wrap {
3309
+ height: $tab-nrml-fill-icon-top-bottom-item-height;
3310
+ }
3311
+
3312
+ &.e-itop .e-text-wrap,
3313
+ &.e-ibottom .e-text-wrap {
3314
+ height: auto;
3315
+ }
3316
+ }
3317
+
3318
+ .e-toolbar-pop {
3319
+
3320
+ .e-toolbar-item.e-itop:not(.e-separator),
3321
+ .e-toolbar-item.e-ibottom:not(.e-separator) {
3322
+ height: auto;
3323
+ }
3324
+ }
3325
+
3326
+ &.e-horizontal-bottom {
3327
+
3328
+ .e-toolbar-items:not(.e-tbar-pos) {
3329
+
3330
+ .e-toolbar-item {
3331
+
3332
+ &:first-child.e-active,
3333
+ &:last-child.e-active {
3334
+ padding: 0;
3335
+ }
3336
+
3337
+ &.e-itop,
3338
+ &:first-child.e-itop,
3339
+ &:last-child.e-itop {
3340
+ padding-top: 0;
3341
+ }
3342
+ }
3343
+ }
3344
+
3345
+ .e-toolbar-item {
3346
+
3347
+ &.e-active {
3348
+ margin-right: 0;
3349
+ padding: 0;
3350
+
3351
+ .e-text-wrap {
3352
+ height: $tab-nrml-fill-height;
3353
+
3354
+ @media screen and (max-width: 480px) {
3355
+ height: $tab-mob-fill-height;
3356
+ }
3357
+
3358
+ @if $tab-skin == 'fabric' {
3359
+ height: $tab-nrml-fill-height - 2;
3360
+ }
3361
+
3362
+ @if $tab-skin == 'highcontrast' {
3363
+ height: $tab-nrml-fill-height - 4;
3364
+ }
3365
+ }
3366
+ }
3367
+
3368
+ &.e-itop,
3369
+ &.e-ibottom {
3370
+
3371
+ .e-tab-wrap:focus .e-text-wrap {
3372
+ height: $tab-nrml-fill-tb-wrap-height;
3373
+ }
3374
+
3375
+ .e-text-wrap {
3376
+ height: auto;
3377
+ }
3378
+ }
3379
+ }
3380
+ }
3381
+
3382
+ &.e-vertical {
3383
+
3384
+ .e-toolbar-items {
3385
+ height: inherit;
3386
+
3387
+ .e-toolbar-item {
3388
+
3389
+ .e-tab-wrap {
3390
+ padding: $tab-nrml-v-wrap-padding;
3391
+ }
3392
+ }
3393
+ }
3394
+ }
3395
+ }
3396
+
3397
+ &.e-focused {
3398
+
3399
+ .e-tab-header .e-toolbar-item {
3400
+
3401
+ .e-tab-wrap:focus {
3402
+ height: $tab-focus-nrml-fill-height;
3403
+
3404
+ .e-text-wrap {
3405
+ height: $tab-focus-nrml-fill-height;
3406
+
3407
+ @if $tab-skin == 'fabric' {
3408
+ height: $tab-nrml-fill-height - 2;
3409
+ }
3410
+
3411
+ @if $tab-skin == 'highcontrast' {
3412
+ height: $tab-nrml-fill-height - 4;
3413
+ }
3414
+ }
3415
+ }
3416
+
3417
+ &.e-active .e-tab-wrap:focus {
3418
+
3419
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
3420
+ .e-text-wrap {
3421
+ @if $tab-skin == 'fabric' {
3422
+ height: $tab-nrml-fill-height - 2;
3423
+ }
3424
+ @else if $tab-skin == 'highcontrast' {
3425
+ height: $tab-nrml-fill-height - 4;
3426
+ }
3427
+ }
3428
+
3429
+ .e-close-icon::before {
3430
+ top: 1px;
3431
+ }
3432
+ }
3433
+ }
3434
+
3435
+ &.e-itop .e-tab-wrap:focus,
3436
+ &.e-ibottom .e-tab-wrap:focus {
3437
+ height: $tab-nrml-focus-fill-icon-top-bottom-item-height;
3438
+
3439
+ .e-text-wrap {
3440
+ height: auto;
3441
+
3442
+ @media screen and (max-width: 480px) {
3443
+ height: auto;
3444
+ }
3445
+ }
3446
+ }
3447
+ }
3448
+ }
3449
+
3450
+ &.e-rtl {
3451
+
3452
+ .e-tab-header .e-toolbar-item:not(.e-separator) {
3453
+ margin: $tab-nrml-rtl-alt-item-margin;
3454
+ }
3455
+ }
3456
+
3457
+ &.e-vertical-icon {
3458
+
3459
+ .e-tab-header {
3460
+ height: $tab-nrml-tb-icon-height - 2;
3461
+ min-height: $tab-nrml-tb-icon-height - 2;
3462
+ }
3463
+ }
3464
+ }
3465
+
3466
+ &.e-background {
3467
+
3468
+ .e-tab-header {
3469
+
3470
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
3471
+ &::before {
3472
+ display: none;
3473
+ }
3474
+ }
3475
+
3476
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
3477
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
3478
+ margin: $tab-nrml-alt-first-item-margin;
3479
+ padding: 0;
3480
+ @if $tab-skin == 'tailwind' {
3481
+ padding: 0 8px;
3482
+ }
3483
+ }
3484
+
3485
+ .e-toolbar-item {
3486
+
3487
+ &:not(.e-separator) {
3488
+ margin: $tab-alt-item-margin;
3489
+ }
3490
+
3491
+ &:hover {
3492
+ @if $tab-skin == 'highcontrast' {
3493
+ &.e-itop .e-text-wrap,
3494
+ &.e-ibottom .e-text-wrap {
3495
+ height: auto;
3496
+ }
3497
+ }
3498
+ }
3499
+
3500
+ .e-tab-wrap {
3501
+ padding: $tab-bg-nrml-wrap-padding;
3502
+
3503
+ @media screen and (max-width: 480px) {
3504
+ padding: $tab-bg-big-wrap-padding;
3505
+ }
3506
+ }
3507
+
3508
+ &.e-active {
3509
+ padding: $tab-alt-nrml-active-item-padding;
3510
+
3511
+ .e-tab-wrap {
3512
+ margin-bottom: $tab-bg-nrml-active-item-wrap-margin-bottom;
3513
+ }
3514
+
3515
+ .e-text-wrap {
3516
+ height: $tab-nrml-height;
3517
+
3518
+ @if $tab-skin == 'fabric' {
3519
+ height: $tab-nrml-height - 2;
3520
+ }
3521
+
3522
+ @if $tab-skin == 'highcontrast' {
3523
+ height: $tab-nrml-height - 4;
3524
+ }
3525
+ }
3526
+
3527
+ .e-tab-text {
3528
+ font-weight: $tab-light-font-weight;
3529
+ }
3530
+ }
3531
+ }
3532
+
3533
+ &.e-vertical {
3534
+
3535
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
3536
+
3537
+ .e-indicator {
3538
+ display: none;
3539
+ }
3540
+ }
3541
+
3542
+ .e-toolbar-items {
3543
+
3544
+ .e-toolbar-item {
3545
+
3546
+ .e-tab-wrap {
3547
+ padding: $tab-nrml-v-wrap-padding;
3548
+ }
3549
+ }
3550
+ }
3551
+ }
3552
+
3553
+ &.e-horizontal-bottom {
3554
+
3555
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child.e-active,
3556
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child.e-active {
3557
+ padding: 0;
3558
+ }
3559
+
3560
+ .e-toolbar-item.e-active {
3561
+ margin: 0;
3562
+ padding: 0;
3563
+ }
3564
+ }
3565
+
3566
+ .e-toolbar-pop {
3567
+
3568
+ .e-toolbar-item {
3569
+
3570
+ &.e-active {
3571
+
3572
+ .e-text-wrap {
3573
+ height: $tab-nrml-pop-item-height;
3574
+
3575
+ @if $tab-skin == 'fabric' {
3576
+ height: $tab-nrml-pop-item-height - 2;
3577
+ }
3578
+ @else if $tab-skin == 'highcontrast' {
3579
+ height: $tab-nrml-pop-item-height - 4;
3580
+ }
3581
+ }
3582
+ }
3583
+ }
3584
+ }
3585
+ }
3586
+
3587
+ &.e-rtl {
3588
+
3589
+ .e-tab-header .e-toolbar-item {
3590
+
3591
+ &:not(.e-separator) {
3592
+ margin: $tab-nrml-rtl-alt-item-margin;
3593
+ }
3594
+ }
3595
+ }
3596
+ }
3597
+
3598
+ &.e-rtl {
3599
+
3600
+ .e-tab-header {
3601
+
3602
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:first-child,
3603
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child {
3604
+ margin: $tab-nrml-rtl-item-margin;
3605
+ }
3606
+
3607
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
3608
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:last-child.e-active {
3609
+ margin: $tab-nrml-rtl-item-margin;
3610
+ }
3611
+ }
3612
+
3613
+ .e-toolbar-item:not(.e-separator) {
3614
+ margin: $tab-nrml-rtl-item-margin;
3615
+
3616
+ @if $tab-skin == 'FluentUI' {
3617
+ .e-icon-right {
3618
+ margin: $tab-rtl-nrml-it-text-margin;
3619
+ }
3620
+ }
3621
+
3622
+ .e-icon-left + .e-tab-text {
3623
+ margin: $tab-rtl-nrml-it-text-margin;
3624
+ }
3625
+
3626
+ .e-icons.e-close-icon {
3627
+ margin: $tab-rtl-nrml-close-icon-margin;
3628
+ }
3629
+
3630
+ &.e-itop .e-close-icon,
3631
+ &.e-ibottom .e-close-icon {
3632
+ left: $tab-rtl-nrml-close-icon-top-bottom-left;
3633
+ right: auto;
3634
+ }
3635
+ }
3636
+
3637
+ &.e-close-show {
3638
+
3639
+ .e-toolbar-item.e-itop .e-text-wrap,
3640
+ .e-toolbar-item.e-ibottom .e-text-wrap {
3641
+ margin-left: $tab-rtl-nrml-text-container-margin-left;
3642
+ margin-right: $tab-rtl-nrml-text-container-margin-right;
3643
+ }
3644
+ }
3645
+
3646
+ @if $tab-skin == 'bootstrap' or $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
3647
+ &.e-horizontal-bottom {
3648
+
3649
+ .e-toolbar-items:not(.e-tbar-pos) .e-toolbar-item:not(.e-separator) {
3650
+ margin: 0 0 0 2px;
3651
+
3652
+ &.e-active {
3653
+ margin: 0 0 0 2px;
3654
+
3655
+ .e-tab-text {
3656
+ margin-bottom: 0;
3657
+ }
3658
+ }
3659
+ }
3660
+ }
3661
+ }
3662
+
3663
+ .e-toolbar-pop {
3664
+
3665
+ .e-toolbar-item {
3666
+ margin: 0;
3667
+
3668
+ .e-tab-text {
3669
+ padding-left: $tab-rtl-nrml-pop-text-padding-left;
3670
+ padding-right: 0;
3671
+
3672
+ @media screen and (max-width: 480px) {
3673
+ padding-left: 0;
3674
+ }
3675
+ }
3676
+
3677
+ .e-icons.e-close-icon {
3678
+ margin: $tab-rtl-nrml-pop-close-icon-margin;
3679
+ }
3680
+
3681
+ .e-close-icon {
3682
+ left: $tab-rtl-pop-close-icon-left;
3683
+ right: auto;
3684
+ }
3685
+
3686
+ &.e-itop .e-close-icon,
3687
+ &.e-ibottom .e-close-icon {
3688
+ left: $tab-rtl-big-pop-close-icon-top-bottom-left;
3689
+ right: auto;
3690
+ }
3691
+
3692
+ &.e-itop .e-tab-text,
3693
+ &.e-ibottom .e-tab-text {
3694
+ margin: 0;
3695
+ padding-left: 10px;
3696
+ padding-right: 0;
3697
+
3698
+ @media screen and (max-width: 480px) {
3699
+ margin: 0;
3700
+ padding-left: 10px;
3701
+ padding-right: 0;
3702
+ }
3703
+ }
3704
+ }
3705
+ }
3706
+
3707
+ .e-hor-nav,
3708
+ .e-scroll-right-nav {
3709
+ padding: $tab-rtl-nrml-nav-right-icon-padding;
3710
+ }
3711
+
3712
+ .e-scroll-left-nav {
3713
+ padding: $tab-rtl-nrml-nav-left-icon-padding;
3714
+ }
3715
+ }
3716
+ }
3717
+
3718
+ &.e-vertical-tab.e-icon-tab {
3719
+
3720
+ .e-tab-header.e-vertical {
3721
+
3722
+ .e-hor-nav .e-popup-up-icon,
3723
+ .e-hor-nav .e-popup-down-icon {
3724
+
3725
+ &::before {
3726
+ display: none;
3727
+ }
3728
+
3729
+ &::after {
3730
+ margin: 0;
3731
+ width: 100%;
3732
+ }
3733
+ }
3734
+ }
3735
+ }
3736
+ }
3737
+
3738
+ .e-tab-clone-element {
3739
+ overflow: visible;
3740
+ z-index: 10000;
3741
+
3742
+ &:not(.e-separator) {
3743
+ height: $tab-nrml-height;
3744
+ margin: $tab-nrml-item-margin;
3745
+ min-height: $tab-nrml-height;
3746
+ min-width: auto;
3747
+ padding: $tab-nrml-item-padding;
3748
+
3749
+ @media screen and (max-width: 480px) {
3750
+ height: $tab-big-height;
3751
+ min-height: $tab-big-height;
3752
+ }
3753
+ }
3754
+
3755
+ .e-tab-wrap {
3756
+ height: $tab-nrml-height;
3757
+ padding: $tab-nrml-wrap-padding;
3758
+ width: 100%;
3759
+
3760
+ @media screen and (max-width: 480px) {
3761
+ height: $tab-big-height;
3762
+ padding: $tab-mob-wrap-padding;
3763
+ }
3764
+ }
3765
+
3766
+ .e-text-wrap {
3767
+ align-content: center;
3768
+ align-items: center;
3769
+ display: inline-flex;
3770
+ height: $tab-nrml-height;
3771
+
3772
+ @media screen and (max-width: 480px) {
3773
+ height: $tab-big-height;
3774
+ }
3775
+
3776
+ @if $tab-skin == 'fabric' {
3777
+ height: $tab-nrml-height - 2;
3778
+ }
3779
+ @else if $tab-skin == 'highcontrast' {
3780
+ height: $tab-nrml-height - 4;
3781
+ }
3782
+ }
3783
+
3784
+ .e-tab-text {
3785
+ display: inherit;
3786
+ font-family: $tab-font-family;
3787
+ font-size: $tab-nrml-font-size;
3788
+ font-weight: $tab-font-weight;
3789
+ text-transform: $tab-text-transform;
3790
+
3791
+ @media screen and (max-width: 480px) {
3792
+ font-size: $tab-big-font-size;
3793
+ }
3794
+ }
3795
+
3796
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
3797
+ .e-tab-text {
3798
+ align-self: auto;
3799
+ }
3800
+ }
3801
+
3802
+ .e-icons.e-close-icon {
3803
+ display: none;
3804
+ }
3805
+
3806
+ .e-close-icon,
3807
+ .e-close-icon::before {
3808
+ font-size: $tab-nrml-close-icon-size;
3809
+
3810
+ @media screen and (max-width: 480px) {
3811
+ font-size: $tab-mob-close-icon-size;
3812
+ }
3813
+ }
3814
+
3815
+ .e-close-icon::before {
3816
+ top: $tab-pop-close-icon-top;
3817
+
3818
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
3819
+ top: 1px;
3820
+ }
3821
+ }
3822
+
3823
+ .e-icons.e-tab-icon {
3824
+ display: inline-flex;
3825
+ height: $tab-nrml-icon-container-size;
3826
+ min-width: $tab-nrml-icon-container-size;
3827
+ width: $tab-nrml-icon-container-size;
3828
+
3829
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
3830
+ line-height: $tab-nrml-icon-container-size;
3831
+ }
3832
+
3833
+ @media screen and (max-width: 480px) {
3834
+ height: $tab-mob-icon-container-size;
3835
+ width: $tab-mob-icon-container-size;
3836
+ }
3837
+ }
3838
+
3839
+ .e-tab-icon,
3840
+ .e-tab-icon::before {
3841
+ font-size: $tab-nrml-icon-size;
3842
+
3843
+ @media screen and (max-width: 480px) {
3844
+ font-size: $tab-mob-icon-size;
3845
+ }
3846
+ }
3847
+
3848
+ &.e-icon {
3849
+
3850
+ .e-tab-wrap {
3851
+ justify-content: center;
3852
+ padding: $tab-nrml-io-wrap-padding;
3853
+
3854
+ @media screen and (max-width: 480px) {
3855
+ padding: $tab-big-wrap-padding;
3856
+ }
3857
+ }
3858
+ }
3859
+
3860
+ @if $tab-skin == 'FluentUI' {
3861
+ .e-icon-right {
3862
+ margin: $tab-nrml-it-text-margin;
3863
+
3864
+ @media screen and (max-width: 480px) {
3865
+ margin: $tab-mob-it-text-margin;
3866
+ }
3867
+ }
3868
+ }
3869
+
3870
+ .e-icon-left + .e-tab-text {
3871
+ margin: $tab-nrml-it-text-margin;
3872
+
3873
+ @media screen and (max-width: 480px) {
3874
+ margin: $tab-mob-it-text-margin;
3875
+ }
3876
+ }
3877
+
3878
+ &.e-itop,
3879
+ &.e-ibottom {
3880
+ height: $tab-nrml-icon-top-bottom-item-height;
3881
+
3882
+ @media screen and (max-width: 480px) {
3883
+ height: $tab-big-icon-top-bottom-item-height;
3884
+ }
3885
+
3886
+ .e-tab-wrap {
3887
+ align-items: center;
3888
+ display: flex;
3889
+ height: $tab-nrml-icon-top-bottom-item-height;
3890
+ position: relative;
3891
+
3892
+ @media screen and (max-width: 480px) {
3893
+ height: $tab-big-icon-top-bottom-item-height;
3894
+ }
3895
+
3896
+ &:focus {
3897
+
3898
+ .e-text-wrap {
3899
+ height: auto;
3900
+ }
3901
+ }
3902
+ }
3903
+
3904
+ .e-text-wrap {
3905
+ display: block;
3906
+ height: auto;
3907
+ }
3908
+
3909
+ .e-close-icon {
3910
+ position: absolute;
3911
+ right: $tab-nrml-close-icon-top-bottom-right;
3912
+ top: calc(50% - 6px);
3913
+
3914
+ @media screen and (max-width: 480px) {
3915
+ right: $tab-mob-close-icon-top-bottom-right;
3916
+ }
3917
+ }
3918
+ }
3919
+
3920
+ &.e-itop .e-tab-text {
3921
+ margin: $tab-nrml-icon-top-margin;
3922
+
3923
+ @media screen and (max-width: 480px) {
3924
+ margin: $tab-big-icon-top-margin;
3925
+ }
3926
+ }
3927
+
3928
+ &.e-ibottom .e-tab-text {
3929
+ margin: $tab-nrml-icon-bottom-margin;
3930
+
3931
+ @media screen and (max-width: 480px) {
3932
+ margin: $tab-big-icon-bottom-margin;
3933
+ }
3934
+ }
3935
+
3936
+ .e-tab-icon.e-icon-top,
3937
+ .e-tab-icon.e-icon-bottom {
3938
+ align-items: center;
3939
+ display: flex;
3940
+ flex-direction: column;
3941
+ justify-content: center;
3942
+ margin: auto;
3943
+ }
3944
+
3945
+ &.e-close-show {
3946
+
3947
+ .e-icons.e-close-icon {
3948
+ align-items: center;
3949
+ align-self: center;
3950
+ display: inline-flex;
3951
+
3952
+ @media screen and (max-width: 480px) {
3953
+ display: none;
3954
+ }
3955
+ }
3956
+
3957
+ .e-toolbar-item.e-itop .e-text-wrap,
3958
+ .e-toolbar-item.e-ibottom .e-text-wrap {
3959
+ margin-right: $tab-nrml-text-container-margin-right;
3960
+ }
3961
+ }
3962
+ }
3963
+
3964
+ .e-bigger .e-tab-clone-element {
3965
+
3966
+ &:not(.e-separator) {
3967
+ height: $tab-big-height;
3968
+ margin: $tab-big-item-margin;
3969
+ min-height: $tab-big-height;
3970
+ min-width: auto;
3971
+ padding: $tab-big-item-padding;
3972
+
3973
+ @media screen and (max-width: 480px) {
3974
+ margin: $tab-nrml-item-margin;
3975
+ }
3976
+ }
3977
+
3978
+ &:not(.e-separator).e-itop,
3979
+ &:not(.e-separator).e-ibottom {
3980
+ height: $tab-big-icon-top-bottom-item-height;
3981
+ min-height: $tab-big-icon-top-bottom-item-height;
3982
+ }
3983
+
3984
+ .e-tab-wrap {
3985
+ height: $tab-big-height;
3986
+ padding: $tab-big-wrap-padding;
3987
+
3988
+ @media screen and (max-width: 480px) {
3989
+ padding: $tab-mob-wrap-padding;
3990
+ }
3991
+ }
3992
+
3993
+ .e-text-wrap {
3994
+ height: $tab-big-height;
3995
+
3996
+ @if $tab-skin == 'fabric' {
3997
+ height: $tab-big-height - 2;
3998
+ }
3999
+ @else if $tab-skin == 'highcontrast' {
4000
+ height: $tab-big-height - 4;
4001
+ }
4002
+ }
4003
+
4004
+ .e-tab-text {
4005
+ font-size: $tab-big-font-size;
4006
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
4007
+ align-self: auto;
4008
+ }
4009
+ }
4010
+
4011
+ .e-icons.e-close-icon {
4012
+ cursor: pointer;
4013
+ margin: $tab-big-close-icon-margin;
4014
+
4015
+ @media screen and (max-width: 480px) {
4016
+ margin: $tab-mob-close-icon-margin;
4017
+ }
4018
+ }
4019
+
4020
+ .e-icons.e-close-icon,
4021
+ .e-close-icon::before {
4022
+ font-size: $tab-big-close-icon-size;
4023
+
4024
+ @media screen and (max-width: 480px) {
4025
+ font-size: $tab-mob-close-icon-size;
4026
+ }
4027
+ }
4028
+
4029
+ .e-icons.e-tab-icon {
4030
+ height: $tab-big-icon-container-size;
4031
+ min-width: $tab-big-icon-container-size;
4032
+ width: $tab-big-icon-container-size;
4033
+
4034
+ @if $tab-skin == 'bootstrap4' or $tbar-skin == 'bootstrap5' {
4035
+ line-height: $tab-big-icon-container-size;
4036
+ }
4037
+ }
4038
+
4039
+ .e-tab-icon,
4040
+ .e-tab-icon::before {
4041
+ font-size: $tab-big-icon-size;
4042
+ }
4043
+
4044
+ &.e-icon {
4045
+
4046
+ .e-tab-wrap {
4047
+ padding: $tab-big-io-wrap-padding;
4048
+ }
4049
+ }
4050
+
4051
+ @if $tab-skin == 'FluentUI' {
4052
+ .e-icon-right {
4053
+ margin: $tab-big-it-text-margin;
4054
+
4055
+ @media screen and (max-width: 480px) {
4056
+ margin: $tab-mob-it-text-margin;
4057
+ }
4058
+ }
4059
+ }
4060
+
4061
+ .e-icon-left + .e-tab-text {
4062
+ margin: $tab-big-it-text-margin;
4063
+
4064
+ @media screen and (max-width: 480px) {
4065
+ margin: $tab-mob-it-text-margin;
4066
+ }
4067
+ }
4068
+
4069
+ &.e-itop,
4070
+ &.e-ibottom {
4071
+ height: $tab-big-icon-top-bottom-item-height;
4072
+
4073
+ .e-tab-wrap {
4074
+ height: $tab-big-icon-top-bottom-item-height;
4075
+
4076
+ &:focus .e-text-wrap {
4077
+ height: auto;
4078
+ }
4079
+ }
4080
+
4081
+ &.e-active .e-tab-wrap {
4082
+ height: $tab-big-icon-top-bottom-item-height;
4083
+
4084
+ &:focus .e-text-wrap {
4085
+ height: auto;
4086
+ }
4087
+ }
4088
+
4089
+ .e-close-icon {
4090
+ right: $tab-big-close-icon-top-bottom-right;
4091
+ }
4092
+
4093
+ @if $tab-skin == 'fabric' or $tab-skin == 'highcontrast' {
4094
+
4095
+ .e-text-wrap {
4096
+ height: auto;
4097
+ }
4098
+
4099
+ &.e-active .e-tab-wrap {
4100
+ height: 72px;
4101
+ }
4102
+ }
4103
+ }
4104
+
4105
+ &.e-itop .e-tab-text {
4106
+ margin: $tab-big-icon-top-margin;
4107
+ }
4108
+
4109
+ &.e-ibottom .e-tab-text {
4110
+ margin: $tab-big-icon-bottom-margin;
4111
+ }
4112
+ }
4113
+ }