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