@syncfusion/ej2-navigations 16.4.45 → 16.4.52-46585

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 (910) hide show
  1. package/.eslintrc.json +259 -0
  2. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
  3. package/.github/PULL_REQUEST_TEMPLATE/feature.md +39 -0
  4. package/CHANGELOG.md +1421 -0
  5. package/README.md +226 -112
  6. package/appbar.d.ts +4 -0
  7. package/appbar.js +4 -0
  8. package/breadcrumb.d.ts +4 -0
  9. package/breadcrumb.js +4 -0
  10. package/carousel.d.ts +4 -0
  11. package/carousel.js +4 -0
  12. package/dist/ej2-navigations.min.js +1 -0
  13. package/dist/ej2-navigations.umd.min.js +1 -10
  14. package/dist/ej2-navigations.umd.min.js.map +1 -1
  15. package/dist/es6/ej2-navigations.es2015.js +8469 -2261
  16. package/dist/es6/ej2-navigations.es2015.js.map +1 -1
  17. package/dist/es6/ej2-navigations.es5.js +8157 -1833
  18. package/dist/es6/ej2-navigations.es5.js.map +1 -1
  19. package/dist/global/ej2-navigations.min.js +1 -10
  20. package/dist/global/ej2-navigations.min.js.map +1 -1
  21. package/dist/global/index.d.ts +0 -9
  22. package/helpers/e2e/accordionHelper.d.ts +56 -0
  23. package/helpers/e2e/accordionHelper.js +71 -0
  24. package/helpers/e2e/contextmenuHelper.d.ts +37 -0
  25. package/helpers/e2e/contextmenuHelper.js +53 -0
  26. package/helpers/e2e/index.d.ts +7 -0
  27. package/helpers/e2e/index.js +14 -0
  28. package/helpers/e2e/menuHelper.d.ts +37 -0
  29. package/helpers/e2e/menuHelper.js +53 -0
  30. package/helpers/e2e/sidebarHelper.d.ts +94 -0
  31. package/helpers/e2e/sidebarHelper.js +110 -0
  32. package/helpers/e2e/tabHelper.d.ts +60 -0
  33. package/helpers/e2e/tabHelper.js +74 -0
  34. package/helpers/e2e/toolbarHelper.d.ts +60 -0
  35. package/helpers/e2e/toolbarHelper.js +74 -0
  36. package/helpers/e2e/treeview.d.ts +50 -0
  37. package/helpers/e2e/treeview.js +80 -0
  38. package/package.json +105 -105
  39. package/src/accordion/accordion-model.d.ts +122 -45
  40. package/src/accordion/accordion.d.ts +169 -48
  41. package/src/accordion/accordion.js +530 -230
  42. package/src/appbar/appbar-model.d.ts +76 -0
  43. package/src/appbar/appbar.d.ts +115 -0
  44. package/src/appbar/appbar.js +220 -0
  45. package/src/appbar/index.d.ts +3 -0
  46. package/src/appbar/index.js +2 -0
  47. package/src/breadcrumb/breadcrumb-model.d.ts +161 -0
  48. package/src/breadcrumb/breadcrumb.d.ts +285 -0
  49. package/src/breadcrumb/breadcrumb.js +789 -0
  50. package/src/breadcrumb/index.d.ts +5 -0
  51. package/src/breadcrumb/index.js +4 -0
  52. package/src/carousel/carousel-model.d.ts +223 -0
  53. package/src/carousel/carousel.d.ts +344 -0
  54. package/src/carousel/carousel.js +1100 -0
  55. package/src/carousel/index.d.ts +3 -0
  56. package/src/carousel/index.js +2 -0
  57. package/src/common/h-scroll-model.d.ts +1 -0
  58. package/src/common/h-scroll.d.ts +21 -10
  59. package/src/common/h-scroll.js +58 -36
  60. package/src/common/index.d.ts +2 -0
  61. package/src/common/index.js +2 -0
  62. package/src/common/menu-base-model.d.ts +77 -22
  63. package/src/common/menu-base.d.ts +192 -41
  64. package/src/common/menu-base.js +1104 -366
  65. package/src/common/menu-scroll.d.ts +29 -0
  66. package/src/common/menu-scroll.js +103 -0
  67. package/src/common/v-scroll-model.d.ts +1 -0
  68. package/src/common/v-scroll.d.ts +20 -9
  69. package/src/common/v-scroll.js +47 -20
  70. package/src/context-menu/context-menu-model.d.ts +7 -3
  71. package/src/context-menu/context-menu.d.ts +25 -10
  72. package/src/context-menu/context-menu.js +27 -15
  73. package/src/index.d.ts +3 -0
  74. package/src/index.js +3 -0
  75. package/src/menu/menu-model.d.ts +34 -1
  76. package/src/menu/menu.d.ts +60 -6
  77. package/src/menu/menu.js +144 -18
  78. package/src/sidebar/sidebar-model.d.ts +54 -25
  79. package/src/sidebar/sidebar.d.ts +117 -22
  80. package/src/sidebar/sidebar.js +250 -120
  81. package/src/tab/tab-model.d.ts +156 -37
  82. package/src/tab/tab.d.ts +286 -61
  83. package/src/tab/tab.js +1136 -331
  84. package/src/toolbar/toolbar-model.d.ts +110 -29
  85. package/src/toolbar/toolbar.d.ts +185 -55
  86. package/src/toolbar/toolbar.js +595 -234
  87. package/src/treeview/treeview-model.d.ts +269 -83
  88. package/src/treeview/treeview.d.ts +497 -74
  89. package/src/treeview/treeview.js +2006 -409
  90. package/styles/accordion/_all.scss +0 -1
  91. package/styles/accordion/_bootstrap-dark-definition.scss +171 -67
  92. package/styles/accordion/_bootstrap-definition.scss +115 -11
  93. package/styles/accordion/_bootstrap4-definition.scss +182 -0
  94. package/styles/accordion/_bootstrap5-dark-definition.scss +1 -0
  95. package/styles/accordion/_bootstrap5-definition.scss +180 -0
  96. package/styles/accordion/_fabric-dark-definition.scss +171 -69
  97. package/styles/accordion/_fabric-definition.scss +119 -15
  98. package/styles/accordion/_fluent-dark-definition.scss +1 -0
  99. package/styles/accordion/_fluent-definition.scss +179 -0
  100. package/styles/accordion/_fusionnew-definition.scss +180 -0
  101. package/styles/accordion/_highcontrast-definition.scss +122 -23
  102. package/styles/accordion/_highcontrast-light-definition.scss +192 -95
  103. package/styles/accordion/_layout.scss +100 -162
  104. package/styles/accordion/_material-dark-definition.scss +173 -70
  105. package/styles/accordion/_material-definition.scss +115 -11
  106. package/styles/accordion/_tailwind-dark-definition.scss +1 -0
  107. package/styles/accordion/_tailwind-definition.scss +178 -0
  108. package/styles/accordion/_theme.scss +219 -224
  109. package/styles/accordion/bootstrap-dark.css +267 -181
  110. package/styles/accordion/bootstrap-dark.scss +1 -0
  111. package/styles/accordion/bootstrap.css +258 -172
  112. package/styles/accordion/bootstrap.scss +1 -0
  113. package/styles/accordion/bootstrap4.css +525 -0
  114. package/styles/accordion/bootstrap4.scss +4 -0
  115. package/styles/accordion/bootstrap5-dark.css +527 -0
  116. package/styles/accordion/bootstrap5-dark.scss +4 -0
  117. package/styles/accordion/bootstrap5.css +527 -0
  118. package/styles/accordion/bootstrap5.scss +4 -0
  119. package/styles/accordion/fabric-dark.css +266 -164
  120. package/styles/accordion/fabric-dark.scss +1 -0
  121. package/styles/accordion/fabric.css +266 -164
  122. package/styles/accordion/fabric.scss +1 -0
  123. package/styles/accordion/fluent-dark.css +526 -0
  124. package/styles/accordion/fluent-dark.scss +4 -0
  125. package/styles/accordion/fluent.css +526 -0
  126. package/styles/accordion/fluent.scss +4 -0
  127. package/styles/accordion/highcontrast-light.css +525 -0
  128. package/styles/accordion/highcontrast-light.scss +4 -0
  129. package/styles/accordion/highcontrast.css +243 -232
  130. package/styles/accordion/highcontrast.scss +1 -0
  131. package/styles/accordion/{_icons.scss → icons/_bootstrap-dark.scss} +3 -3
  132. package/styles/accordion/icons/_bootstrap.scss +17 -0
  133. package/styles/accordion/icons/_bootstrap4.scss +17 -0
  134. package/styles/accordion/icons/_bootstrap5-dark.scss +1 -0
  135. package/styles/accordion/icons/_bootstrap5.scss +17 -0
  136. package/styles/accordion/icons/_fabric-dark.scss +17 -0
  137. package/styles/accordion/icons/_fabric.scss +17 -0
  138. package/styles/accordion/icons/_fluent-dark.scss +1 -0
  139. package/styles/accordion/icons/_fluent.scss +17 -0
  140. package/styles/accordion/icons/_fusionnew.scss +17 -0
  141. package/styles/accordion/icons/_highcontrast-light.scss +17 -0
  142. package/styles/accordion/icons/_highcontrast.scss +17 -0
  143. package/styles/accordion/icons/_material-dark.scss +17 -0
  144. package/styles/accordion/icons/_material.scss +17 -0
  145. package/styles/accordion/icons/_material3.scss +17 -0
  146. package/styles/accordion/icons/_tailwind-dark.scss +1 -0
  147. package/styles/accordion/icons/_tailwind.scss +17 -0
  148. package/styles/accordion/material-dark.css +268 -173
  149. package/styles/accordion/material-dark.scss +1 -0
  150. package/styles/accordion/material.css +264 -169
  151. package/styles/accordion/material.scss +1 -0
  152. package/styles/accordion/tailwind-dark.css +527 -0
  153. package/styles/accordion/tailwind-dark.scss +4 -0
  154. package/styles/accordion/tailwind.css +527 -0
  155. package/styles/accordion/tailwind.scss +4 -0
  156. package/styles/appbar/_all.scss +2 -0
  157. package/styles/appbar/_bootstrap-dark-definition.scss +8 -0
  158. package/styles/appbar/_bootstrap-definition.scss +8 -0
  159. package/styles/appbar/_bootstrap4-definition.scss +8 -0
  160. package/styles/appbar/_bootstrap5-dark-definition.scss +1 -0
  161. package/styles/appbar/_bootstrap5-definition.scss +8 -0
  162. package/styles/appbar/_fabric-dark-definition.scss +8 -0
  163. package/styles/appbar/_fabric-definition.scss +8 -0
  164. package/styles/appbar/_fluent-dark-definition.scss +1 -0
  165. package/styles/appbar/_fluent-definition.scss +8 -0
  166. package/styles/appbar/_fusionnew-definition.scss +8 -0
  167. package/styles/appbar/_highcontrast-definition.scss +8 -0
  168. package/styles/appbar/_highcontrast-light-definition.scss +8 -0
  169. package/styles/appbar/_layout.scss +84 -0
  170. package/styles/appbar/_material-dark-definition.scss +8 -0
  171. package/styles/appbar/_material-definition.scss +8 -0
  172. package/styles/appbar/_tailwind-dark-definition.scss +1 -0
  173. package/styles/appbar/_tailwind-definition.scss +8 -0
  174. package/styles/appbar/_theme.scss +208 -0
  175. package/styles/appbar/bootstrap-dark.css +247 -0
  176. package/styles/appbar/bootstrap-dark.scss +3 -0
  177. package/styles/appbar/bootstrap.css +247 -0
  178. package/styles/appbar/bootstrap.scss +3 -0
  179. package/styles/appbar/bootstrap4.css +247 -0
  180. package/styles/appbar/bootstrap4.scss +3 -0
  181. package/styles/appbar/bootstrap5-dark.css +247 -0
  182. package/styles/appbar/bootstrap5-dark.scss +3 -0
  183. package/styles/appbar/bootstrap5.css +247 -0
  184. package/styles/appbar/bootstrap5.scss +3 -0
  185. package/styles/appbar/fabric-dark.css +247 -0
  186. package/styles/appbar/fabric-dark.scss +3 -0
  187. package/styles/appbar/fabric.css +247 -0
  188. package/styles/appbar/fabric.scss +3 -0
  189. package/styles/appbar/fluent-dark.css +247 -0
  190. package/styles/appbar/fluent-dark.scss +3 -0
  191. package/styles/appbar/fluent.css +247 -0
  192. package/styles/appbar/fluent.scss +3 -0
  193. package/styles/appbar/highcontrast-light.css +247 -0
  194. package/styles/appbar/highcontrast-light.scss +3 -0
  195. package/styles/appbar/highcontrast.css +247 -0
  196. package/styles/appbar/highcontrast.scss +3 -0
  197. package/styles/appbar/material-dark.css +248 -0
  198. package/styles/appbar/material-dark.scss +3 -0
  199. package/styles/appbar/material.css +248 -0
  200. package/styles/appbar/material.scss +3 -0
  201. package/styles/appbar/tailwind-dark.css +248 -0
  202. package/styles/appbar/tailwind-dark.scss +3 -0
  203. package/styles/appbar/tailwind.css +248 -0
  204. package/styles/appbar/tailwind.scss +3 -0
  205. package/styles/bootstrap-dark.css +5503 -3478
  206. package/styles/bootstrap-dark.scss +4 -0
  207. package/styles/bootstrap.css +5420 -3550
  208. package/styles/bootstrap.scss +4 -0
  209. package/styles/bootstrap4.css +10166 -0
  210. package/styles/bootstrap4.scss +13 -0
  211. package/styles/bootstrap5-dark.css +10207 -0
  212. package/styles/bootstrap5-dark.scss +13 -0
  213. package/styles/bootstrap5.css +10207 -0
  214. package/styles/bootstrap5.scss +13 -0
  215. package/styles/breadcrumb/_all.scss +3 -0
  216. package/styles/breadcrumb/_bootstrap-dark-definition.scss +54 -0
  217. package/styles/breadcrumb/_bootstrap-definition.scss +54 -0
  218. package/styles/breadcrumb/_bootstrap4-definition.scss +54 -0
  219. package/styles/breadcrumb/_bootstrap5-dark-definition.scss +1 -0
  220. package/styles/breadcrumb/_bootstrap5-definition.scss +59 -0
  221. package/styles/breadcrumb/_fabric-dark-definition.scss +59 -0
  222. package/styles/breadcrumb/_fabric-definition.scss +59 -0
  223. package/styles/breadcrumb/_fluent-dark-definition.scss +1 -0
  224. package/styles/breadcrumb/_fluent-definition.scss +62 -0
  225. package/styles/breadcrumb/_fusionnew-definition.scss +59 -0
  226. package/styles/breadcrumb/_highcontrast-definition.scss +61 -0
  227. package/styles/breadcrumb/_highcontrast-light-definition.scss +61 -0
  228. package/styles/breadcrumb/_layout.scss +491 -0
  229. package/styles/breadcrumb/_material-dark-definition.scss +50 -0
  230. package/styles/breadcrumb/_material-definition.scss +50 -0
  231. package/styles/breadcrumb/_tailwind-dark-definition.scss +1 -0
  232. package/styles/breadcrumb/_tailwind-definition.scss +60 -0
  233. package/styles/breadcrumb/_theme.scss +176 -0
  234. package/styles/breadcrumb/bootstrap-dark.css +395 -0
  235. package/styles/breadcrumb/bootstrap-dark.scss +4 -0
  236. package/styles/breadcrumb/bootstrap.css +395 -0
  237. package/styles/breadcrumb/bootstrap.scss +4 -0
  238. package/styles/breadcrumb/bootstrap4.css +395 -0
  239. package/styles/breadcrumb/bootstrap4.scss +4 -0
  240. package/styles/breadcrumb/bootstrap5-dark.css +409 -0
  241. package/styles/breadcrumb/bootstrap5-dark.scss +4 -0
  242. package/styles/breadcrumb/bootstrap5.css +409 -0
  243. package/styles/breadcrumb/bootstrap5.scss +4 -0
  244. package/styles/breadcrumb/fabric-dark.css +395 -0
  245. package/styles/breadcrumb/fabric-dark.scss +4 -0
  246. package/styles/breadcrumb/fabric.css +395 -0
  247. package/styles/breadcrumb/fabric.scss +4 -0
  248. package/styles/breadcrumb/fluent-dark.css +371 -0
  249. package/styles/breadcrumb/fluent-dark.scss +4 -0
  250. package/styles/breadcrumb/fluent.css +371 -0
  251. package/styles/breadcrumb/fluent.scss +4 -0
  252. package/styles/breadcrumb/highcontrast-light.css +402 -0
  253. package/styles/breadcrumb/highcontrast-light.scss +4 -0
  254. package/styles/breadcrumb/highcontrast.css +402 -0
  255. package/styles/breadcrumb/highcontrast.scss +4 -0
  256. package/styles/breadcrumb/icons/_bootstrap-dark.scss +14 -0
  257. package/styles/breadcrumb/icons/_bootstrap.scss +14 -0
  258. package/styles/breadcrumb/icons/_bootstrap4.scss +14 -0
  259. package/styles/breadcrumb/icons/_bootstrap5-dark.scss +1 -0
  260. package/styles/breadcrumb/icons/_bootstrap5.scss +25 -0
  261. package/styles/breadcrumb/icons/_fabric-dark.scss +14 -0
  262. package/styles/breadcrumb/icons/_fabric.scss +14 -0
  263. package/styles/breadcrumb/icons/_fluent-dark.scss +1 -0
  264. package/styles/breadcrumb/icons/_fluent.scss +25 -0
  265. package/styles/breadcrumb/icons/_fusionnew.scss +25 -0
  266. package/styles/breadcrumb/icons/_highcontrast-light.scss +14 -0
  267. package/styles/breadcrumb/icons/_highcontrast.scss +14 -0
  268. package/styles/breadcrumb/icons/_material-dark.scss +25 -0
  269. package/styles/breadcrumb/icons/_material.scss +25 -0
  270. package/styles/breadcrumb/icons/_material3.scss +25 -0
  271. package/styles/breadcrumb/icons/_tailwind-dark.scss +25 -0
  272. package/styles/breadcrumb/icons/_tailwind.scss +25 -0
  273. package/styles/breadcrumb/material-dark.css +379 -0
  274. package/styles/breadcrumb/material-dark.scss +4 -0
  275. package/styles/breadcrumb/material.css +379 -0
  276. package/styles/breadcrumb/material.scss +4 -0
  277. package/styles/breadcrumb/tailwind-dark.css +402 -0
  278. package/styles/breadcrumb/tailwind-dark.scss +4 -0
  279. package/styles/breadcrumb/tailwind.css +402 -0
  280. package/styles/breadcrumb/tailwind.scss +4 -0
  281. package/styles/carousel/_all.scss +2 -0
  282. package/styles/carousel/_bootstrap-dark-definition.scss +22 -0
  283. package/styles/carousel/_bootstrap-definition.scss +22 -0
  284. package/styles/carousel/_bootstrap4-definition.scss +22 -0
  285. package/styles/carousel/_bootstrap5-dark-definition.scss +1 -0
  286. package/styles/carousel/_bootstrap5-definition.scss +22 -0
  287. package/styles/carousel/_fabric-dark-definition.scss +22 -0
  288. package/styles/carousel/_fabric-definition.scss +22 -0
  289. package/styles/carousel/_fluent-dark-definition.scss +1 -0
  290. package/styles/carousel/_fluent-definition.scss +22 -0
  291. package/styles/carousel/_fusionnew-definition.scss +22 -0
  292. package/styles/carousel/_highcontrast-definition.scss +22 -0
  293. package/styles/carousel/_highcontrast-light-definition.scss +22 -0
  294. package/styles/carousel/_layout.scss +225 -0
  295. package/styles/carousel/_material-dark-definition.scss +22 -0
  296. package/styles/carousel/_material-definition.scss +22 -0
  297. package/styles/carousel/_tailwind-dark-definition.scss +1 -0
  298. package/styles/carousel/_tailwind-definition.scss +22 -0
  299. package/styles/carousel/_theme.scss +56 -0
  300. package/styles/carousel/bootstrap-dark.css +264 -0
  301. package/styles/carousel/bootstrap-dark.scss +5 -0
  302. package/styles/carousel/bootstrap.css +264 -0
  303. package/styles/carousel/bootstrap.scss +5 -0
  304. package/styles/carousel/bootstrap4.css +264 -0
  305. package/styles/carousel/bootstrap4.scss +5 -0
  306. package/styles/carousel/bootstrap5-dark.css +264 -0
  307. package/styles/carousel/bootstrap5-dark.scss +5 -0
  308. package/styles/carousel/bootstrap5.css +264 -0
  309. package/styles/carousel/bootstrap5.scss +5 -0
  310. package/styles/carousel/fabric-dark.css +264 -0
  311. package/styles/carousel/fabric-dark.scss +5 -0
  312. package/styles/carousel/fabric.css +264 -0
  313. package/styles/carousel/fabric.scss +5 -0
  314. package/styles/carousel/fluent-dark.css +264 -0
  315. package/styles/carousel/fluent-dark.scss +5 -0
  316. package/styles/carousel/fluent.css +264 -0
  317. package/styles/carousel/fluent.scss +5 -0
  318. package/styles/carousel/highcontrast-light.css +264 -0
  319. package/styles/carousel/highcontrast-light.scss +5 -0
  320. package/styles/carousel/highcontrast.css +264 -0
  321. package/styles/carousel/highcontrast.scss +5 -0
  322. package/styles/carousel/icons/_bootstrap-dark.scss +30 -0
  323. package/styles/carousel/icons/_bootstrap.scss +30 -0
  324. package/styles/carousel/icons/_bootstrap4.scss +30 -0
  325. package/styles/carousel/icons/_bootstrap5-dark.scss +1 -0
  326. package/styles/carousel/icons/_bootstrap5.scss +30 -0
  327. package/styles/carousel/icons/_fabric-dark.scss +30 -0
  328. package/styles/carousel/icons/_fabric.scss +30 -0
  329. package/styles/carousel/icons/_fluent-dark.scss +1 -0
  330. package/styles/carousel/icons/_fluent.scss +30 -0
  331. package/styles/carousel/icons/_fusionnew.scss +30 -0
  332. package/styles/carousel/icons/_highcontrast-light.scss +30 -0
  333. package/styles/carousel/icons/_highcontrast.scss +30 -0
  334. package/styles/carousel/icons/_material-dark.scss +30 -0
  335. package/styles/carousel/icons/_material.scss +30 -0
  336. package/styles/carousel/icons/_material3.scss +30 -0
  337. package/styles/carousel/icons/_tailwind-dark.scss +1 -0
  338. package/styles/carousel/icons/_tailwind.scss +30 -0
  339. package/styles/carousel/material-dark.css +265 -0
  340. package/styles/carousel/material-dark.scss +5 -0
  341. package/styles/carousel/material.css +265 -0
  342. package/styles/carousel/material.scss +5 -0
  343. package/styles/carousel/tailwind-dark.css +265 -0
  344. package/styles/carousel/tailwind-dark.scss +5 -0
  345. package/styles/carousel/tailwind.css +265 -0
  346. package/styles/carousel/tailwind.scss +5 -0
  347. package/styles/context-menu/_bootstrap-dark-definition.scss +49 -50
  348. package/styles/context-menu/_bootstrap-definition.scss +1 -3
  349. package/styles/context-menu/_bootstrap4-definition.scss +50 -0
  350. package/styles/context-menu/_bootstrap5-dark-definition.scss +1 -0
  351. package/styles/context-menu/_bootstrap5-definition.scss +52 -0
  352. package/styles/context-menu/_fabric-dark-definition.scss +49 -50
  353. package/styles/context-menu/_fabric-definition.scss +0 -2
  354. package/styles/context-menu/_fluent-dark-definition.scss +1 -0
  355. package/styles/context-menu/_fluent-definition.scss +52 -0
  356. package/styles/context-menu/_fusionnew-definition.scss +52 -0
  357. package/styles/context-menu/_highcontrast-definition.scss +0 -2
  358. package/styles/context-menu/_highcontrast-light-definition.scss +2 -3
  359. package/styles/context-menu/_layout-mixin.scss +19 -16
  360. package/styles/context-menu/_layout.scss +96 -5
  361. package/styles/context-menu/_material-dark-definition.scss +49 -50
  362. package/styles/context-menu/_material-definition.scss +3 -5
  363. package/styles/context-menu/_tailwind-dark-definition.scss +1 -0
  364. package/styles/context-menu/_tailwind-definition.scss +53 -0
  365. package/styles/context-menu/_theme-mixin.scss +16 -12
  366. package/styles/context-menu/_theme.scss +15 -1
  367. package/styles/context-menu/bootstrap-dark.css +206 -108
  368. package/styles/context-menu/bootstrap-dark.scss +3 -0
  369. package/styles/context-menu/bootstrap.css +206 -107
  370. package/styles/context-menu/bootstrap.scss +3 -0
  371. package/styles/context-menu/bootstrap4.css +367 -0
  372. package/styles/context-menu/bootstrap4.scss +7 -0
  373. package/styles/context-menu/bootstrap5-dark.css +355 -0
  374. package/styles/context-menu/bootstrap5-dark.scss +7 -0
  375. package/styles/context-menu/bootstrap5.css +355 -0
  376. package/styles/context-menu/bootstrap5.scss +7 -0
  377. package/styles/context-menu/fabric-dark.css +207 -109
  378. package/styles/context-menu/fabric-dark.scss +3 -0
  379. package/styles/context-menu/fabric.css +205 -106
  380. package/styles/context-menu/fabric.scss +3 -0
  381. package/styles/context-menu/fluent-dark.css +363 -0
  382. package/styles/context-menu/fluent-dark.scss +7 -0
  383. package/styles/context-menu/fluent.css +363 -0
  384. package/styles/context-menu/fluent.scss +7 -0
  385. package/styles/context-menu/highcontrast-light.css +366 -0
  386. package/styles/context-menu/highcontrast-light.scss +7 -0
  387. package/styles/context-menu/highcontrast.css +205 -106
  388. package/styles/context-menu/highcontrast.scss +3 -0
  389. package/styles/context-menu/icons/_bootstrap-dark.scss +5 -2
  390. package/styles/context-menu/icons/_bootstrap.scss +5 -2
  391. package/styles/context-menu/icons/_bootstrap4.scss +33 -0
  392. package/styles/context-menu/icons/_bootstrap5-dark.scss +1 -0
  393. package/styles/context-menu/icons/_bootstrap5.scss +33 -0
  394. package/styles/context-menu/icons/_fabric-dark.scss +5 -2
  395. package/styles/context-menu/icons/_fabric.scss +5 -2
  396. package/styles/context-menu/icons/_fluent-dark.scss +1 -0
  397. package/styles/context-menu/icons/_fluent.scss +33 -0
  398. package/styles/context-menu/icons/_fusionnew.scss +33 -0
  399. package/styles/context-menu/icons/_highcontrast-light.scss +5 -2
  400. package/styles/context-menu/icons/_highcontrast.scss +5 -2
  401. package/styles/context-menu/icons/_material-dark.scss +5 -2
  402. package/styles/context-menu/icons/_material.scss +5 -2
  403. package/styles/context-menu/icons/_material3.scss +33 -0
  404. package/styles/context-menu/icons/_tailwind-dark.scss +33 -0
  405. package/styles/context-menu/icons/_tailwind.scss +33 -0
  406. package/styles/context-menu/material-dark.css +223 -107
  407. package/styles/context-menu/material-dark.scss +3 -0
  408. package/styles/context-menu/material.css +228 -110
  409. package/styles/context-menu/material.scss +3 -0
  410. package/styles/context-menu/tailwind-dark.css +380 -0
  411. package/styles/context-menu/tailwind-dark.scss +7 -0
  412. package/styles/context-menu/tailwind.css +380 -0
  413. package/styles/context-menu/tailwind.scss +7 -0
  414. package/styles/fabric-dark.css +5766 -3690
  415. package/styles/fabric-dark.scss +4 -0
  416. package/styles/fabric.css +5959 -4038
  417. package/styles/fabric.scss +4 -0
  418. package/styles/fluent-dark.css +10172 -0
  419. package/styles/fluent-dark.scss +13 -0
  420. package/styles/fluent.css +10172 -0
  421. package/styles/fluent.scss +13 -0
  422. package/styles/h-scroll/_all.scss +1 -1
  423. package/styles/h-scroll/_bootstrap-dark-definition.scss +46 -40
  424. package/styles/h-scroll/_bootstrap-definition.scss +14 -7
  425. package/styles/h-scroll/_bootstrap4-definition.scss +56 -0
  426. package/styles/h-scroll/_bootstrap5-dark-definition.scss +1 -0
  427. package/styles/h-scroll/_bootstrap5-definition.scss +83 -0
  428. package/styles/h-scroll/_fabric-dark-definition.scss +48 -42
  429. package/styles/h-scroll/_fabric-definition.scss +17 -9
  430. package/styles/h-scroll/_fluent-dark-definition.scss +1 -0
  431. package/styles/h-scroll/_fluent-definition.scss +83 -0
  432. package/styles/h-scroll/_fusionnew-definition.scss +83 -0
  433. package/styles/h-scroll/_highcontrast-definition.scss +15 -17
  434. package/styles/h-scroll/_highcontrast-light-definition.scss +49 -46
  435. package/styles/h-scroll/_layout.scss +15 -15
  436. package/styles/h-scroll/_material-dark-definition.scss +56 -51
  437. package/styles/h-scroll/_material-definition.scss +21 -15
  438. package/styles/h-scroll/_tailwind-dark-definition.scss +1 -0
  439. package/styles/h-scroll/_tailwind-definition.scss +83 -0
  440. package/styles/h-scroll/_theme.scss +15 -29
  441. package/styles/h-scroll/bootstrap-dark.css +53 -66
  442. package/styles/h-scroll/bootstrap-dark.scss +1 -0
  443. package/styles/h-scroll/bootstrap.css +32 -80
  444. package/styles/h-scroll/bootstrap4.css +260 -0
  445. package/styles/h-scroll/bootstrap4.scss +4 -0
  446. package/styles/h-scroll/bootstrap5-dark.css +280 -0
  447. package/styles/h-scroll/bootstrap5-dark.scss +4 -0
  448. package/styles/h-scroll/bootstrap5.css +280 -0
  449. package/styles/h-scroll/bootstrap5.scss +4 -0
  450. package/styles/h-scroll/fabric-dark.css +54 -67
  451. package/styles/h-scroll/fabric-dark.scss +1 -0
  452. package/styles/h-scroll/fabric.css +32 -80
  453. package/styles/h-scroll/fluent-dark.css +280 -0
  454. package/styles/h-scroll/fluent-dark.scss +4 -0
  455. package/styles/h-scroll/fluent.css +280 -0
  456. package/styles/h-scroll/fluent.scss +4 -0
  457. package/styles/h-scroll/highcontrast-light.css +259 -0
  458. package/styles/h-scroll/highcontrast-light.scss +4 -0
  459. package/styles/h-scroll/highcontrast.css +26 -89
  460. package/styles/h-scroll/{_icons.scss → icons/_bootstrap-dark.scss} +13 -13
  461. package/styles/h-scroll/icons/_bootstrap.scss +3 -4
  462. package/styles/h-scroll/icons/_bootstrap4.scss +49 -0
  463. package/styles/h-scroll/icons/_bootstrap5-dark.scss +1 -0
  464. package/styles/h-scroll/icons/_bootstrap5.scss +49 -0
  465. package/styles/h-scroll/icons/_fabric-dark.scss +49 -0
  466. package/styles/h-scroll/icons/_fabric.scss +5 -5
  467. package/styles/h-scroll/icons/_fluent-dark.scss +1 -0
  468. package/styles/h-scroll/icons/_fluent.scss +49 -0
  469. package/styles/h-scroll/icons/_fusionnew.scss +49 -0
  470. package/styles/h-scroll/icons/_highcontrast-light.scss +49 -0
  471. package/styles/h-scroll/icons/_highcontrast.scss +5 -5
  472. package/styles/h-scroll/icons/_material-dark.scss +49 -0
  473. package/styles/h-scroll/icons/_material.scss +3 -3
  474. package/styles/h-scroll/icons/_material3.scss +49 -0
  475. package/styles/h-scroll/icons/_tailwind-dark.scss +1 -0
  476. package/styles/h-scroll/icons/_tailwind.scss +49 -0
  477. package/styles/h-scroll/material-dark.css +56 -70
  478. package/styles/h-scroll/material-dark.scss +1 -0
  479. package/styles/h-scroll/material.css +33 -82
  480. package/styles/h-scroll/tailwind-dark.css +281 -0
  481. package/styles/h-scroll/tailwind-dark.scss +4 -0
  482. package/styles/h-scroll/tailwind.css +281 -0
  483. package/styles/h-scroll/tailwind.scss +4 -0
  484. package/styles/highcontrast-light.css +10029 -0
  485. package/styles/highcontrast-light.scss +13 -0
  486. package/styles/highcontrast.css +6039 -4460
  487. package/styles/highcontrast.scss +4 -0
  488. package/styles/material-dark.css +6282 -3945
  489. package/styles/material-dark.scss +4 -0
  490. package/styles/material.css +6210 -4026
  491. package/styles/material.scss +4 -0
  492. package/styles/menu/_bootstrap-dark-definition.scss +32 -21
  493. package/styles/menu/_bootstrap-definition.scss +12 -2
  494. package/styles/menu/_bootstrap4-definition.scss +64 -0
  495. package/styles/menu/_bootstrap5-dark-definition.scss +1 -0
  496. package/styles/menu/_bootstrap5-definition.scss +67 -0
  497. package/styles/menu/_fabric-dark-definition.scss +33 -22
  498. package/styles/menu/_fabric-definition.scss +11 -1
  499. package/styles/menu/_fluent-dark-definition.scss +1 -0
  500. package/styles/menu/_fluent-definition.scss +67 -0
  501. package/styles/menu/_fusionnew-definition.scss +67 -0
  502. package/styles/menu/_highcontrast-definition.scss +12 -2
  503. package/styles/menu/_highcontrast-light-definition.scss +11 -1
  504. package/styles/menu/_layout.scss +363 -37
  505. package/styles/menu/_material-dark-definition.scss +30 -19
  506. package/styles/menu/_material-definition.scss +10 -0
  507. package/styles/menu/_tailwind-dark-definition.scss +1 -0
  508. package/styles/menu/_tailwind-definition.scss +66 -0
  509. package/styles/menu/_theme.scss +201 -17
  510. package/styles/menu/bootstrap-dark.css +717 -319
  511. package/styles/menu/bootstrap.css +701 -304
  512. package/styles/menu/bootstrap.scss +1 -0
  513. package/styles/menu/bootstrap4.css +1126 -0
  514. package/styles/menu/bootstrap4.scss +8 -0
  515. package/styles/menu/bootstrap5-dark.css +1083 -0
  516. package/styles/menu/bootstrap5-dark.scss +8 -0
  517. package/styles/menu/bootstrap5.css +1083 -0
  518. package/styles/menu/bootstrap5.scss +8 -0
  519. package/styles/menu/fabric-dark.css +716 -318
  520. package/styles/menu/fabric.css +696 -298
  521. package/styles/menu/fabric.scss +1 -0
  522. package/styles/menu/fluent-dark.css +1106 -0
  523. package/styles/menu/fluent-dark.scss +8 -0
  524. package/styles/menu/fluent.css +1106 -0
  525. package/styles/menu/fluent.scss +8 -0
  526. package/styles/menu/highcontrast-light.css +1088 -0
  527. package/styles/menu/highcontrast-light.scss +8 -0
  528. package/styles/menu/highcontrast.css +698 -300
  529. package/styles/menu/highcontrast.scss +1 -0
  530. package/styles/menu/icons/_bootstrap-dark.scss +58 -3
  531. package/styles/menu/icons/_bootstrap.scss +58 -3
  532. package/styles/menu/icons/_bootstrap4.scss +134 -0
  533. package/styles/menu/icons/_bootstrap5-dark.scss +1 -0
  534. package/styles/menu/icons/_bootstrap5.scss +134 -0
  535. package/styles/menu/icons/_fabric-dark.scss +62 -7
  536. package/styles/menu/icons/_fabric.scss +62 -7
  537. package/styles/menu/icons/_fluent-dark.scss +1 -0
  538. package/styles/menu/icons/_fluent.scss +134 -0
  539. package/styles/menu/icons/_fusionnew.scss +134 -0
  540. package/styles/menu/icons/_highcontrast-light.scss +58 -3
  541. package/styles/menu/icons/_highcontrast.scss +58 -3
  542. package/styles/menu/icons/_material-dark.scss +58 -3
  543. package/styles/menu/icons/_material.scss +58 -3
  544. package/styles/menu/icons/_material3.scss +134 -0
  545. package/styles/menu/icons/_tailwind-dark.scss +134 -0
  546. package/styles/menu/icons/_tailwind.scss +134 -0
  547. package/styles/menu/material-dark.css +715 -319
  548. package/styles/menu/material.css +699 -303
  549. package/styles/menu/material.scss +1 -0
  550. package/styles/menu/tailwind-dark.css +1102 -0
  551. package/styles/menu/tailwind-dark.scss +8 -0
  552. package/styles/menu/tailwind.css +1102 -0
  553. package/styles/menu/tailwind.scss +8 -0
  554. package/styles/pager/_all.scss +2 -0
  555. package/styles/pager/_bootstrap-dark-definition.scss +131 -0
  556. package/styles/pager/_bootstrap-definition.scss +131 -0
  557. package/styles/pager/_bootstrap4-definition.scss +131 -0
  558. package/styles/pager/_bootstrap5-dark-definition.scss +1 -0
  559. package/styles/pager/_bootstrap5-definition.scss +146 -0
  560. package/styles/pager/_fabric-dark-definition.scss +131 -0
  561. package/styles/pager/_fabric-definition.scss +129 -0
  562. package/styles/pager/_fluent-dark-definition.scss +1 -0
  563. package/styles/pager/_fluent-definition.scss +133 -0
  564. package/styles/pager/_fusionnew-definition.scss +146 -0
  565. package/styles/pager/_highcontrast-definition.scss +129 -0
  566. package/styles/pager/_highcontrast-light-definition.scss +131 -0
  567. package/styles/pager/_layout.scss +896 -0
  568. package/styles/pager/_material-dark-definition.scss +132 -0
  569. package/styles/pager/_material-definition.scss +130 -0
  570. package/styles/pager/_tailwind-dark-definition.scss +1 -0
  571. package/styles/pager/_tailwind-definition.scss +132 -0
  572. package/styles/pager/_theme.scss +152 -0
  573. package/styles/pager/bootstrap-dark.css +688 -0
  574. package/styles/pager/bootstrap-dark.scss +4 -0
  575. package/styles/pager/bootstrap.css +688 -0
  576. package/styles/pager/bootstrap.scss +4 -0
  577. package/styles/pager/bootstrap4.css +688 -0
  578. package/styles/pager/bootstrap4.scss +4 -0
  579. package/styles/pager/bootstrap5-dark.css +723 -0
  580. package/styles/pager/bootstrap5-dark.scss +4 -0
  581. package/styles/pager/bootstrap5.css +723 -0
  582. package/styles/pager/bootstrap5.scss +4 -0
  583. package/styles/pager/fabric-dark.css +688 -0
  584. package/styles/pager/fabric-dark.scss +4 -0
  585. package/styles/pager/fabric.css +688 -0
  586. package/styles/pager/fabric.scss +4 -0
  587. package/styles/pager/fluent-dark.css +690 -0
  588. package/styles/pager/fluent-dark.scss +4 -0
  589. package/styles/pager/fluent.css +690 -0
  590. package/styles/pager/fluent.scss +4 -0
  591. package/styles/pager/highcontrast-light.css +688 -0
  592. package/styles/pager/highcontrast-light.scss +4 -0
  593. package/styles/pager/highcontrast.css +688 -0
  594. package/styles/pager/highcontrast.scss +4 -0
  595. package/styles/pager/icons/_bootstrap-dark.scss +50 -0
  596. package/styles/pager/icons/_bootstrap.scss +50 -0
  597. package/styles/pager/icons/_bootstrap4.scss +50 -0
  598. package/styles/pager/icons/_bootstrap5-dark.scss +1 -0
  599. package/styles/pager/icons/_bootstrap5.scss +50 -0
  600. package/styles/pager/icons/_fabric-dark.scss +50 -0
  601. package/styles/pager/icons/_fabric.scss +50 -0
  602. package/styles/pager/icons/_fluent-dark.scss +1 -0
  603. package/styles/pager/icons/_fluent.scss +50 -0
  604. package/styles/pager/icons/_fusionnew.scss +50 -0
  605. package/styles/pager/icons/_highcontrast-light.scss +50 -0
  606. package/styles/pager/icons/_highcontrast.scss +46 -0
  607. package/styles/pager/icons/_material-dark.scss +50 -0
  608. package/styles/pager/icons/_material.scss +46 -0
  609. package/styles/pager/icons/_material3.scss +50 -0
  610. package/styles/pager/icons/_tailwind-dark.scss +1 -0
  611. package/styles/pager/icons/_tailwind.scss +50 -0
  612. package/styles/pager/material-dark.css +689 -0
  613. package/styles/pager/material-dark.scss +4 -0
  614. package/styles/pager/material.css +689 -0
  615. package/styles/pager/material.scss +4 -0
  616. package/styles/pager/tailwind-dark.css +815 -0
  617. package/styles/pager/tailwind-dark.scss +4 -0
  618. package/styles/pager/tailwind.css +815 -0
  619. package/styles/pager/tailwind.scss +4 -0
  620. package/styles/sidebar/_bootstrap4-definition.scss +4 -0
  621. package/styles/sidebar/_bootstrap5-dark-definition.scss +1 -0
  622. package/styles/sidebar/_bootstrap5-definition.scss +6 -0
  623. package/styles/sidebar/_fabric-definition.scss +0 -2
  624. package/styles/sidebar/_fluent-dark-definition.scss +1 -0
  625. package/styles/sidebar/_fluent-definition.scss +6 -0
  626. package/styles/sidebar/_fusionnew-definition.scss +6 -0
  627. package/styles/sidebar/_highcontrast-definition.scss +1 -1
  628. package/styles/sidebar/_icons.scss +1 -1
  629. package/styles/sidebar/_layout.scss +1 -0
  630. package/styles/sidebar/_tailwind-dark-definition.scss +1 -0
  631. package/styles/sidebar/_tailwind-definition.scss +6 -0
  632. package/styles/sidebar/_theme.scss +56 -34
  633. package/styles/sidebar/bootstrap-dark.css +29 -25
  634. package/styles/sidebar/bootstrap.css +29 -25
  635. package/styles/sidebar/bootstrap4.css +149 -0
  636. package/styles/sidebar/bootstrap4.scss +3 -0
  637. package/styles/sidebar/bootstrap5-dark.css +147 -0
  638. package/styles/sidebar/bootstrap5-dark.scss +3 -0
  639. package/styles/sidebar/bootstrap5.css +147 -0
  640. package/styles/sidebar/bootstrap5.scss +3 -0
  641. package/styles/sidebar/fabric-dark.css +29 -25
  642. package/styles/sidebar/fabric.css +29 -25
  643. package/styles/sidebar/fluent-dark.css +147 -0
  644. package/styles/sidebar/fluent-dark.scss +3 -0
  645. package/styles/sidebar/fluent.css +147 -0
  646. package/styles/sidebar/fluent.scss +3 -0
  647. package/styles/sidebar/highcontrast-light.css +149 -0
  648. package/styles/sidebar/highcontrast-light.scss +3 -0
  649. package/styles/sidebar/highcontrast.css +30 -26
  650. package/styles/sidebar/material-dark.css +29 -25
  651. package/styles/sidebar/material.css +29 -25
  652. package/styles/sidebar/tailwind-dark.css +148 -0
  653. package/styles/sidebar/tailwind-dark.scss +3 -0
  654. package/styles/sidebar/tailwind.css +148 -0
  655. package/styles/sidebar/tailwind.scss +3 -0
  656. package/styles/tab/_bootstrap-dark-definition.scss +632 -374
  657. package/styles/tab/_bootstrap-definition.scss +279 -13
  658. package/styles/tab/_bootstrap4-definition.scss +666 -0
  659. package/styles/tab/_bootstrap5-dark-definition.scss +1 -0
  660. package/styles/tab/_bootstrap5-definition.scss +656 -0
  661. package/styles/tab/_fabric-dark-definition.scss +644 -385
  662. package/styles/tab/_fabric-definition.scss +281 -15
  663. package/styles/tab/_fluent-dark-definition.scss +1 -0
  664. package/styles/tab/_fluent-definition.scss +664 -0
  665. package/styles/tab/_fusionnew-definition.scss +656 -0
  666. package/styles/tab/_highcontrast-definition.scss +283 -17
  667. package/styles/tab/_highcontrast-light-definition.scss +667 -411
  668. package/styles/tab/_icons.scss +1 -0
  669. package/styles/tab/_layout.scss +697 -753
  670. package/styles/tab/_material-dark-definition.scss +627 -370
  671. package/styles/tab/_material-definition.scss +277 -11
  672. package/styles/tab/_tailwind-dark-definition.scss +1 -0
  673. package/styles/tab/_tailwind-definition.scss +685 -0
  674. package/styles/tab/_theme.scss +402 -537
  675. package/styles/tab/bootstrap-dark.css +1226 -1067
  676. package/styles/tab/bootstrap-dark.scss +1 -0
  677. package/styles/tab/bootstrap.css +1173 -1106
  678. package/styles/tab/bootstrap4.css +4031 -0
  679. package/styles/tab/bootstrap4.scss +5 -0
  680. package/styles/tab/bootstrap5-dark.css +4029 -0
  681. package/styles/tab/bootstrap5-dark.scss +5 -0
  682. package/styles/tab/bootstrap5.css +4029 -0
  683. package/styles/tab/bootstrap5.scss +5 -0
  684. package/styles/tab/fabric-dark.css +1212 -1096
  685. package/styles/tab/fabric-dark.scss +1 -0
  686. package/styles/tab/fabric.css +1173 -1148
  687. package/styles/tab/fluent-dark.css +4031 -0
  688. package/styles/tab/fluent-dark.scss +5 -0
  689. package/styles/tab/fluent.css +4031 -0
  690. package/styles/tab/fluent.scss +5 -0
  691. package/styles/tab/highcontrast-light.css +4022 -0
  692. package/styles/tab/highcontrast-light.scss +5 -0
  693. package/styles/tab/highcontrast.css +1086 -1215
  694. package/styles/tab/icons/_bootstrap-dark.scss +108 -0
  695. package/styles/tab/icons/_bootstrap.scss +11 -35
  696. package/styles/tab/icons/_bootstrap4.scss +115 -0
  697. package/styles/tab/icons/_bootstrap5-dark.scss +1 -0
  698. package/styles/tab/icons/_bootstrap5.scss +104 -0
  699. package/styles/tab/icons/_fabric-dark.scss +108 -0
  700. package/styles/tab/icons/_fabric.scss +11 -35
  701. package/styles/tab/icons/_fluent-dark.scss +1 -0
  702. package/styles/tab/icons/_fluent.scss +108 -0
  703. package/styles/tab/icons/_fusionnew.scss +104 -0
  704. package/styles/tab/icons/_highcontrast-light.scss +104 -0
  705. package/styles/tab/icons/_highcontrast.scss +11 -28
  706. package/styles/tab/icons/_material-dark.scss +104 -0
  707. package/styles/tab/icons/_material.scss +9 -37
  708. package/styles/tab/icons/_material3.scss +104 -0
  709. package/styles/tab/icons/_tailwind-dark.scss +1 -0
  710. package/styles/tab/icons/_tailwind.scss +104 -0
  711. package/styles/tab/material-dark.css +1334 -955
  712. package/styles/tab/material-dark.scss +1 -0
  713. package/styles/tab/material.css +1280 -992
  714. package/styles/tab/tailwind-dark.css +4046 -0
  715. package/styles/tab/tailwind-dark.scss +5 -0
  716. package/styles/tab/tailwind.css +4046 -0
  717. package/styles/tab/tailwind.scss +5 -0
  718. package/styles/tailwind-dark.css +10351 -0
  719. package/styles/tailwind-dark.scss +13 -0
  720. package/styles/tailwind.css +10351 -0
  721. package/styles/tailwind.scss +13 -0
  722. package/styles/toolbar/_all.scss +1 -1
  723. package/styles/toolbar/_bootstrap-dark-definition.scss +193 -121
  724. package/styles/toolbar/_bootstrap-definition.scss +107 -34
  725. package/styles/toolbar/_bootstrap4-definition.scss +211 -0
  726. package/styles/toolbar/_bootstrap5-dark-definition.scss +1 -0
  727. package/styles/toolbar/_bootstrap5-definition.scss +220 -0
  728. package/styles/toolbar/_fabric-dark-definition.scss +208 -140
  729. package/styles/toolbar/_fabric-definition.scss +97 -28
  730. package/styles/toolbar/_fluent-dark-definition.scss +1 -0
  731. package/styles/toolbar/_fluent-definition.scss +210 -0
  732. package/styles/toolbar/_fusionnew-definition.scss +220 -0
  733. package/styles/toolbar/_highcontrast-definition.scss +99 -30
  734. package/styles/toolbar/_highcontrast-light-definition.scss +219 -149
  735. package/styles/toolbar/_layout.scss +690 -1087
  736. package/styles/toolbar/_material-dark-definition.scss +216 -148
  737. package/styles/toolbar/_material-definition.scss +117 -46
  738. package/styles/toolbar/_tailwind-dark-definition.scss +1 -0
  739. package/styles/toolbar/_tailwind-definition.scss +210 -0
  740. package/styles/toolbar/_theme.scss +246 -263
  741. package/styles/toolbar/bootstrap-dark.css +768 -1105
  742. package/styles/toolbar/bootstrap-dark.scss +1 -0
  743. package/styles/toolbar/bootstrap.css +761 -1111
  744. package/styles/toolbar/bootstrap.scss +1 -0
  745. package/styles/toolbar/bootstrap4.css +1071 -0
  746. package/styles/toolbar/bootstrap4.scss +8 -0
  747. package/styles/toolbar/bootstrap5-dark.css +1082 -0
  748. package/styles/toolbar/bootstrap5-dark.scss +8 -0
  749. package/styles/toolbar/bootstrap5.css +1082 -0
  750. package/styles/toolbar/bootstrap5.scss +8 -0
  751. package/styles/toolbar/fabric-dark.css +779 -1042
  752. package/styles/toolbar/fabric-dark.scss +1 -0
  753. package/styles/toolbar/fabric.css +767 -1041
  754. package/styles/toolbar/fabric.scss +1 -0
  755. package/styles/toolbar/fluent-dark.css +1081 -0
  756. package/styles/toolbar/fluent-dark.scss +8 -0
  757. package/styles/toolbar/fluent.css +1081 -0
  758. package/styles/toolbar/fluent.scss +8 -0
  759. package/styles/toolbar/highcontrast-light.css +1070 -0
  760. package/styles/toolbar/highcontrast-light.scss +8 -0
  761. package/styles/toolbar/highcontrast.css +744 -1089
  762. package/styles/toolbar/highcontrast.scss +1 -0
  763. package/styles/toolbar/icons/_bootstrap-dark.scss +16 -0
  764. package/styles/toolbar/icons/_bootstrap.scss +1 -1
  765. package/styles/toolbar/icons/_bootstrap4.scss +16 -0
  766. package/styles/toolbar/icons/_bootstrap5-dark.scss +1 -0
  767. package/styles/toolbar/icons/_bootstrap5.scss +16 -0
  768. package/styles/toolbar/icons/_fabric-dark.scss +16 -0
  769. package/styles/toolbar/icons/_fabric.scss +1 -1
  770. package/styles/toolbar/icons/_fluent-dark.scss +1 -0
  771. package/styles/toolbar/icons/_fluent.scss +16 -0
  772. package/styles/toolbar/icons/_fusionnew.scss +16 -0
  773. package/styles/toolbar/icons/_highcontrast-light.scss +16 -0
  774. package/styles/toolbar/icons/_highcontrast.scss +1 -1
  775. package/styles/toolbar/icons/_material-dark.scss +16 -0
  776. package/styles/toolbar/icons/_material.scss +1 -1
  777. package/styles/toolbar/icons/_material3.scss +16 -0
  778. package/styles/toolbar/icons/_tailwind-dark.scss +1 -0
  779. package/styles/toolbar/icons/_tailwind.scss +16 -0
  780. package/styles/toolbar/material-dark.css +747 -1010
  781. package/styles/toolbar/material-dark.scss +1 -0
  782. package/styles/toolbar/material.css +753 -1027
  783. package/styles/toolbar/material.scss +1 -0
  784. package/styles/toolbar/tailwind-dark.css +1082 -0
  785. package/styles/toolbar/tailwind-dark.scss +8 -0
  786. package/styles/toolbar/tailwind.css +1082 -0
  787. package/styles/toolbar/tailwind.scss +8 -0
  788. package/styles/treeview/_all.scss +1 -1
  789. package/styles/treeview/_bootstrap-dark-definition.scss +104 -117
  790. package/styles/treeview/_bootstrap-definition.scss +24 -38
  791. package/styles/treeview/_bootstrap4-definition.scss +141 -0
  792. package/styles/treeview/_bootstrap5-dark-definition.scss +1 -0
  793. package/styles/treeview/_bootstrap5-definition.scss +120 -0
  794. package/styles/treeview/_fabric-dark-definition.scss +102 -116
  795. package/styles/treeview/_fabric-definition.scss +24 -38
  796. package/styles/treeview/_fluent-dark-definition.scss +1 -0
  797. package/styles/treeview/_fluent-definition.scss +120 -0
  798. package/styles/treeview/_fusionnew-definition.scss +120 -0
  799. package/styles/treeview/_highcontrast-definition.scss +24 -38
  800. package/styles/treeview/_highcontrast-light-definition.scss +112 -126
  801. package/styles/treeview/_layout.scss +619 -28
  802. package/styles/treeview/_material-dark-definition.scss +104 -116
  803. package/styles/treeview/_material-definition.scss +25 -39
  804. package/styles/treeview/_tailwind-dark-definition.scss +1 -0
  805. package/styles/treeview/_tailwind-definition.scss +124 -0
  806. package/styles/treeview/_theme.scss +128 -27
  807. package/styles/treeview/bootstrap-dark.css +230 -172
  808. package/styles/treeview/bootstrap.css +230 -168
  809. package/styles/treeview/bootstrap4.css +829 -0
  810. package/styles/treeview/bootstrap4.scss +6 -0
  811. package/styles/treeview/bootstrap5-dark.css +847 -0
  812. package/styles/treeview/bootstrap5-dark.scss +6 -0
  813. package/styles/treeview/bootstrap5.css +847 -0
  814. package/styles/treeview/bootstrap5.scss +6 -0
  815. package/styles/treeview/fabric-dark.css +230 -168
  816. package/styles/treeview/fabric.css +230 -168
  817. package/styles/treeview/fluent-dark.css +852 -0
  818. package/styles/treeview/fluent-dark.scss +6 -0
  819. package/styles/treeview/fluent.css +852 -0
  820. package/styles/treeview/fluent.scss +6 -0
  821. package/styles/treeview/highcontrast-light.css +736 -0
  822. package/styles/treeview/highcontrast-light.scss +6 -0
  823. package/styles/treeview/highcontrast.css +230 -171
  824. package/styles/treeview/icons/_bootstrap-dark.scss +2 -2
  825. package/styles/treeview/icons/_bootstrap.scss +2 -2
  826. package/styles/treeview/icons/_bootstrap4.scss +39 -0
  827. package/styles/treeview/icons/_bootstrap5-dark.scss +1 -0
  828. package/styles/treeview/icons/_bootstrap5.scss +43 -0
  829. package/styles/treeview/icons/_fabric-dark.scss +2 -2
  830. package/styles/treeview/icons/_fabric.scss +2 -2
  831. package/styles/treeview/icons/_fluent-dark.scss +1 -0
  832. package/styles/treeview/icons/_fluent.scss +43 -0
  833. package/styles/treeview/icons/_fusionnew.scss +43 -0
  834. package/styles/treeview/icons/_highcontrast-light.scss +2 -2
  835. package/styles/treeview/icons/_highcontrast.scss +2 -2
  836. package/styles/treeview/icons/_material-dark.scss +2 -2
  837. package/styles/treeview/icons/_material.scss +2 -2
  838. package/styles/treeview/icons/_material3.scss +43 -0
  839. package/styles/treeview/icons/_tailwind-dark.scss +43 -0
  840. package/styles/treeview/icons/_tailwind.scss +43 -0
  841. package/styles/treeview/material-dark.css +242 -172
  842. package/styles/treeview/material.css +238 -167
  843. package/styles/treeview/tailwind-dark.css +840 -0
  844. package/styles/treeview/tailwind-dark.scss +6 -0
  845. package/styles/treeview/tailwind.css +840 -0
  846. package/styles/treeview/tailwind.scss +6 -0
  847. package/styles/v-scroll/_all.scss +1 -1
  848. package/styles/v-scroll/_bootstrap-dark-definition.scss +39 -38
  849. package/styles/v-scroll/_bootstrap-definition.scss +8 -8
  850. package/styles/v-scroll/_bootstrap4-definition.scss +49 -0
  851. package/styles/v-scroll/_bootstrap5-dark-definition.scss +1 -0
  852. package/styles/v-scroll/_bootstrap5-definition.scss +49 -0
  853. package/styles/v-scroll/_fabric-dark-definition.scss +41 -40
  854. package/styles/v-scroll/_fabric-definition.scss +10 -10
  855. package/styles/v-scroll/_fluent-dark-definition.scss +1 -0
  856. package/styles/v-scroll/_fluent-definition.scss +49 -0
  857. package/styles/v-scroll/_fusionnew-definition.scss +49 -0
  858. package/styles/v-scroll/_highcontrast-definition.scss +10 -11
  859. package/styles/v-scroll/_highcontrast-light-definition.scss +41 -41
  860. package/styles/v-scroll/_layout.scss +4 -4
  861. package/styles/v-scroll/_material-dark-definition.scss +46 -45
  862. package/styles/v-scroll/_material-definition.scss +10 -10
  863. package/styles/v-scroll/_tailwind-dark-definition.scss +1 -0
  864. package/styles/v-scroll/_tailwind-definition.scss +49 -0
  865. package/styles/v-scroll/_theme.scss +2 -27
  866. package/styles/v-scroll/bootstrap-dark.css +25 -51
  867. package/styles/v-scroll/bootstrap-dark.scss +1 -0
  868. package/styles/v-scroll/bootstrap.css +13 -58
  869. package/styles/v-scroll/bootstrap4.css +202 -0
  870. package/styles/v-scroll/bootstrap4.scss +4 -0
  871. package/styles/v-scroll/bootstrap5-dark.css +202 -0
  872. package/styles/v-scroll/bootstrap5-dark.scss +4 -0
  873. package/styles/v-scroll/bootstrap5.css +202 -0
  874. package/styles/v-scroll/bootstrap5.scss +4 -0
  875. package/styles/v-scroll/fabric-dark.css +26 -52
  876. package/styles/v-scroll/fabric-dark.scss +1 -0
  877. package/styles/v-scroll/fabric.css +14 -59
  878. package/styles/v-scroll/fluent-dark.css +202 -0
  879. package/styles/v-scroll/fluent-dark.scss +4 -0
  880. package/styles/v-scroll/fluent.css +202 -0
  881. package/styles/v-scroll/fluent.scss +4 -0
  882. package/styles/v-scroll/highcontrast-light.css +201 -0
  883. package/styles/v-scroll/highcontrast-light.scss +4 -0
  884. package/styles/v-scroll/highcontrast.css +14 -74
  885. package/styles/v-scroll/icons/_bootstrap-dark.scss +27 -0
  886. package/styles/v-scroll/icons/_bootstrap.scss +1 -1
  887. package/styles/v-scroll/icons/_bootstrap4.scss +27 -0
  888. package/styles/v-scroll/icons/_bootstrap5-dark.scss +1 -0
  889. package/styles/v-scroll/icons/_bootstrap5.scss +27 -0
  890. package/styles/v-scroll/icons/_fabric-dark.scss +27 -0
  891. package/styles/v-scroll/icons/_fabric.scss +3 -2
  892. package/styles/v-scroll/icons/_fluent-dark.scss +1 -0
  893. package/styles/v-scroll/icons/_fluent.scss +27 -0
  894. package/styles/v-scroll/icons/_fusionnew.scss +27 -0
  895. package/styles/v-scroll/icons/_highcontrast-light.scss +27 -0
  896. package/styles/v-scroll/icons/_highcontrast.scss +3 -2
  897. package/styles/v-scroll/{_icons.scss → icons/_material-dark.scss} +4 -3
  898. package/styles/v-scroll/icons/_material.scss +1 -0
  899. package/styles/v-scroll/icons/_material3.scss +27 -0
  900. package/styles/v-scroll/icons/_tailwind-dark.scss +1 -0
  901. package/styles/v-scroll/icons/_tailwind.scss +27 -0
  902. package/styles/v-scroll/material-dark.css +23 -50
  903. package/styles/v-scroll/material-dark.scss +1 -0
  904. package/styles/v-scroll/material.css +12 -58
  905. package/styles/v-scroll/tailwind-dark.css +203 -0
  906. package/styles/v-scroll/tailwind-dark.scss +4 -0
  907. package/styles/v-scroll/tailwind.css +203 -0
  908. package/styles/v-scroll/tailwind.scss +4 -0
  909. package/tslint.json +111 -0
  910. package/styles/toolbar/_icons.scss +0 -35
@@ -1,6 +1,7 @@
1
1
  @include export-module('tab-theme') {
2
+
2
3
  /*! tab theme */
3
- #{&}.e-tab {
4
+ .e-tab {
4
5
  background: $tab-bg-color;
5
6
  border: $tab-border;
6
7
 
@@ -8,33 +9,26 @@
8
9
  background: inherit;
9
10
  border: 0;
10
11
  border-radius: 0;
12
+ box-shadow: none;
13
+ font-weight: $tab-header-font-weight;
14
+ border-bottom: $tab-header-border-bottom;
11
15
 
12
- @if $skin-name == 'bootstrap' {
16
+ &::before {
17
+ border-color: $tab-header-before-border-color;
18
+ border-style: solid;
19
+ }
13
20
 
21
+ &:not(.e-vertical) {
14
22
  &::before {
15
- border-color: $tab-hdr-bdr-color;
16
- border-style: solid;
23
+ border-width: $tab-header-before-border-width;
17
24
  }
18
-
19
- &:not(.e-vertical) {
20
-
21
- &::before {
22
- border-width: 0 0 1px;
23
- }
24
- }
25
-
26
- &[style*= 'overflow: hidden'] {
27
- border: 0;
28
- }
29
- }
30
- @else {
31
- border-bottom: $tab-hdr-border;
32
25
  }
33
26
 
34
27
  &:not(.e-vertical) {
35
28
 
36
29
  .e-toolbar-item.e-active {
37
- border-bottom: $tab-active-item-hide-border;
30
+ border-bottom: $tab-item-active-border-bottom;
31
+ margin-bottom: 0;
38
32
  }
39
33
  }
40
34
 
@@ -50,23 +44,21 @@
50
44
  background: inherit;
51
45
  border: $tab-item-border;
52
46
 
47
+ &:hover {
48
+ background: $tab-item-hover-bg;
49
+ }
50
+
53
51
  .e-ripple-element {
54
52
  background: $tab-ripple-bg-color;
55
53
  }
56
54
 
57
55
  .e-tab-wrap {
58
- border-radius: $tab-item-wrap-border-radius;
56
+ border-radius: $tab-active-item-border-radius;
59
57
  color: $tab-text-color;
60
-
61
- @if $skin-name == 'fabric' {
62
- border: 1px solid $tab-wrap-border-color;
63
- }
64
- @else if $skin-name == 'highcontrast' {
65
- border: 2px solid $tab-wrap-border-color;
66
- }
58
+ border: $tab-item-wrap-border;
67
59
 
68
60
  .e-tab-icon {
69
- color: $tab-text-color;
61
+ color: $tab-wrap-comb-icon-color;
70
62
  }
71
63
 
72
64
  @media screen and (max-width: 480px) {
@@ -83,6 +75,8 @@
83
75
 
84
76
  &:hover {
85
77
  background: $tab-item-hover-bg-color;
78
+ border: $tab-item-wrap-hover-border;
79
+ border-radius: $tab-item-wrap-hover-border-radius;
86
80
 
87
81
  @media screen and (max-width: 480px) {
88
82
  background: $tab-mob-item-hover-bg-color;
@@ -100,7 +94,7 @@
100
94
  border-radius: $tab-top-active-item-border-radius;
101
95
 
102
96
  .e-tab-wrap {
103
-
97
+ border: $tab-item-active-tabwrap-border;
104
98
  &:hover {
105
99
 
106
100
  .e-tab-text,
@@ -111,17 +105,15 @@
111
105
  }
112
106
 
113
107
  .e-text-wrap {
114
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
115
- position: relative;
116
-
117
- &::before {
118
- border: 1px solid $tab-active-line-color;
119
- content: '';
120
- display: block;
121
- position: absolute;
122
- top: 95%;
123
- width: 100%;
124
- }
108
+ position: $tab-active-wrap-position;
109
+
110
+ &::before {
111
+ border: $tab-active-wrap-before-border;
112
+ content: $tab-active-wrap-before-content;
113
+ display: $tab-active-wrap-before-display;
114
+ position: $tab-active-wrap-before-position;
115
+ top: $tab-active-wrap-before-top;
116
+ width: $tab-active-wrap-before-width;
125
117
  }
126
118
  }
127
119
 
@@ -167,6 +159,10 @@
167
159
  }
168
160
  }
169
161
 
162
+ &.e-reorder-active-item:not(.e-vertical) .e-toolbar-pop .e-toolbar-item.e-active {
163
+ border: $tab-active-item-hide-border;
164
+ }
165
+
170
166
  .e-toolbar-pop {
171
167
  background: $tab-pop-bg-color;
172
168
  border: $tab-pop-border;
@@ -193,34 +189,44 @@
193
189
 
194
190
  &:hover {
195
191
  background: $tab-hover-bg-color;
192
+ border: $tab-pop-wrap-hover-border;
193
+ border-radius: $tab-pop-wrap-hover-border-radius;
196
194
 
197
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
198
- border-color: $tab-wrap-hover-border-color;
195
+ .e-tab-text,
196
+ .e-tab-icon,
197
+ .e-close-icon {
198
+ color: $tab-hover-text-color;
199
199
  }
200
200
 
201
- @if $skin-name == 'highcontrast' {
202
- background: $tab-wrap-hover-bg-color;
201
+ .e-tab-icon,
202
+ .e-close-icon {
203
+ color: $tab-pop-wrap-hover-close-color;
203
204
  }
205
+ }
206
+
207
+ &:active {
208
+ background: $tab-active-bg-color;
209
+ border-color: $tab-pop-wrap-active-border-color;
204
210
 
205
211
  .e-tab-text,
206
212
  .e-tab-icon {
207
- color: $tab-hover-text-color;
213
+ color: $tab-pop-wrap-active-icon-font;
208
214
  }
209
215
  }
216
+ }
210
217
 
211
- &:active {
212
- background: $tab-active-bg-color;
218
+ &.e-active .e-tab-wrap {
213
219
 
214
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
215
- border-color: $tab-wrap-active-border-color;
216
- }
217
- @if $skin-name == 'highcontrast' {
220
+ .e-tab-text,
221
+ .e-tab-icon {
222
+ color: $tab-active-text-color;
223
+ }
224
+ }
218
225
 
219
- .e-tab-text,
220
- .e-tab-icon {
221
- color: $tab-wrap-active-color;
222
- }
223
- }
226
+ &.e-disable.e-overlay {
227
+ .e-tab-text,
228
+ .e-tab-icon {
229
+ color: $tab-disable-text-color;
224
230
  }
225
231
  }
226
232
  }
@@ -228,90 +234,61 @@
228
234
 
229
235
  .e-scroll-nav,
230
236
  .e-hscroll:not(.e-scroll-device) .e-scroll-nav {
231
- background: inherit;
237
+ background: $tab-scroll-nav-bg;
232
238
  border: 0;
233
239
 
234
240
  .e-nav-arrow {
235
- color: $tab-nav-icon-color;
236
-
237
- @if $skin-name == 'fabric' {
238
- border: 1px solid $tab-wrap-border-color;
239
- }
240
-
241
- @if $skin-name == 'highcontrast' {
242
- border: 2px solid $tab-wrap-border-color;
243
- }
241
+ color: $tab-scroll-nav-arrow-font;
242
+ border: $tab-item-active-wrap-border;
244
243
 
245
244
  &:hover {
246
245
  background: $tab-hover-nav-bg-color;
247
246
  color: $tab-hover-nav-icon-color;
248
-
249
- @if $skin-name == 'highcontrast' {
250
- border: 2px solid $tab-wrap-hover-border-color;
251
- }
247
+ border: $tab-scroll-arrow-hover-border;
252
248
  }
253
249
 
254
250
  &:active {
255
251
  box-shadow: none;
256
-
257
- @if $skin-name == 'fabric' {
258
- border: 1px solid $tab-wrap-active-border-color;
259
- }
252
+ border: $tab-scroll-arrow-active-border;
260
253
  }
261
254
  }
262
255
 
263
256
  &:focus {
257
+ background: $tab-scroll-nav-bg;
264
258
 
265
259
  .e-nav-arrow {
266
260
  background: $tab-nav-focus-bg-color;
267
261
  color: $tab-nav-focus-icon-color;
268
-
269
- @if $skin-name == 'fabric' {
270
- border: 1px solid $tab-wrap-focus-border-color;
271
- }
272
-
273
- @if $skin-name == 'highcontrast' {
274
- border: 2px solid $tab-wrap-focus-border-color;
275
- }
262
+ border: $tab-scroll-focus-arrow-border;
276
263
 
277
264
  &:hover {
278
265
  background: $tab-hover-nav-bg-color;
279
266
  color: $tab-hover-nav-icon-color;
280
-
281
- @if $skin-name == 'highcontrast' {
282
- border: 2px solid $tab-nav-focus-hover-border-color;
283
- }
284
267
  }
285
268
 
286
269
  &:active {
287
- @if $skin-name == 'highcontrast' {
288
- background: $tab-nav-focus-active-bg-color;
289
- border-color: $tab-nav-focus-active-border-color;
290
- color: $tab-nav-focus-active-color;
291
- }
270
+ background: $tab-scroll-focus-arrow-active-bg;
271
+ border-color: $tab-scroll-focus-arrow-active-border-color;
272
+ color: $tab-scroll-focus-arrow-active-color;
292
273
  }
293
274
  }
294
275
  }
295
276
 
296
277
  &:active {
297
-
298
- @if $skin-name == 'bootstrap' {
299
- box-shadow: $tab-nav-active-box-shadow;
300
- }
278
+ box-shadow: none;
279
+ background: $tab-scroll-nav-bg;
280
+ border: $tab-scroll-active-border;
301
281
  }
302
282
 
303
283
  &.e-overlay {
304
284
 
305
285
  .e-nav-arrow {
306
- color: $tab-disable-nav-icon-color;
286
+ color: $tab-scroll-overlay-arrow-color;
307
287
 
308
288
  &:hover {
309
- color: $tab-disable-nav-icon-color;
310
-
311
- @if $skin-name == 'highcontrast' {
312
- background: $tab-nav-disable-hover-bg-color;
313
- border-color: $tab-nav-disable-hover-border-color;
314
- }
289
+ color: $tab-scroll-overlay-arrow-hover-color;
290
+ background: $tab-scroll-overlay-arrow-hover-bg;
291
+ border-color: $tab-scroll-overlay-arrow-hover-border-color;
315
292
  }
316
293
  }
317
294
  }
@@ -325,27 +302,12 @@
325
302
  .e-popup-up-icon,
326
303
  .e-popup-down-icon {
327
304
  color: $tab-pop-icon-color;
328
-
329
- @if $skin-name == 'fabric' {
330
- border: 1px solid $tab-wrap-border-color;
331
- }
332
-
333
- @if $skin-name == 'highcontrast' {
334
- border: 2px solid $tab-wrap-border-color;
335
- }
305
+ border: $tab-pop-icon-border;
336
306
 
337
307
  &:hover {
338
308
  background: $tab-pop-icon-hover-bg-color;
339
- border: $tab-pop-icon-hover-border;
309
+ border: $tab-pop-up-icon-hover-border;
340
310
  border-radius: $tab-active-item-border-radius;
341
-
342
- @if $skin-name == 'fabric' {
343
- border: 1px solid $tab-wrap-hover-border-color;
344
- }
345
-
346
- @if $skin-name == 'highcontrast' {
347
- border: 2px solid $tab-wrap-hover-border-color;
348
- }
349
311
  }
350
312
  }
351
313
 
@@ -357,61 +319,33 @@
357
319
  }
358
320
 
359
321
  &:focus {
360
-
322
+ background: $tab-pop-focus-bg;
361
323
  .e-popup-up-icon,
362
324
  .e-popup-down-icon {
363
325
  background: $tab-nav-focus-bg-color;
364
- border: $tab-pop-icon-focus-border;
326
+ border: $tab-pop-up-icon-focus-border;
365
327
  border-radius: $tab-active-item-border-radius;
366
328
  color: $tab-nav-focus-icon-color;
367
329
 
368
- @if $skin-name == 'fabric' {
369
- border: 1px solid $tab-nav-focus-border-color;
370
- }
371
-
372
- @if $skin-name == 'bootstrap' {
373
- background: $tab-nav-focus-bg-color;
374
- }
375
-
376
- @if $skin-name == 'highcontrast' {
377
- border: 2px solid $tab-wrap-focus-border-color;
378
- }
379
-
380
330
  &:hover {
381
331
  background: $tab-pop-icon-hover-bg-color;
382
- border: $tab-pop-icon-hover-border;
332
+ border: $tab-pop-up-down-icon-hover-border;
383
333
  border-radius: $tab-active-item-border-radius;
384
-
385
- @if $skin-name == 'fabric' {
386
- border: 1px solid $tab-nav-focus-hover-border-color;
387
- }
388
-
389
- @if $skin-name == 'highcontrast' {
390
- border: 2px solid $tab-nav-focus-hover-border-color;
391
- }
392
334
  }
393
335
 
394
336
  &:active {
395
- background: $tab-pop-icon-hover-bg-color;
396
- border: $tab-pop-icon-active-border;
337
+ background: $tab-pop-focus-icon-active-bg;
338
+ color: $tab-pop-focus-icon-active-color;
339
+ border: $tab-pop-up-icon-active-border;
397
340
  border-radius: $tab-active-item-border-radius;
398
341
  box-shadow: $tab-pop-border-box-shadow;
399
-
400
- @if $skin-name == 'fabric' {
401
- border: 1px solid $tab-nav-focus-active-border-color;
402
- }
403
-
404
- @if $skin-name == 'highcontrast' {
405
- background: $tab-nav-focus-active-bg-color;
406
- border: 2px solid $tab-nav-focus-active-border-color;
407
- color: $tab-nav-focus-active-color;
408
- }
409
342
  }
410
343
  }
411
344
  }
412
345
 
413
346
  &:hover {
414
347
  border: 0;
348
+ background: $tab-pop-hover-bg;
415
349
 
416
350
  &:active {
417
351
  background: transparent;
@@ -419,66 +353,64 @@
419
353
  }
420
354
 
421
355
  &:active {
422
-
423
- @if $skin-name == 'bootstrap' {
424
- box-shadow: $tab-nav-active-box-shadow;
425
- }
356
+ box-shadow: none;
357
+ background: $tab-pop-focus-bg;
426
358
  }
427
359
 
428
360
  &.e-nav-active {
429
- background: inherit;
430
- border: 0;
361
+ background: $tab-pop-nav-active-bg;
362
+ border: $tab-pop-nav-active-border;
431
363
  box-shadow: none;
364
+ border-radius: $tab-pop-nav-active-border-radius;
432
365
 
433
- @if $skin-name == 'highcontrast' {
434
- .e-icons {
435
- color: $tab-nav-pop-arrow-active-color;
436
- }
366
+ .e-icons {
367
+ color: $tab-pop-active-icons-color;
368
+ }
437
369
 
438
- &:focus {
439
- border: $tab-nav-pop-arrow-active-focus-border;
440
- }
370
+ &:focus {
371
+ border: $tab-pop-nav-active-border;
441
372
  }
442
373
  }
443
374
  }
444
375
 
445
- &:nth-child(even) {
446
-
447
- @if $skin-name == 'bootstrap' {
376
+ &.e-horizontal-bottom {
377
+ border-color: $tab-bottom-border-color;
378
+ border-style: solid;
379
+ border-width: $tab-bottom-border-width;
448
380
 
449
- &[style*= 'overflow: hidden'] {
450
- border: 0;
451
- }
452
-
453
- &[style*= 'overflow: hidden'] .e-toolbar-items {
454
- border-bottom: 0;
455
- border-top: $tab-items-border;
456
- }
381
+ &[style *= 'overflow: hidden'] {
382
+ border-color: $tab-bottom-border-color;
383
+ border-style: solid;
384
+ border-width: $tab-bottom-border-width;
457
385
  }
458
- @else {
459
- border-bottom: 0;
460
- border-top: $tab-hdr-border;
386
+
387
+ &[style *= 'overflow: hidden'] .e-toolbar-items {
388
+ border-color: $tab-bottom-hidden-items-border-color;
389
+ border-style: solid;
390
+ border-width: $tab-bottom-hidden-items-border-width;
461
391
  }
462
392
 
463
393
  .e-toolbar-item {
464
394
 
465
- &.e-active {
466
- border-bottom: 0;
395
+ .e-tab-wrap:hover {
467
396
  border-radius: $tab-bottom-active-item-border-radius;
468
- border-top: $tab-active-item-hide-border;
469
- border-top-color: $tab-active-item-border-color;
397
+ }
470
398
 
471
- @if $skin-name == 'bootstrap' {
472
- border-bottom: 1px solid $tab-even-active-item-bottom-border-color;
473
- }
399
+ &.e-active {
400
+ border-color: $tab-bottom-active-border-color;
401
+ border-style: solid;
402
+ border-width: $tab-bottom-active-border-width;
403
+ margin-top: $tab-bottom-active-margin-top;
404
+ border-radius: $tab-bottom-active-item-border-radius;
474
405
  }
475
406
  }
476
407
  }
477
408
 
478
409
  &.e-vertical {
410
+ border-bottom: 0;
479
411
 
480
412
  &::before {
481
- border-width: 0 1px 0 0;
413
+ border-width: $tab-vertical-before-border-width;
482
414
  }
483
415
 
484
416
  .e-toolbar-item {
@@ -493,9 +425,13 @@
493
425
 
494
426
  .e-toolbar-item {
495
427
 
428
+ .e-tab-wrap:hover {
429
+ border-radius: $tab-left-active-item-border-radius;
430
+ }
431
+
496
432
  &.e-active {
497
433
  border-radius: $tab-left-active-item-border-radius;
498
- border-right: $tab-active-item-hide-border;
434
+ border-right: $tab-item-active-border-bottom;
499
435
  }
500
436
  }
501
437
  }
@@ -504,8 +440,12 @@
504
440
 
505
441
  .e-toolbar-item {
506
442
 
443
+ .e-tab-wrap:hover {
444
+ border-radius: $tab-right-active-item-border-radius;
445
+ }
446
+
507
447
  &.e-active {
508
- border-left: $tab-active-item-hide-border;
448
+ border-left: $tab-item-active-border-bottom;
509
449
  border-radius: $tab-right-active-item-border-radius;
510
450
  }
511
451
  }
@@ -537,13 +477,10 @@
537
477
 
538
478
  &:hover {
539
479
  background: $tab-v-nav-hover-bg-color;
480
+ border-color: $tab-vertical-scroll-hover-border-color;
540
481
 
541
- @if $skin-name == 'highcontrast' {
542
- border-color: $border-fg;
543
-
544
- &:active:focus {
545
- background: $selection-bg;
546
- }
482
+ &:active:focus {
483
+ background: $tab-vertical-scroll-hover-active-bg;
547
484
  }
548
485
 
549
486
  .e-nav-arrow {
@@ -561,10 +498,7 @@
561
498
  &:hover:active {
562
499
 
563
500
  .e-nav-arrow {
564
-
565
- @if $skin-name == 'highcontrast' {
566
- color: $selection-font;
567
- }
501
+ color: $tab-vertical-focus-active-arrow-color;
568
502
  }
569
503
  }
570
504
 
@@ -588,6 +522,7 @@
588
522
  &:hover {
589
523
  background: inherit;
590
524
  border: 0;
525
+ color: $tab-vertical-pop-icon-hover-color;
591
526
  }
592
527
  }
593
528
 
@@ -607,10 +542,7 @@
607
542
  }
608
543
 
609
544
  &:active {
610
-
611
- @if $skin-name == 'highcontrast' {
612
- color: $content-font;
613
- }
545
+ color: $tab-vertical-pop-icon-active-color;
614
546
  }
615
547
  }
616
548
  }
@@ -626,25 +558,22 @@
626
558
  }
627
559
  }
628
560
 
629
- &.e-focused .e-tab-header {
561
+ &.e-focused > .e-tab-header {
630
562
 
631
563
  .e-toolbar-item {
632
564
 
633
565
  .e-tab-wrap:focus {
634
566
  background: $tab-focus-bg-color;
635
-
636
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
637
- border-color: $tab-focused-wrap-focus-border-color;
638
- }
639
-
640
- @if $skin-name == 'highcontrast' {
641
- border-style: solid;
642
- }
567
+ border: $tab-focused-wrap-focus-border;
643
568
 
644
569
  .e-tab-icon,
645
570
  .e-tab-text {
646
571
  color: $tab-focus-text-color;
647
572
  }
573
+
574
+ .e-tab-icon {
575
+ color: $tab-focused-wrap-focus-icon-color;
576
+ }
648
577
  }
649
578
  }
650
579
 
@@ -654,11 +583,6 @@
654
583
 
655
584
  .e-nav-arrow {
656
585
  color: $tab-nav-focus-icon-color;
657
-
658
- @if $skin-name == 'highcontrast' {
659
- background: inherit;
660
- border: 2px solid $tab-focused-nav-focus-border-color;
661
- }
662
586
  }
663
587
  }
664
588
  }
@@ -670,11 +594,8 @@
670
594
  .e-popup-up-icon,
671
595
  .e-popup-down-icon {
672
596
  color: $tab-nav-focus-icon-color;
673
-
674
- @if $skin-name == 'highcontrast' {
675
- background: inherit;
676
- border: 2px solid $tab-focused-nav-focus-border-color;
677
- }
597
+ background: $tab-scroll-focused-nav-focus-icon-bg;
598
+ border: $tab-scroll-focused-nav-focus-icon-border;
678
599
  }
679
600
  }
680
601
  }
@@ -684,14 +605,7 @@
684
605
  .e-scroll-nav {
685
606
 
686
607
  &:focus {
687
-
688
- @if $skin-name == 'fabric' {
689
- border-color: $neutral-secondary-alt;
690
- }
691
-
692
- @if $skin-name == 'highcontrast' {
693
- border-color: $tab-focused-nav-focus-border-color;
694
- }
608
+ border-color: $tab-vertical-focused-nav-focus-border-color;
695
609
 
696
610
  .e-nav-arrow {
697
611
  border: 0;
@@ -708,18 +622,6 @@
708
622
 
709
623
  &:focus {
710
624
  outline: $tab-v-pop-focus-outline;
711
-
712
- .e-popup-up-icon,
713
- .e-popup-down-icon {
714
-
715
- @if $skin-name == 'fabric' {
716
- border-color: $neutral-secondary-alt;
717
- }
718
-
719
- @if $skin-name == 'highcontrast' {
720
- border-color: $tab-focused-nav-focus-border-color;
721
- }
722
- }
723
625
  }
724
626
  }
725
627
  }
@@ -760,14 +662,12 @@
760
662
  .e-tab-header {
761
663
  border-bottom: $tab-fill-hdr-border;
762
664
 
763
- @if $skin-name == 'bootstrap' {
764
- .e-toolbar-items.e-hscroll {
765
- border: 0;
766
- }
665
+ .e-toolbar-items.e-hscroll {
666
+ border: 0;
767
667
  }
768
668
 
769
669
  .e-toolbar-item {
770
- border: $tab-alt-item-border;
670
+ border: 0;
771
671
 
772
672
  .e-ripple-element {
773
673
  background: $tab-fill-ripple-bg-color;
@@ -780,6 +680,10 @@
780
680
  &:hover .e-tab-icon {
781
681
  color: $tab-hover-text-color;
782
682
  }
683
+
684
+ &:hover .e-tab-icon {
685
+ color: $tab-fill-wrap-hover-icon-color;
686
+ }
783
687
  }
784
688
 
785
689
  .e-text-wrap {
@@ -792,10 +696,7 @@
792
696
  .e-tab-wrap {
793
697
  background: $tab-fill-active-bg-color;
794
698
  border-radius: $tab-active-item-border-radius;
795
-
796
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
797
- border-color: $tab-fill-active-wrap-border-color;
798
- }
699
+ border-color: $tab-fill-active-tabwrap-border-color;
799
700
 
800
701
  &:hover .e-tab-text,
801
702
  &:hover .e-tab-icon {
@@ -808,9 +709,7 @@
808
709
  }
809
710
 
810
711
  .e-text-wrap::before {
811
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
812
- border: 0;
813
- }
712
+ border: $tab-fill-active-text-before-border;
814
713
  }
815
714
 
816
715
  .e-tab-text,
@@ -823,7 +722,7 @@
823
722
  }
824
723
 
825
724
  .e-close-icon:hover {
826
- color: $tab-alt-active-hover-close-icon-color;
725
+ color: $tab-fill-active-close-hover-color;
827
726
  }
828
727
  }
829
728
  }
@@ -831,17 +730,32 @@
831
730
  .e-toolbar-pop {
832
731
 
833
732
  .e-toolbar-item:active:hover {
733
+ .e-tab-text,
734
+ .e-tab-icon {
735
+ color: $tab-fill-pop-active-icon-color;
736
+ }
737
+ }
738
+
739
+ .e-tab-wrap {
740
+ &:hover {
741
+ background: $tab-fill-pop-wrap-hover-bg;
742
+
743
+ .e-tab-text {
744
+ color: $tab-fill-pop-wrap-hover-text-color;
745
+ }
834
746
 
835
- @if $skin-name == 'highcontrast' {
836
- .e-tab-text,
837
747
  .e-tab-icon {
838
- color: $tab-fill-pop-item-active-hover-color;
748
+ color: $tab-fill-pop-wrap-hover-icon-color;
749
+ }
750
+
751
+ .e-close-icon {
752
+ color: $tab-fill-pop-wrap-hover-close-color;
839
753
  }
840
754
  }
841
755
  }
842
756
  }
843
757
 
844
- &:nth-child(even) {
758
+ &.e-horizontal-bottom {
845
759
  border-bottom: 0;
846
760
  border-top: $tab-fill-hdr-border;
847
761
 
@@ -877,7 +791,7 @@
877
791
  }
878
792
  }
879
793
 
880
- &:nth-child(even) {
794
+ &.e-horizontal-bottom {
881
795
 
882
796
  .e-toolbar-item.e-active .e-tab-wrap {
883
797
  border-radius: $tab-fill-even-active-wrap-corner;
@@ -914,7 +828,7 @@
914
828
  }
915
829
  }
916
830
 
917
- &:nth-child(even) {
831
+ &.e-horizontal-bottom {
918
832
  border-bottom: 0;
919
833
  border-top: $tab-fill-disable-hdr-border;
920
834
  }
@@ -926,32 +840,26 @@
926
840
  .e-toolbar-item {
927
841
 
928
842
  .e-tab-wrap:focus .e-tab-icon,
929
- .e-tab-wrap:focus .e-tab-text {
930
- color: $tab-alt-hover-text-color;
843
+ .e-tab-wrap:focus .e-tab-text,
844
+ .e-tab-wrap:focus .e-close-icon {
845
+ color: $tab-hover-text-color;
931
846
  }
932
847
 
933
848
  &.e-active .e-tab-wrap:focus {
934
849
  background: $tab-fill-focus-bg-color;
850
+ border-color: $tab-fill-focused-active-tabwrap-focus-border-color;
935
851
 
936
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
937
- border-color: $tab-fill-focused-active-wrap-focus-border-color;
938
- }
939
-
940
- @if $skin-name == 'bootstrap' {
941
-
942
- .e-tab-text,
943
- .e-close-icon {
944
- color: $tab-fill-focused-active-wrap-focus-color;
945
- }
852
+ .e-tab-text {
853
+ color: $tab-fill-focused-active-wrap-focus-text-color;
946
854
  }
947
855
 
948
- @if $skin-name == 'highcontrast' {
949
- border-style: solid;
856
+ .e-close-icon {
857
+ color: $tab-fill-focused-active-wrap-focus-close-color;
950
858
  }
951
859
 
952
860
  .e-tab-text,
953
861
  .e-tab-icon {
954
- color: $tab-alt-active-hover-text-color;
862
+ color: $tab-alt-active-style-hover-icon-color;
955
863
  }
956
864
  }
957
865
  }
@@ -968,18 +876,17 @@
968
876
  background: $tab-alt-item-bg-color;
969
877
  }
970
878
 
971
- @if $skin-name == 'bootstrap' {
972
- .e-toolbar-items.e-hscroll {
973
- border: 0;
974
- }
879
+ .e-toolbar-items.e-hscroll {
880
+ border: 0;
975
881
  }
976
882
 
977
883
  .e-indicator {
978
884
  background: $tab-alt-border-color;
885
+ bottom: $tab-background-indicator-bottom;
979
886
  }
980
887
 
981
888
  .e-toolbar-item {
982
- border: $tab-alt-item-border;
889
+ border: 0;
983
890
 
984
891
  .e-ripple-element {
985
892
  background: $tab-alt-ripple-bg-color;
@@ -987,127 +894,98 @@
987
894
 
988
895
  .e-tab-wrap {
989
896
  background: $tab-alt-item-bg-color;
897
+ border-color: $tab-background-wrap-border-color;
990
898
 
991
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
992
- border-color: $tab-alt-wrap-border-color;
899
+ .e-tab-icon,
900
+ .e-close-icon {
901
+ color: $tab-alt-text-color;
993
902
  }
994
903
 
995
- &:hover {
996
- background: $tab-item-hover-bg-color;
997
-
998
- .e-tab-text,
999
- .e-tab-icon {
1000
- color: $tab-alt-active-text-color;
904
+ .e-tab-text {
905
+ color: $tab-background-text-color;
906
+ }
1001
907
 
1002
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
1003
- color: $tab-alt-wrap-hover-color;
1004
- }
1005
- }
908
+ .e-close-icon:hover {
909
+ color: $tab-background-close-hover-color;
910
+ }
1006
911
 
1007
- @if $skin-name == 'material' {
1008
- .e-close-icon {
912
+ &:hover {
913
+ background: $tab-bg-item-wrap-hover-bg-color;
914
+ background-color: $tab-background-wrap-hover-bg-color;
915
+ border-color: $tab-background-wrap-hover-border-color;
1009
916
 
1010
- &:hover,
1011
- &:active {
1012
- color: $tab-alt-wrap-hover-close-icon-focus-or-active-color;
1013
- }
1014
- }
917
+ .e-tab-text {
918
+ color: $tab-background-wrap-hover-text-color;
1015
919
  }
1016
920
 
1017
- @if $skin-name == 'bootstrap' {
1018
- .e-tab-text,
1019
- .e-close-icon {
1020
- color: $tab-alt-wrap-hover-color;
1021
- }
921
+ .e-tab-icon {
922
+ color: $tab-background-wrap-hover-icon-color;
1022
923
  }
1023
924
 
1024
- @if $skin-name == 'highcontrast' {
1025
- background-color: $tab-alt-wrap-hover-bg-color;
1026
- border-color: $tab-alt-wrap-hover-border-color;
1027
-
1028
- .e-tab-text,
1029
- .e-close-icon {
1030
- color: $tab-alt-wrap-hover-color;
1031
- }
1032
-
1033
- .e-close-icon {
925
+ .e-close-icon {
926
+ color: $tab-background-wrap-hover-close-color;
1034
927
 
1035
- &:hover,
1036
- &:active {
1037
- color: $tab-alt-wrap-hover-close-active-or-hover-color;
1038
- }
928
+ &:hover,
929
+ &:active {
930
+ color: $tab-background-close-hover-active-color;
1039
931
  }
1040
932
  }
1041
933
  }
1042
934
  }
1043
935
 
1044
- .e-tab-text,
1045
- .e-tab-icon,
1046
- .e-close-icon {
1047
- color: $tab-alt-text-color;
1048
- }
1049
-
1050
- .e-close-icon {
1051
- color: $tab-alt-close-icon-color;
1052
- }
1053
-
1054
- .e-close-icon:hover {
1055
- color: $tab-alt-hover-text-color;
1056
- }
1057
-
1058
936
  &.e-active {
1059
937
  border: 0;
938
+ margin: 0;
939
+ background: $tab-background-active-bg;
1060
940
 
1061
941
  .e-tab-wrap {
1062
- background: $tab-alt-active-bg-color;
1063
- border-radius: $tab-active-item-border-radius;
942
+ background: $tab-background-active-wrap-bg;
943
+ border-color: $tab-background-active-wrap-border-color;
944
+ border-radius: $tab-background-active-wrap-border-radius;
945
+ border-style: solid;
946
+ border-width: $tab-background-active-wrap-border-width;
1064
947
 
1065
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
1066
- border-color: $tab-alt-active-wrap-border-color;
948
+ .e-tab-text {
949
+ color: $tab-background-active-text-color;
1067
950
  }
1068
951
 
1069
- &:hover {
952
+ .e-tab-icon {
953
+ color: $tab-background-active-icon-color;
954
+ }
1070
955
 
1071
- .e-tab-text,
1072
- .e-tab-icon {
1073
- color: $tab-alt-active-text-color;
1074
- }
956
+ .e-close-icon {
957
+ color: $tab-background-active-close-color;
958
+ }
1075
959
 
1076
- @if $skin-name == 'fabric' {
1077
- background: $tab-alt-active-wrap-hover-bg-color;
960
+ &:hover {
961
+ background: $tab-background-active-hover-bg;
962
+ border-color: $tab-background-active-hover-border-color;
963
+ .e-tab-text {
964
+ color: $tab-background-active-hover-text-color;
1078
965
  }
1079
966
 
1080
- @if $skin-name == 'bootstrap' {
1081
- .e-close-icon {
1082
- color: $tab-alt-active-wrap-hover-close-color;
1083
- }
967
+ .e-tab-icon {
968
+ color: $tab-background-active-hover-icon-color;
1084
969
  }
1085
970
 
1086
- @if $skin-name == 'highcontrast' {
1087
- background: $tab-alt-active-wrap-hover-bg-color;
1088
- border-color: $tab-alt-active-wrap-hover-border-color;
971
+ .e-close-icon {
972
+ color: $tab-background-active-hover-close-color;
1089
973
 
1090
- .e-tab-icon,
1091
- .e-tab-text,
1092
- .e-close-icon {
1093
- color: $tab-alt-active-wrap-hover-color;
974
+ &:hover {
975
+ color: $tab-background-active-close-hover-color;
1094
976
  }
1095
977
 
1096
- .e-close-icon {
1097
-
1098
- &:hover,
1099
- &:active {
1100
- color: $tab-alt-active-wrap-hover-close-hover-or-active-color;
1101
- }
978
+ &:active {
979
+ color: $tab-background-activeitem-close-active-color;
1102
980
  }
981
+ }
1103
982
 
1104
- &:focus {
1105
- background: $tab-alt-active-wrap-hover-focus-bg-color;
983
+ &:focus {
984
+ background: $tab-background-active-wrap-focus-bg;
1106
985
 
1107
- .e-tab-icon,
1108
- .e-tab-text {
1109
- color: $tab-alt-active-wrap-hover-focus-color;
1110
- }
986
+ .e-tab-icon,
987
+ .e-tab-text {
988
+ color: $tab-background-active-wrap-focus-text-color;
1111
989
  }
1112
990
  }
1113
991
  }
@@ -1117,39 +995,38 @@
1117
995
 
1118
996
  .e-tab-text,
1119
997
  .e-tab-icon {
1120
- color: $tab-alt-active-text-color;
998
+ color: $tab-background-active-wrap-focus-icon;
1121
999
  }
1122
1000
  }
1123
1001
 
1124
1002
  &:focus:hover {
1125
1003
 
1126
- @if $skin-name == 'bootstrap' {
1004
+ .e-tab-text {
1005
+ color: $tab-background-active-wrap-focushover-text-color;
1006
+ }
1127
1007
 
1128
- .e-tab-text,
1129
- .e-close-icon {
1130
- color: $tab-alt-active-text-color;
1131
- }
1008
+ .e-close-icon {
1009
+ color: $tab-background-active-wrap-focushover-close-color;
1132
1010
  }
1133
1011
  }
1134
1012
  }
1135
1013
 
1136
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
1137
- .e-text-wrap::before {
1138
- border: 0;
1139
- }
1014
+ .e-text-wrap::before {
1015
+ border: $tab-nrml-bottom-wrap-before-top;
1140
1016
  }
1141
1017
 
1142
1018
  .e-tab-text,
1143
1019
  .e-tab-icon {
1144
- color: $tab-alt-active-text-color;
1020
+ color: $tab-background-active-text-icon-color;
1145
1021
  }
1146
1022
 
1147
1023
  .e-close-icon {
1148
- color: $tab-alt-active-close-icon-color;
1024
+ color: $tab-background-active-close-icon-color;
1149
1025
  }
1150
1026
 
1151
- .e-close-icon:hover {
1152
- color: $tab-alt-active-hover-close-icon-color;
1027
+ .e-close-icon:hover,
1028
+ .e-tab-text:hover {
1029
+ color: $tab-background-active-close-text-hover-color;
1153
1030
  }
1154
1031
 
1155
1032
  &.e-itop .e-tab-wrap,
@@ -1175,72 +1052,55 @@
1175
1052
  .e-tab-wrap {
1176
1053
 
1177
1054
  .e-tab-text,
1178
- .e-tab-icon {
1179
- color: $tab-alt-text-color;
1055
+ .e-tab-icon,
1056
+ .e-close-icon {
1057
+ color: $tab-background-pop-text-color;
1180
1058
  }
1181
1059
 
1182
1060
  &:hover {
1183
- background: $tab-alt-hover-bg-color;
1061
+ background: $tab-background-pop-wrap-hover-bg;
1184
1062
 
1185
1063
  .e-tab-text,
1186
- .e-tab-icon {
1187
- color: $tab-alt-active-text-color;
1188
-
1189
- @if $skin-name == 'fabric' or $skin-name == 'bootstrap' or $skin-name == 'highcontrast' {
1190
- color: $tab-alt-pop-wrap-hover-color;
1191
- }
1064
+ .e-tab-icon,
1065
+ .e-close-icon {
1066
+ color: $tab-background-pop-wrap-hover-text-color;
1192
1067
  }
1193
1068
  }
1194
1069
 
1195
1070
  &:active {
1196
- @if $skin-name == 'highcontrast' {
1197
- background: $tab-alt-pop-wrap-active-bg-color;
1071
+ .e-tab-text {
1072
+ color: $tab-background-pop-wrap-active-text-color;
1073
+ }
1198
1074
 
1199
- .e-tab-text,
1200
- .e-close-icon {
1201
- color: $tab-alt-pop-wrap-active-color;
1202
- }
1075
+ .e-tab-icon {
1076
+ color: $tab-background-pop-wrap-active-icon-color;
1077
+ }
1078
+
1079
+ .e-close-icon {
1080
+ color: $tab-background-pop-wrap-active-close-color;
1203
1081
  }
1204
1082
  }
1205
1083
  }
1206
1084
  }
1207
1085
  }
1208
1086
 
1087
+ .e-hscroll:not(.e-scroll-device) .e-scroll-nav,
1209
1088
  .e-scroll-nav {
1089
+ background: $tab-background-scroll-bg;
1210
1090
 
1211
1091
  .e-nav-arrow {
1212
1092
  color: $tab-alt-nav-icon-color;
1213
-
1214
- @if $skin-name == 'fabric' {
1215
- border: 1px solid $tab-alt-nav-border-color;
1216
- }
1217
-
1218
- @if $skin-name == 'highcontrast' {
1219
- border: 2px solid $tab-alt-nav-border-color;
1220
- }
1093
+ border: $tab-background-scroll-arrow-border;
1221
1094
 
1222
1095
  &:hover {
1223
- background: $tab-bg-hover-nav-bg-color;
1096
+ background: $tab-background-scroll-arrow-hover-bg;
1224
1097
  color: $tab-bg-hover-nav-icon-color;
1225
-
1226
- @if $skin-name == 'highcontrast' {
1227
- border-color: $tab-alt-nav-hover-border-color;
1228
- color: $tab-alt-nav-hover-color;
1229
- }
1098
+ border-color: $tab-background-scroll-arrow-hover-border-color;
1230
1099
  }
1231
1100
 
1232
1101
  &:active {
1233
-
1234
- @if $skin-name == 'highcontrast' {
1235
- background: $tab-alt-nav-active-bg-color;
1236
- color: $tab-alt-nav-active-color;
1237
- }
1238
-
1239
- .e-icons {
1240
- @if $skin-name == 'highcontrast' {
1241
- color: $tab-alt-nav-active-color;
1242
- }
1243
- }
1102
+ background: $tab-background-scroll-arrow-active-bg;
1103
+ color: $tab-background-scroll-arrow-active-color;
1244
1104
  }
1245
1105
  }
1246
1106
 
@@ -1248,32 +1108,18 @@
1248
1108
 
1249
1109
  .e-nav-arrow {
1250
1110
  color: $tab-bg-hover-nav-icon-color;
1251
-
1252
- @if $skin-name == 'fabric' {
1253
- border: 1px solid $tab-nav-focus-border-color;
1254
- }
1255
-
1256
- @if $skin-name == 'highcontrast' {
1257
- background: transparent;
1258
- border: 2px solid $tab-alt-nav-focus-border-color;
1259
- }
1111
+ border: $tab-background-scroll-focus-arrow-border;
1112
+ background: $tab-background-scroll-focus-arrow-bg;
1260
1113
 
1261
1114
  &:hover {
1262
1115
  background: $tab-bg-hover-nav-bg-color;
1263
1116
  color: $tab-bg-hover-nav-icon-color;
1264
-
1265
- @if $skin-name == 'highcontrast' {
1266
- border: 2px solid $tab-nav-focus-hover-border-color;
1267
- color: $tab-alt-nav-focus-hover-color;
1268
- }
1269
1117
  }
1270
1118
 
1271
1119
  &:active {
1272
- @if $skin-name == 'highcontrast' {
1273
- background: $tab-nav-focus-active-bg-color;
1274
- border-color: $tab-nav-focus-active-border-color;
1275
- color: $tab-nav-focus-active-color;
1276
- }
1120
+ background: $tab-background-nav-focus-active-bg;
1121
+ border-color: $tab-background-nav-focus-active-border-color;
1122
+ color: $tab-background-nav-focus-active-color;
1277
1123
  }
1278
1124
  }
1279
1125
  }
@@ -1283,48 +1129,25 @@
1283
1129
  }
1284
1130
  }
1285
1131
 
1132
+ .e-hor-nav:not(.e-expended-nav),
1286
1133
  .e-hor-nav {
1134
+ background: $tab-background-hor-nav-bg;
1287
1135
 
1288
1136
  .e-popup-up-icon,
1289
1137
  .e-popup-down-icon {
1290
- color: $tab-alt-nav-icon-color;
1291
-
1292
- @if $skin-name == 'fabric' {
1293
- border: 1px solid $tab-alt-nav-border-color;
1294
- }
1295
-
1296
- @if $skin-name == 'highcontrast' {
1297
- border: 2px solid $tab-alt-nav-border-color;
1298
- }
1138
+ color: $tab-background-pop-icon-color;
1139
+ border: $tab-background-pop-icon-border;
1299
1140
 
1300
1141
  &:hover {
1301
- background: $tab-bg-hover-nav-bg-color;
1142
+ background: $tab-background-pop-icon-hover-bg;
1143
+ border-color: $tab-background-pop-icon-hover-border-color;
1302
1144
  color: $tab-bg-hover-nav-icon-color;
1303
-
1304
- @if $skin-name == 'bootstrap' {
1305
- background: $tab-alt-nav-hover-bg-color;
1306
- }
1307
-
1308
- @if $skin-name == 'highcontrast' {
1309
- border-color: $tab-alt-nav-hover-border-color;
1310
- color: $tab-alt-nav-hover-color;
1311
- }
1312
1145
  }
1313
1146
 
1314
1147
  &:active {
1315
-
1316
- .e-icons {
1317
- @if $skin-name == 'highcontrast' {
1318
- color: $tab-alt-nav-active-color;
1319
- }
1320
- }
1321
-
1322
1148
  &:hover {
1323
-
1324
- @if $skin-name == 'highcontrast' {
1325
- background: $tab-alt-nav-active-bg-color;
1326
- color: $tab-alt-nav-active-color;
1327
- }
1149
+ background: $tab-background-pop-active-hover-bg;
1150
+ color: $tab-background-pop-active-hover-color;
1328
1151
  }
1329
1152
  }
1330
1153
  }
@@ -1334,31 +1157,17 @@
1334
1157
  .e-popup-up-icon,
1335
1158
  .e-popup-down-icon {
1336
1159
  color: $tab-bg-hover-nav-icon-color;
1337
-
1338
- @if $skin-name == 'fabric' {
1339
- border: 1px solid $tab-nav-focus-border-color;
1340
- }
1341
-
1342
- @if $skin-name == 'highcontrast' {
1343
- background: $tab-alt-nav-focus-bg-color;
1344
- border: 2px solid $tab-alt-nav-focus-border-color;
1345
- }
1160
+ background: $tab-background-focus-pop-bg;
1161
+ border: $tab-background-focus-pop-border;
1346
1162
 
1347
1163
  &:hover {
1348
-
1349
- @if $skin-name == 'highcontrast' {
1350
- background: $tab-alt-nav-focus-hover-bg-color;
1351
- border: 2px solid $tab-nav-focus-hover-border-color;
1352
- color: $tab-alt-nav-focus-hover-color;
1353
- }
1164
+ background: $tab-background-focus-pop-hover-bg;
1354
1165
  }
1355
1166
 
1356
1167
  &:active {
1357
- @if $skin-name == 'highcontrast' {
1358
- background: $tab-nav-focus-active-bg-color;
1359
- border-color: $tab-nav-focus-active-border-color;
1360
- color: $tab-nav-focus-active-color;
1361
- }
1168
+ background: $tab-background-popicon-focus-active-bg;
1169
+ border-color: $tab-background-popicon-focus-active-border-color;
1170
+ color: $tab-background-popicon-focus-active-color;
1362
1171
  }
1363
1172
  }
1364
1173
  }
@@ -1368,15 +1177,60 @@
1368
1177
  }
1369
1178
 
1370
1179
  &.e-nav-active {
1371
-
1372
1180
  .e-popup-up-icon {
1373
1181
  color: $tab-bg-hover-nav-icon-color;
1374
1182
  }
1375
1183
  }
1376
1184
  }
1377
1185
 
1186
+ &.e-horizontal-bottom {
1187
+ .e-toolbar-item.e-active {
1188
+ border: 0;
1189
+ margin: 0;
1190
+
1191
+ .e-tab-wrap {
1192
+ border-color: $tab-background-bottom-active-wrap-border-color;
1193
+ border-radius: $tab-background-bottom-active-wrap-border-radius;
1194
+ border-style: solid;
1195
+ border-width: $tab-background-bottom-active-wrap-border-width;
1196
+ }
1197
+ }
1198
+ }
1199
+
1378
1200
  &.e-vertical {
1379
1201
 
1202
+ &.e-vertical-left {
1203
+ .e-toolbar-item.e-active {
1204
+ border-color: $tab-background-vertical-left-active-border-color;
1205
+ border-style: solid;
1206
+ border-width: $tab-background-vertical-left-active-border-width;
1207
+ margin: 0;
1208
+
1209
+ .e-tab-wrap {
1210
+ border-color: $tab-background-bottom-active-wrap-border-color;
1211
+ border-radius: $tab-background-vertical-left-active-wrap-border-radius;
1212
+ border-style: solid;
1213
+ border-width: $tab-background-vertical-left-active-wrap-border-width;
1214
+ }
1215
+ }
1216
+ }
1217
+
1218
+ &.e-vertical-right {
1219
+ .e-toolbar-item.e-active {
1220
+ border-color: $tab-background-vertical-left-active-border-color;
1221
+ border-style: solid;
1222
+ border-width: $tab-background-vertical-right-active-border-width;
1223
+ margin: 0;
1224
+
1225
+ .e-tab-wrap {
1226
+ border-color: $tab-background-bottom-active-wrap-border-color;
1227
+ border-radius: $tab-background-vertical-right-active-wrap-border-radius;
1228
+ border-style: solid;
1229
+ border-width: $tab-background-vertical-right-active-wrap-border-width;
1230
+ }
1231
+ }
1232
+ }
1233
+
1380
1234
  .e-scroll-nav {
1381
1235
 
1382
1236
  .e-nav-arrow {
@@ -1475,7 +1329,7 @@
1475
1329
  &.e-accent .e-tab-header {
1476
1330
 
1477
1331
  .e-indicator {
1478
- background: $tab-border-color;
1332
+ background: $tab-background-accent-indicator-bg;
1479
1333
  }
1480
1334
 
1481
1335
  &.e-disable {
@@ -1491,73 +1345,68 @@
1491
1345
  .e-toolbar-item {
1492
1346
 
1493
1347
  .e-tab-wrap:focus {
1494
-
1495
- @if $skin-name == 'material' or $skin-name == 'bootstrap' {
1496
- background: $tab-alt-hover-bg-color;
1497
- }
1498
-
1499
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
1500
- border-color: $tab-wrap-focus-border-color;
1501
- }
1502
-
1503
- @if $skin-name == 'highcontrast' {
1504
- border-style: solid;
1505
- }
1348
+ background: $tab-background-focused-wrap-focus-bg;
1349
+ border-color: $tab-background-focused-wrap-focus-border-color;
1506
1350
 
1507
1351
  .e-tab-icon,
1508
- .e-tab-text {
1509
- color: $tab-alt-text-color;
1352
+ .e-tab-text,
1353
+ .e-close-icon {
1354
+ color: $tab-background-focused-wrap-focus-close-color;
1510
1355
  }
1511
1356
  }
1512
1357
 
1513
1358
  &.e-active {
1514
1359
 
1515
1360
  .e-tab-wrap:focus {
1516
-
1517
- @if $skin-name == 'material' or $skin-name == 'bootstrap' {
1518
- background: $tab-key-alt-active-focus-bg-color;
1519
- }
1520
-
1521
- @if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
1522
- border-color: $tab-alt-focused-active-wrap-focus-border-color;
1523
- }
1524
-
1525
- @if $skin-name == 'highcontrast' {
1526
- border-style: solid;
1527
- }
1361
+ background: $tab-background-focused-active-wrap-focus-bg;
1362
+ border-color: $tab-background-focused-active-wrap-focus-border-color;
1528
1363
  }
1529
1364
 
1530
1365
  .e-tab-wrap:focus .e-tab-text,
1531
1366
  .e-tab-wrap:focus .e-tab-icon {
1532
- color: $tab-alt-active-hover-text-color;
1367
+ color: $tab-background-focused-active-wrap-icon-color;
1533
1368
  }
1534
1369
 
1535
1370
  .e-tab-wrap:hover {
1371
+ background: $tab-background-focused-active-wrap-hover-bg;
1372
+ border: $tab-background-focused-active-wrap-hover-border;
1373
+ border-radius: $tab-background-focused-active-wrap-hover-border-radius;
1374
+ }
1375
+
1376
+ .e-tab-wrap:focus {
1377
+ .e-tab-text {
1378
+ color: $tab-background-focused-active-wrap-focus-text-color;
1379
+ }
1380
+
1381
+ .e-tab-icon {
1382
+ color: $tab-background-focused-active-wrap-focus-icon-color;
1383
+ }
1536
1384
 
1537
- @if $skin-name == 'fabric' {
1538
- background: $tab-alt-focused-active-wrap-hover-bg-color;
1385
+ .e-close-icon {
1386
+ color: $tab-background-focused-active-wrap-focus-close-color;
1539
1387
  }
1540
1388
  }
1541
1389
 
1542
- .e-tab-wrap:focus,
1543
1390
  .e-tab-wrap:hover {
1391
+ .e-tab-text {
1392
+ color: $tab-background-focused-active-wrap-hover-text-color;
1393
+ }
1544
1394
 
1545
- @if $skin-name == 'bootstrap' {
1546
- .e-tab-text,
1547
- .e-close-icon {
1548
- color: $tab-alt-focused-active-wrap-focus-or-hover-color;
1549
- }
1395
+ .e-tab-icon {
1396
+ color: $tab-background-focused-active-wrap-hover-icon-color;
1397
+ }
1398
+
1399
+ .e-close-icon {
1400
+ color: $tab-background-focused-active-wrap-hover-close-color;
1550
1401
  }
1551
1402
  }
1552
1403
 
1553
1404
  .e-tab-wrap:focus:hover {
1554
-
1555
- @if $skin-name == 'bootstrap' {
1556
-
1557
- .e-tab-text,
1558
- .e-close-icon {
1559
- color: $tab-alt-focused-active-wrap-focus-and-hover-color;
1560
- }
1405
+ .e-tab-text {
1406
+ color: $tab-background-focused-active-focus-hover-text-color;
1407
+ }
1408
+ .e-close-icon {
1409
+ color: $tab-background-focused-active-focus-hover-close-color;
1561
1410
  }
1562
1411
  }
1563
1412
 
@@ -1614,6 +1463,22 @@
1614
1463
  .e-item {
1615
1464
  background: inherit;
1616
1465
  color: $tab-content-font-color;
1466
+ font-size: $tab-content-font-size;
1467
+ }
1468
+ }
1469
+ }
1470
+
1471
+ .e-tab-clone-element {
1472
+ background: $tab-clone-item-bg-color;
1473
+ color: $tab-clone-text-color;
1474
+
1475
+ .e-tab-wrap {
1476
+ border-radius: $tab-active-item-border-radius;
1477
+ color: $tab-clone-text-color;
1478
+ border: $tab-clone-item-wrap-border;
1479
+
1480
+ .e-tab-icon {
1481
+ color: $tab-clone-text-color;
1617
1482
  }
1618
1483
  }
1619
1484
  }