@syncfusion/ej2-angular-navigations 20.1.60 → 20.2.36

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