@progress/kendo-theme-fluent 5.7.0

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 (427) hide show
  1. package/LICENSE.md +17 -0
  2. package/README.md +72 -0
  3. package/dist/all.scss +7 -0
  4. package/package.json +54 -0
  5. package/scss/action-buttons/_layout.scss +54 -0
  6. package/scss/action-buttons/_theme.scss +14 -0
  7. package/scss/action-buttons/_variables.scss +24 -0
  8. package/scss/action-buttons/index.scss +26 -0
  9. package/scss/action-sheet/_layout.scss +233 -0
  10. package/scss/action-sheet/_theme.scss +89 -0
  11. package/scss/action-sheet/_variables.scss +163 -0
  12. package/scss/action-sheet/index.scss +27 -0
  13. package/scss/all.scss +4 -0
  14. package/scss/appbar/_layout.scss +119 -0
  15. package/scss/appbar/_theme.scss +40 -0
  16. package/scss/appbar/_variables.scss +106 -0
  17. package/scss/appbar/index.scss +25 -0
  18. package/scss/autocomplete/_layout.scss +4 -0
  19. package/scss/autocomplete/_theme.scss +4 -0
  20. package/scss/autocomplete/_variables.scss +1 -0
  21. package/scss/autocomplete/index.scss +28 -0
  22. package/scss/avatar/_layout.scss +77 -0
  23. package/scss/avatar/_theme.scss +20 -0
  24. package/scss/avatar/_variables.scss +105 -0
  25. package/scss/avatar/index.scss +25 -0
  26. package/scss/badge/_layout.scss +155 -0
  27. package/scss/badge/_theme.scss +31 -0
  28. package/scss/badge/_variables.scss +159 -0
  29. package/scss/badge/index.scss +23 -0
  30. package/scss/bottom-navigation/_layout.scss +130 -0
  31. package/scss/bottom-navigation/_theme.scss +92 -0
  32. package/scss/bottom-navigation/_variables.scss +178 -0
  33. package/scss/bottom-navigation/index.scss +25 -0
  34. package/scss/breadcrumb/_layout.scss +132 -0
  35. package/scss/breadcrumb/_theme.scss +134 -0
  36. package/scss/breadcrumb/_variables.scss +170 -0
  37. package/scss/breadcrumb/index.scss +26 -0
  38. package/scss/button/_layout.scss +329 -0
  39. package/scss/button/_theme.scss +155 -0
  40. package/scss/button/_variables.scss +392 -0
  41. package/scss/button/index.scss +25 -0
  42. package/scss/calendar/_layout.scss +456 -0
  43. package/scss/calendar/_theme.scss +203 -0
  44. package/scss/calendar/_variables.scss +267 -0
  45. package/scss/calendar/index.scss +25 -0
  46. package/scss/captcha/_layout.scss +63 -0
  47. package/scss/captcha/_theme.scss +15 -0
  48. package/scss/captcha/_variables.scss +45 -0
  49. package/scss/captcha/index.scss +29 -0
  50. package/scss/card/_layout.scss +364 -0
  51. package/scss/card/_theme.scss +116 -0
  52. package/scss/card/_variables.scss +170 -0
  53. package/scss/card/index.scss +29 -0
  54. package/scss/checkbox/_layout.scss +248 -0
  55. package/scss/checkbox/_theme.scss +142 -0
  56. package/scss/checkbox/_variables.scss +234 -0
  57. package/scss/checkbox/index.scss +25 -0
  58. package/scss/chip/_layout.scss +156 -0
  59. package/scss/chip/_theme.scss +97 -0
  60. package/scss/chip/_variables.scss +210 -0
  61. package/scss/chip/index.scss +26 -0
  62. package/scss/color-preview/_layout.scss +78 -0
  63. package/scss/color-preview/_theme.scss +32 -0
  64. package/scss/color-preview/_variables.scss +36 -0
  65. package/scss/color-preview/index.scss +25 -0
  66. package/scss/coloreditor/_layout.scss +82 -0
  67. package/scss/coloreditor/_theme.scss +27 -0
  68. package/scss/coloreditor/_variables.scss +75 -0
  69. package/scss/coloreditor/index.scss +29 -0
  70. package/scss/colorgradient/_layout.scss +184 -0
  71. package/scss/colorgradient/_theme.scss +118 -0
  72. package/scss/colorgradient/_variables.scss +149 -0
  73. package/scss/colorgradient/index.scss +29 -0
  74. package/scss/colorpalette/_layout.scss +60 -0
  75. package/scss/colorpalette/_theme.scss +53 -0
  76. package/scss/colorpalette/_variables.scss +48 -0
  77. package/scss/colorpalette/index.scss +23 -0
  78. package/scss/colorpicker/_layout.scss +15 -0
  79. package/scss/colorpicker/_theme.scss +5 -0
  80. package/scss/colorpicker/_variables.scss +1 -0
  81. package/scss/colorpicker/index.scss +29 -0
  82. package/scss/combobox/_layout.scss +4 -0
  83. package/scss/combobox/_theme.scss +4 -0
  84. package/scss/combobox/_variables.scss +1 -0
  85. package/scss/combobox/index.scss +28 -0
  86. package/scss/core/_index.scss +33 -0
  87. package/scss/core/_layout.scss +13 -0
  88. package/scss/core/_theme.scss +9 -0
  89. package/scss/core/_variables.scss +132 -0
  90. package/scss/core/color-system/_index.scss +3 -0
  91. package/scss/core/color-system/_palettes.scss +316 -0
  92. package/scss/core/color-system/_variables.scss +169 -0
  93. package/scss/core/color-system/utils/_functions.scss +67 -0
  94. package/scss/core/color-system/utils/_index.scss +2 -0
  95. package/scss/core/color-system/utils/_mixins.scss +9 -0
  96. package/scss/core/functions/_index.scss +3 -0
  97. package/scss/core/functions/_strings.scss +35 -0
  98. package/scss/core/helpers/_animations.scss +708 -0
  99. package/scss/core/helpers/_asp-fallback.scss +4 -0
  100. package/scss/core/helpers/_base.scss +146 -0
  101. package/scss/core/helpers/_extra.scss +22 -0
  102. package/scss/core/helpers/_index.scss +11 -0
  103. package/scss/core/helpers/_layout.scss +64 -0
  104. package/scss/core/helpers/_loading.scss +120 -0
  105. package/scss/core/helpers/_normalize.scss +11 -0
  106. package/scss/core/helpers/_reset.scss +19 -0
  107. package/scss/core/helpers/_resizing.scss +120 -0
  108. package/scss/core/helpers/_selection.scss +27 -0
  109. package/scss/core/helpers/_spacer.scss +13 -0
  110. package/scss/core/mixins/_border-radius.scss +60 -0
  111. package/scss/core/mixins/_box-shadow.scss +7 -0
  112. package/scss/core/mixins/_decoration.scss +27 -0
  113. package/scss/core/mixins/_disabled.scss +10 -0
  114. package/scss/core/mixins/_hide-scrollbar.scss +13 -0
  115. package/scss/core/mixins/_index.scss +6 -0
  116. package/scss/core/mixins/_typography.scss +17 -0
  117. package/scss/core/module-system/_components.scss +144 -0
  118. package/scss/core/module-system/index.scss +38 -0
  119. package/scss/dataviz/_layout.scss +474 -0
  120. package/scss/dataviz/_theme.scss +150 -0
  121. package/scss/dataviz/_variables.scss +242 -0
  122. package/scss/dataviz/index.scss +27 -0
  123. package/scss/dateinput/_layout.scss +4 -0
  124. package/scss/dateinput/_theme.scss +4 -0
  125. package/scss/dateinput/_variables.scss +1 -0
  126. package/scss/dateinput/index.scss +24 -0
  127. package/scss/datepicker/_layout.scss +4 -0
  128. package/scss/datepicker/_theme.scss +4 -0
  129. package/scss/datepicker/_variables.scss +1 -0
  130. package/scss/datepicker/index.scss +28 -0
  131. package/scss/daterangepicker/_layout.scss +39 -0
  132. package/scss/daterangepicker/_theme.scss +28 -0
  133. package/scss/daterangepicker/_variables.scss +5 -0
  134. package/scss/daterangepicker/index.scss +28 -0
  135. package/scss/datetimepicker/_layout.scss +60 -0
  136. package/scss/datetimepicker/_theme.scss +4 -0
  137. package/scss/datetimepicker/_variables.scss +3 -0
  138. package/scss/datetimepicker/index.scss +30 -0
  139. package/scss/dialog/_layout.scss +71 -0
  140. package/scss/dialog/_theme.scss +21 -0
  141. package/scss/dialog/_variables.scss +46 -0
  142. package/scss/dialog/index.scss +25 -0
  143. package/scss/draggable/_layout.scss +66 -0
  144. package/scss/draggable/_theme.scss +21 -0
  145. package/scss/draggable/_variables.scss +72 -0
  146. package/scss/draggable/index.scss +23 -0
  147. package/scss/drawer/_layout.scss +271 -0
  148. package/scss/drawer/_theme.scss +94 -0
  149. package/scss/drawer/_variables.scss +132 -0
  150. package/scss/drawer/index.scss +26 -0
  151. package/scss/dropdowngrid/_layout.scss +13 -0
  152. package/scss/dropdowngrid/_theme.scss +5 -0
  153. package/scss/dropdowngrid/_variables.scss +1 -0
  154. package/scss/dropdowngrid/index.scss +33 -0
  155. package/scss/dropdownlist/_layout.scss +36 -0
  156. package/scss/dropdownlist/_theme.scss +9 -0
  157. package/scss/dropdownlist/_variables.scss +1 -0
  158. package/scss/dropdownlist/index.scss +29 -0
  159. package/scss/dropdowntree/_layout.scss +22 -0
  160. package/scss/dropdowntree/_theme.scss +6 -0
  161. package/scss/dropdowntree/_variables.scss +5 -0
  162. package/scss/dropdowntree/index.scss +28 -0
  163. package/scss/dropzone/_layout.scss +49 -0
  164. package/scss/dropzone/_theme.scss +35 -0
  165. package/scss/dropzone/_variables.scss +75 -0
  166. package/scss/dropzone/index.scss +25 -0
  167. package/scss/editor/_layout.scss +688 -0
  168. package/scss/editor/_theme.scss +101 -0
  169. package/scss/editor/_variables.scss +81 -0
  170. package/scss/editor/index.scss +32 -0
  171. package/scss/expansion-panel/_layout.scss +83 -0
  172. package/scss/expansion-panel/_theme.scss +69 -0
  173. package/scss/expansion-panel/_variables.scss +99 -0
  174. package/scss/expansion-panel/index.scss +24 -0
  175. package/scss/fab/_layout.scss +173 -0
  176. package/scss/fab/_theme.scss +201 -0
  177. package/scss/fab/_variables.scss +180 -0
  178. package/scss/fab/index.scss +28 -0
  179. package/scss/filemanager/_layout.scss +248 -0
  180. package/scss/filemanager/_theme.scss +110 -0
  181. package/scss/filemanager/_variables.scss +185 -0
  182. package/scss/filemanager/index.scss +35 -0
  183. package/scss/filter/_layout.scss +93 -0
  184. package/scss/filter/_theme.scss +25 -0
  185. package/scss/filter/_variables.scss +35 -0
  186. package/scss/filter/index.scss +31 -0
  187. package/scss/floating-label/_layout.scss +94 -0
  188. package/scss/floating-label/_theme.scss +31 -0
  189. package/scss/floating-label/_variables.scss +67 -0
  190. package/scss/floating-label/index.scss +24 -0
  191. package/scss/forms/_layout.scss +326 -0
  192. package/scss/forms/_theme.scss +44 -0
  193. package/scss/forms/_variables.scss +143 -0
  194. package/scss/forms/index.scss +30 -0
  195. package/scss/grid/_layout.scss +1268 -0
  196. package/scss/grid/_theme.scss +488 -0
  197. package/scss/grid/_variables.scss +476 -0
  198. package/scss/grid/index.scss +45 -0
  199. package/scss/icon/_layout.scss +60 -0
  200. package/scss/icon/_theme.scss +1 -0
  201. package/scss/icon/_variables.scss +18 -0
  202. package/scss/icon/index.scss +23 -0
  203. package/scss/imageeditor/_layout.scss +160 -0
  204. package/scss/imageeditor/_theme.scss +49 -0
  205. package/scss/imageeditor/_variables.scss +108 -0
  206. package/scss/imageeditor/index.scss +28 -0
  207. package/scss/index.scss +320 -0
  208. package/scss/input/_layout.scss +441 -0
  209. package/scss/input/_theme.scss +202 -0
  210. package/scss/input/_variables.scss +612 -0
  211. package/scss/input/index.scss +26 -0
  212. package/scss/list/_layout.scss +255 -0
  213. package/scss/list/_theme.scss +104 -0
  214. package/scss/list/_variables.scss +273 -0
  215. package/scss/list/index.scss +26 -0
  216. package/scss/listbox/_layout.scss +119 -0
  217. package/scss/listbox/_theme.scss +19 -0
  218. package/scss/listbox/_variables.scss +45 -0
  219. package/scss/listbox/index.scss +28 -0
  220. package/scss/listgroup/_layout.scss +189 -0
  221. package/scss/listgroup/_theme.scss +14 -0
  222. package/scss/listgroup/_variables.scss +36 -0
  223. package/scss/listgroup/index.scss +25 -0
  224. package/scss/listview/_layout.scss +149 -0
  225. package/scss/listview/_theme.scss +50 -0
  226. package/scss/listview/_variables.scss +91 -0
  227. package/scss/listview/index.scss +27 -0
  228. package/scss/loader/_layout.scss +458 -0
  229. package/scss/loader/_theme.scss +18 -0
  230. package/scss/loader/_variables.scss +143 -0
  231. package/scss/loader/index.scss +25 -0
  232. package/scss/map/_index.scss +26 -0
  233. package/scss/map/_layout.scss +134 -0
  234. package/scss/map/_theme.scss +32 -0
  235. package/scss/map/_variables.scss +88 -0
  236. package/scss/maskedtextbox/_layout.scss +6 -0
  237. package/scss/maskedtextbox/_theme.scss +6 -0
  238. package/scss/maskedtextbox/_variables.scss +1 -0
  239. package/scss/maskedtextbox/index.scss +26 -0
  240. package/scss/mediaplayer/_layout.scss +102 -0
  241. package/scss/mediaplayer/_theme.scss +29 -0
  242. package/scss/mediaplayer/_variables.scss +46 -0
  243. package/scss/mediaplayer/index.scss +27 -0
  244. package/scss/menu/_layout.scss +343 -0
  245. package/scss/menu/_theme.scss +97 -0
  246. package/scss/menu/_variables.scss +255 -0
  247. package/scss/menu/index.scss +29 -0
  248. package/scss/menu-button/_layout.scss +20 -0
  249. package/scss/menu-button/_theme.scss +1 -0
  250. package/scss/menu-button/_variables.scss +1 -0
  251. package/scss/menu-button/index.scss +26 -0
  252. package/scss/messagebox/_layout.scss +22 -0
  253. package/scss/messagebox/_theme.scss +44 -0
  254. package/scss/messagebox/_variables.scss +40 -0
  255. package/scss/messagebox/index.scss +23 -0
  256. package/scss/multiselect/_layout.scss +6 -0
  257. package/scss/multiselect/_theme.scss +6 -0
  258. package/scss/multiselect/_variables.scss +1 -0
  259. package/scss/multiselect/index.scss +31 -0
  260. package/scss/notification/_layout.scss +73 -0
  261. package/scss/notification/_theme.scss +55 -0
  262. package/scss/notification/_variables.scss +102 -0
  263. package/scss/notification/index.scss +26 -0
  264. package/scss/numerictextbox/_layout.scss +10 -0
  265. package/scss/numerictextbox/_theme.scss +6 -0
  266. package/scss/numerictextbox/_variables.scss +1 -0
  267. package/scss/numerictextbox/index.scss +27 -0
  268. package/scss/orgchart/_layout.scss +121 -0
  269. package/scss/orgchart/_theme.scss +60 -0
  270. package/scss/orgchart/_variables.scss +152 -0
  271. package/scss/orgchart/index.scss +34 -0
  272. package/scss/overlay/_layout.scss +15 -0
  273. package/scss/overlay/_theme.scss +14 -0
  274. package/scss/overlay/_variables.scss +12 -0
  275. package/scss/overlay/index.scss +23 -0
  276. package/scss/pager/_layout.scss +240 -0
  277. package/scss/pager/_theme.scss +130 -0
  278. package/scss/pager/_variables.scss +194 -0
  279. package/scss/pager/index.scss +29 -0
  280. package/scss/panelbar/_layout.scss +152 -0
  281. package/scss/panelbar/_theme.scss +245 -0
  282. package/scss/panelbar/_variables.scss +235 -0
  283. package/scss/panelbar/index.scss +26 -0
  284. package/scss/popover/_layout.scss +101 -0
  285. package/scss/popover/_theme.scss +41 -0
  286. package/scss/popover/_variables.scss +90 -0
  287. package/scss/popover/index.scss +27 -0
  288. package/scss/popup/_layout.scss +53 -0
  289. package/scss/popup/_theme.scss +14 -0
  290. package/scss/popup/_variables.scss +42 -0
  291. package/scss/popup/index.scss +23 -0
  292. package/scss/progressbar/_layout.scss +279 -0
  293. package/scss/progressbar/_theme.scss +93 -0
  294. package/scss/progressbar/_variables.scss +114 -0
  295. package/scss/progressbar/index.scss +23 -0
  296. package/scss/radio/_layout.scss +277 -0
  297. package/scss/radio/_theme.scss +125 -0
  298. package/scss/radio/_variables.scss +203 -0
  299. package/scss/radio/index.scss +26 -0
  300. package/scss/rating/_layout.scss +98 -0
  301. package/scss/rating/_theme.scss +46 -0
  302. package/scss/rating/_variables.scss +50 -0
  303. package/scss/rating/index.scss +25 -0
  304. package/scss/responsivepanel/_layout.scss +51 -0
  305. package/scss/responsivepanel/_theme.scss +5 -0
  306. package/scss/responsivepanel/_variables.scss +1 -0
  307. package/scss/responsivepanel/index.scss +25 -0
  308. package/scss/ripple/_layout.scss +53 -0
  309. package/scss/ripple/_theme.scss +5 -0
  310. package/scss/ripple/_variables.scss +1 -0
  311. package/scss/ripple/index.scss +23 -0
  312. package/scss/scheduler/_layout.scss +979 -0
  313. package/scss/scheduler/_theme.scss +249 -0
  314. package/scss/scheduler/_variables.scss +260 -0
  315. package/scss/scheduler/index.scss +34 -0
  316. package/scss/scroller/_layout.scss +84 -0
  317. package/scss/scroller/_theme.scss +8 -0
  318. package/scss/scroller/_variables.scss +1 -0
  319. package/scss/scroller/index.scss +23 -0
  320. package/scss/searchbox/_layout.scss +22 -0
  321. package/scss/searchbox/_theme.scss +9 -0
  322. package/scss/searchbox/_variables.scss +5 -0
  323. package/scss/searchbox/index.scss +27 -0
  324. package/scss/signature/_layout.scss +68 -0
  325. package/scss/signature/_theme.scss +13 -0
  326. package/scss/signature/_variables.scss +73 -0
  327. package/scss/signature/index.scss +26 -0
  328. package/scss/skeleton/_layout.scss +76 -0
  329. package/scss/skeleton/_theme.scss +22 -0
  330. package/scss/skeleton/_variables.scss +22 -0
  331. package/scss/skeleton/index.scss +23 -0
  332. package/scss/slider/_layout.scss +392 -0
  333. package/scss/slider/_theme.scss +76 -0
  334. package/scss/slider/_variables.scss +136 -0
  335. package/scss/slider/index.scss +27 -0
  336. package/scss/split-button/_layout.scss +58 -0
  337. package/scss/split-button/_theme.scss +5 -0
  338. package/scss/split-button/_variables.scss +24 -0
  339. package/scss/split-button/index.scss +26 -0
  340. package/scss/splitter/_layout.scss +208 -0
  341. package/scss/splitter/_theme.scss +36 -0
  342. package/scss/splitter/_variables.scss +66 -0
  343. package/scss/splitter/index.scss +25 -0
  344. package/scss/stepper/_layout.scss +251 -0
  345. package/scss/stepper/_theme.scss +189 -0
  346. package/scss/stepper/_variables.scss +200 -0
  347. package/scss/stepper/index.scss +26 -0
  348. package/scss/switch/_layout.scss +164 -0
  349. package/scss/switch/_theme.scss +171 -0
  350. package/scss/switch/_variables.scss +173 -0
  351. package/scss/switch/index.scss +23 -0
  352. package/scss/table/_layout.scss +289 -0
  353. package/scss/table/_theme.scss +106 -0
  354. package/scss/table/_variables.scss +169 -0
  355. package/scss/table/index.scss +30 -0
  356. package/scss/tabstrip/_layout.scss +428 -0
  357. package/scss/tabstrip/_theme.scss +102 -0
  358. package/scss/tabstrip/_variables.scss +145 -0
  359. package/scss/tabstrip/index.scss +27 -0
  360. package/scss/taskboard/_layout.scss +205 -0
  361. package/scss/taskboard/_theme.scss +83 -0
  362. package/scss/taskboard/_variables.scss +207 -0
  363. package/scss/taskboard/index.scss +31 -0
  364. package/scss/textarea/_layout.scss +6 -0
  365. package/scss/textarea/_theme.scss +6 -0
  366. package/scss/textarea/_variables.scss +0 -0
  367. package/scss/textarea/index.scss +25 -0
  368. package/scss/textbox/_layout.scss +6 -0
  369. package/scss/textbox/_theme.scss +6 -0
  370. package/scss/textbox/_variables.scss +1 -0
  371. package/scss/textbox/index.scss +25 -0
  372. package/scss/tilelayout/_layout.scss +39 -0
  373. package/scss/tilelayout/_theme.scss +18 -0
  374. package/scss/tilelayout/_variables.scss +24 -0
  375. package/scss/tilelayout/index.scss +25 -0
  376. package/scss/timepicker/_layout.scss +6 -0
  377. package/scss/timepicker/_theme.scss +6 -0
  378. package/scss/timepicker/_variables.scss +1 -0
  379. package/scss/timepicker/index.scss +28 -0
  380. package/scss/timeselector/_layout.scss +237 -0
  381. package/scss/timeselector/_theme.scss +66 -0
  382. package/scss/timeselector/_variables.scss +130 -0
  383. package/scss/timeselector/index.scss +27 -0
  384. package/scss/toolbar/_layout.scss +214 -0
  385. package/scss/toolbar/_theme.scss +66 -0
  386. package/scss/toolbar/_variables.scss +40 -0
  387. package/scss/toolbar/index.scss +28 -0
  388. package/scss/tooltip/_layout.scss +108 -0
  389. package/scss/tooltip/_theme.scss +42 -0
  390. package/scss/tooltip/_variables.scss +98 -0
  391. package/scss/tooltip/index.scss +26 -0
  392. package/scss/treelist/_layout.scss +92 -0
  393. package/scss/treelist/_theme.scss +14 -0
  394. package/scss/treelist/_variables.scss +9 -0
  395. package/scss/treelist/index.scss +26 -0
  396. package/scss/treeview/_layout.scss +160 -0
  397. package/scss/treeview/_theme.scss +102 -0
  398. package/scss/treeview/_variables.scss +164 -0
  399. package/scss/treeview/index.scss +26 -0
  400. package/scss/typography/_layout.scss +110 -0
  401. package/scss/typography/_theme.scss +15 -0
  402. package/scss/typography/_variables.scss +126 -0
  403. package/scss/typography/index.scss +23 -0
  404. package/scss/upload/_layout.scss +275 -0
  405. package/scss/upload/_theme.scss +111 -0
  406. package/scss/upload/_variables.scss +107 -0
  407. package/scss/upload/index.scss +29 -0
  408. package/scss/utils/_layout.scss +7 -0
  409. package/scss/utils/_theme.scss +1 -0
  410. package/scss/utils/_variables.scss +13 -0
  411. package/scss/utils/index.scss +23 -0
  412. package/scss/validator/_layout.scss +19 -0
  413. package/scss/validator/_theme.scss +5 -0
  414. package/scss/validator/_variables.scss +1 -0
  415. package/scss/validator/index.scss +26 -0
  416. package/scss/virtual-scroller/_layout.scss +37 -0
  417. package/scss/virtual-scroller/_theme.scss +5 -0
  418. package/scss/virtual-scroller/_variables.scss +1 -0
  419. package/scss/virtual-scroller/index.scss +23 -0
  420. package/scss/window/_layout.scss +162 -0
  421. package/scss/window/_theme.scss +31 -0
  422. package/scss/window/_variables.scss +107 -0
  423. package/scss/window/index.scss +28 -0
  424. package/scss/wizard/_layout.scss +128 -0
  425. package/scss/wizard/_theme.scss +21 -0
  426. package/scss/wizard/_variables.scss +54 -0
  427. package/scss/wizard/index.scss +27 -0
@@ -0,0 +1,101 @@
1
+ @use "../core/" as *;
2
+ @use "_variables.scss" as *;
3
+
4
+ @mixin kendo-editor--theme() {
5
+
6
+ .k-editor {
7
+ @include fill(
8
+ var( --kendo-editor-text, #{$kendo-editor-text} ),
9
+ var( --kendo-editor-bg, #{$kendo-editor-bg} ),
10
+ var( --kendo-editor-border, #{$kendo-editor-border} )
11
+ );
12
+ }
13
+
14
+ kendo-editor {
15
+ &.k-readonly {
16
+ .k-editor-content:focus,
17
+ .k-editor-content.k-focus {
18
+ outline-color: var( --kendo-editor-content-outline-color, #{$kendo-editor-content-outline-color} );
19
+ }
20
+ }
21
+ }
22
+
23
+ // Inline Editor
24
+ .k-editor-inline {
25
+
26
+ .k-table {
27
+ &,
28
+ & td {
29
+ border-color: var( --kendo-editor-inline-td-border, #{$kendo-editor-inline-td-border} );
30
+ }
31
+ }
32
+
33
+ .k-element-resize-handle-wrapper {
34
+ background-color: var( --kendo-editor-resize-handle-bg, #{$kendo-editor-resize-handle-bg} );
35
+ border-color: var( --kendo-editor-resize-handle-border, #{$kendo-editor-resize-handle-border} );
36
+ }
37
+
38
+ .k-column-resize-handle-wrapper {
39
+ .k-column-resize-handle {
40
+ .k-column-resize-marker {
41
+ background-color: #00b0ff;
42
+ }
43
+ }
44
+ }
45
+
46
+ .k-row-resize-handle-wrapper {
47
+ .k-row-resize-marker {
48
+ background-color: #00b0ff;
49
+ }
50
+ }
51
+
52
+ // Hover & Actve state
53
+ &:hover,
54
+ &.k-active {
55
+ border-color: var( --kendo-editor-inline-hover-border, #{$kendo-editor-inline-hover-border} );
56
+ }
57
+ }
58
+
59
+ // Resizable images
60
+ .k-editor-resize-handle {
61
+ @include fill (
62
+ $bg: var( --kendo-editor-resize-handle-bg, #{$kendo-editor-resize-handle-bg} ),
63
+ $border: var( --kendo-editor-resize-handle-border, #{$kendo-editor-resize-handle-border} )
64
+ );
65
+ }
66
+ .ProseMirror-selectednode { // sass-lint:disable-line class-name-format
67
+ outline-color: var( --kendo-editor-selectednode-outline-color, #{$kendo-editor-selectednode-outline-color} );
68
+ }
69
+
70
+
71
+ // Insert table
72
+ .k-ct-popup {
73
+ .k-selected {
74
+ @include fill(
75
+ var( ---kendo-editor-ct-popup-text, #{$kendo-editor-ct-popup-text} ),
76
+ var( --kendo-editor-ct-popup-bg, #{$kendo-editor-ct-popup-bg} ),
77
+ var( --kendo-editor-ct-popup-border, #{$kendo-editor-ct-popup-border} )
78
+ );
79
+ }
80
+ }
81
+
82
+ // Content
83
+ .k-editor-content {
84
+
85
+ // Selection
86
+ .k-text-selected,
87
+ &::selection {
88
+ @include fill (
89
+ $color: var( --kendo-editor-selected-text, #{$kendo-editor-selected-text} ),
90
+ $bg: var( --kendo-editor-selected-bg, #{$kendo-editor-selected-bg} )
91
+ );
92
+ }
93
+
94
+ .k-text-highlighted {
95
+ @include fill (
96
+ $bg: var( --kendo-editor-highlighted-bg, #{$kendo-editor-highlighted-bg} )
97
+ );
98
+ }
99
+ }
100
+
101
+ }
@@ -0,0 +1,81 @@
1
+ @use "../core/" as *;
2
+ @use "../input/_variables.scss" as *;
3
+
4
+ /// The width of the border around the editor
5
+ /// @group editor
6
+ $kendo-editor-border-width: 1px !default;
7
+ /// The font family of the editor
8
+ /// @group editor
9
+ $kendo-editor-font-family: var( --kendo-font-family, inherit ) !default;
10
+ /// The font size of the editor
11
+ /// @group editor
12
+ $kendo-editor-font-size: var( --kendo-font-size, inherit ) !default;
13
+ /// The line height of the editor
14
+ /// @group editor
15
+ $kendo-editor-line-height: var( --kendo-line-height, normal ) !default;
16
+ /// The text color of the editor
17
+ /// @group editor
18
+ $kendo-editor-text: var( --kendo-component-text, initial ) !default;
19
+ /// The background color of the editor
20
+ /// @group editor
21
+ $kendo-editor-bg: var( --kendo-component-bg, initial ) !default;
22
+ /// The color of the border around editor
23
+ /// @group editor
24
+ $kendo-editor-border: var( --kendo-component-border, initial ) !default;
25
+ /// The placeholder text color of the editor
26
+ /// @group editor
27
+ $kendo-editor-placeholder-text: var( --kendo-input-placeholder-text, #{$kendo-input-placeholder-text} ) !default;
28
+ /// The placeholder opacity of the editor
29
+ /// @group editor
30
+ $kendo-editor-placeholder-opacity: var( --kendo-input-placeholder-opacity, #{$kendo-input-placeholder-opacity} ) !default;
31
+ /// The outline color of the editor content
32
+ /// @group editor
33
+ $kendo-editor-content-outline-color: var( --kendo-body-text, initial ) !default;
34
+ /// The size of the editor resize handle
35
+ /// @group editor
36
+ $kendo-editor-resize-handle-size: map-get( $kendo-spacing, 2 ) !default;
37
+ /// The border width of the editor resize handle
38
+ /// @group editor
39
+ $kendo-editor-resize-handle-border-width: 1px !default;
40
+ /// The horizontal margin of the editor export tool icon
41
+ /// @group editor
42
+ $kendo-editor-export-tool-icon-margin-x: map-get( $kendo-spacing, 1 ) !default;
43
+ /// The outline width of the editor selected node
44
+ /// @group editor
45
+ $kendo-editor-selectednode-outline-width: map-get( $kendo-spacing, thin ) !default;
46
+
47
+ // Cell size
48
+ $ct-cell-size: 20px;
49
+
50
+ /// The selected text color of the editor
51
+ /// @group editor
52
+ $kendo-editor-selected-text: $white !default;
53
+ /// The selected background color of the editor
54
+ /// @group editor
55
+ $kendo-editor-selected-bg: get-theme-color-var( primary-100 ) !default;
56
+ /// The highlighted background color of the editor
57
+ /// @group editor
58
+ $kendo-editor-highlighted-bg: get-theme-color-var( primary-60 ) !default;
59
+
60
+ /// The border color of the editor resize handle
61
+ /// @group editor
62
+ $kendo-editor-resize-handle-border: $black !default;
63
+ /// The background color of the editor resize handle
64
+ /// @group editor
65
+ $kendo-editor-resize-handle-bg: $white !default;
66
+
67
+ /// The outline color of the editor selected node
68
+ /// @group editor
69
+ $kendo-editor-selectednode-outline-color: get-theme-color-var( primary-100 ) !default;
70
+
71
+ /// The border color of the inline editor data cell
72
+ /// @group editor
73
+ $kendo-editor-inline-td-border: var( --kendo-component-border, initial ) !default;
74
+ /// The hover border color of the inline editor
75
+ /// @group editor
76
+ $kendo-editor-inline-hover-border: var( --kendo-component-border, initial ) !default;
77
+
78
+ // Insert table
79
+ $kendo-editor-ct-popup-text: var( --kendo-selected-text, initial ) !default;
80
+ $kendo-editor-ct-popup-bg: var( --kendo-selected-bg, initial ) !default;
81
+ $kendo-editor-ct-popup-border: var( --kendo-selected-border, initial ) !default;
@@ -0,0 +1,32 @@
1
+ // Module meta
2
+ $_kendo-module-meta: (
3
+ name: "editor",
4
+ dependencies: (
5
+ "button",
6
+ "checkbox",
7
+ "colorpicker",
8
+ "combobox",
9
+ "dropdownlist",
10
+ "toolbar",
11
+ "upload",
12
+ "window"
13
+ )
14
+ );
15
+
16
+
17
+ // Component
18
+ @forward "_variables.scss";
19
+ @use "_layout.scss" as *;
20
+ @use "_theme.scss" as *;
21
+
22
+ // Register
23
+ @use "../core/module-system" as module;
24
+ @include module.register( $_kendo-module-meta... );
25
+
26
+ // Expose
27
+ @mixin styles() {
28
+ @include module.render( "editor" ) {
29
+ @include kendo-editor--layout();
30
+ @include kendo-editor--theme();
31
+ }
32
+ }
@@ -0,0 +1,83 @@
1
+ @use "_variables.scss" as *;
2
+ @use "../core/color-system" as *;
3
+
4
+ @mixin kendo-expansion-panel--layout() {
5
+
6
+ // Base
7
+ .k-expander {
8
+ border-width: var( --kendo-expander-border-width, #{$kendo-expander-border-width} );
9
+ border-style: solid;
10
+ box-sizing: border-box;
11
+ font-size: var( --kendo-expander-font-size, #{$kendo-expander-font-size} );
12
+ font-family: var( --kendo-expander-font-family, #{$kendo-expander-font-family} );
13
+ line-height: var( --kendo-expander-line-height, #{$kendo-expander-line-height} );
14
+ position: relative;
15
+ display: flex;
16
+ flex-direction: column;
17
+ overflow: hidden;
18
+ outline: 0;
19
+ -webkit-touch-callout: none;
20
+ -webkit-tap-highlight-color: $rgba-transparent;
21
+
22
+ *,
23
+ *::before,
24
+ *::after {
25
+ box-sizing: border-box;
26
+ }
27
+
28
+ &.k-focus {
29
+ border-width: 0;
30
+ }
31
+ &.k-focus::after {
32
+ content: "";
33
+ position: absolute;
34
+ border: medium none;
35
+ inset: var( --kendo-expander-focus-offset, #{$kendo-expander-focus-offset} );
36
+ outline-width: var( --kendo-expander-focus-outline-width, #{$kendo-expander-focus-outline-width} );
37
+ outline-style: var( --kendo-expander-focus-outline-style, #{$kendo-expander-focus-outline-style} );
38
+ z-index: 1;
39
+ pointer-events: none;
40
+ }
41
+ }
42
+
43
+ // Header
44
+ .k-expander-header {
45
+ padding-inline: var( --kendo-expander-header-padding-x, #{$kendo-expander-header-padding-x} );
46
+ padding-block: var( --kendo-expander-header-padding-y, #{$kendo-expander-header-padding-y} );
47
+ display: flex;
48
+ justify-content: space-between;
49
+ align-items: center;
50
+ cursor: pointer;
51
+ }
52
+
53
+ // Expander spacer
54
+ .k-expander-spacer {
55
+ flex: 1 1 auto;
56
+ }
57
+
58
+ // Title
59
+ .k-expander-title {
60
+ font-weight: 400;
61
+ }
62
+
63
+ // Expand / collapse icon
64
+ .k-expander-indicator {
65
+ margin-inline-start: var( --kendo-expander-indicator-margin-x, #{$kendo-expander-indicator-margin-x} );
66
+ }
67
+
68
+ // Expander content
69
+ .k-expander-content {
70
+ padding-inline: var( --kendo-expander-content-padding-x, #{$kendo-expander-content-padding-x} );
71
+ padding-block: var( --kendo-expander-content-padding-y, #{$kendo-expander-content-padding-y} );
72
+ }
73
+
74
+ // Multiple expanders
75
+ .k-expander + .k-expander.k-expanded,
76
+ .k-expander.k-expanded + .k-expander {
77
+ margin-top: var( --kendo-expander-margin-y, #{$kendo-expander-margin-y} );
78
+ }
79
+
80
+ .k-expander:not(.k-expanded) + .k-expander:not(.k-expanded) {
81
+ border-top-width: 0;
82
+ }
83
+ }
@@ -0,0 +1,69 @@
1
+ @use "_variables.scss" as *;
2
+ @use "../core/color-system" as *;
3
+ @use "../core/mixins" as *;
4
+
5
+ @mixin kendo-expansion-panel--theme() {
6
+
7
+ .k-expander {
8
+ @include fill(
9
+ var( --kendo-expander-text, #{$kendo-expander-text} ),
10
+ var( --kendo-expander-bg, #{$kendo-expander-bg} ),
11
+ var( --kendo-expander-border, #{$kendo-expander-border} ),
12
+ );
13
+
14
+ &.k-expanded {
15
+ background-color: var( --kendo-expander-expanded-bg, #{$kendo-expander-expanded-bg} );
16
+ }
17
+
18
+ &.k-focus{
19
+ background-color: var( --kendo-expander-focus-bg, #{$kendo-expander-focus-bg} );
20
+
21
+ &::after {
22
+ outline-color: var( --kendo-expander-focus-outline, #{$kendo-expander-focus-outline} );
23
+ }
24
+ }
25
+
26
+ &:disabled,
27
+ &.k-disabled {
28
+ @include fill(
29
+ $color: var( --kendo-expander-disabled-text, #{$kendo-expander-disabled-text} )
30
+ );
31
+
32
+ .k-expander-header,
33
+ .k-expander-title,
34
+ .k-expander-sub-title,
35
+ .k-expander-indicator {
36
+ @include fill(
37
+ $color: var( --kendo-expander-disabled-text, #{$kendo-expander-disabled-text} ),
38
+ $bg: var( --kendo-expander-disabled-bg, #{$kendo-expander-disabled-bg} )
39
+ );
40
+ }
41
+ }
42
+ }
43
+
44
+ .k-expander-header {
45
+ @include fill(
46
+ var( --kendo-expander-header-text, #{$kendo-expander-header-text} ),
47
+ var( --kendo-expander-header-bg, #{$kendo-expander-header-bg} )
48
+ );
49
+ outline: none;
50
+
51
+ &:hover,
52
+ &.k-hover {
53
+ background-color: var( --kendo-expander-header-hover-bg, #{$kendo-expander-header-hover-bg} );
54
+ }
55
+ }
56
+
57
+ .k-expander-title {
58
+ color: var( --kendo-expander-title-text, #{$kendo-expander-title-text} );
59
+ }
60
+
61
+ .k-expander-sub-title {
62
+ color: var( --kendo-expander-header-sub-title-text, #{$kendo-expander-header-sub-title-text} );
63
+ }
64
+
65
+ .k-expander-indicator {
66
+ color: var( --kendo-expander-indicator-text, #{$kendo-expander-indicator-text} );
67
+ }
68
+
69
+ }
@@ -0,0 +1,99 @@
1
+ @use "../core/_variables" as *;
2
+ @use "../core/color-system" as *;
3
+
4
+ /// Vertical margin of the expander.
5
+ /// @group expander
6
+ $kendo-expander-margin-y: map-get( $kendo-spacing, 2 ) !default;
7
+ /// Border width of the expander.
8
+ /// @group expander
9
+ $kendo-expander-border-width: 1px !default;
10
+ /// Background color of the expander.
11
+ /// @group expander
12
+ $kendo-expander-font-family: var( --kendo-font-family, inherit ) !default;
13
+ /// Font size of the expander.
14
+ /// @group expander
15
+ $kendo-expander-font-size: var( --kendo-font-size, inherit ) !default;
16
+ /// Line height of the expander.
17
+ /// @group expander
18
+ $kendo-expander-line-height: var( --kendo-line-height, normal ) !default;
19
+
20
+ /// Text color of the expander.
21
+ /// @group expander
22
+ $kendo-expander-text: var( --kendo-component-text, initial ) !default;
23
+ /// Background color of the expander.
24
+ /// @group expander
25
+ $kendo-expander-bg: get-theme-color-var( neutral-10 ) !default;
26
+ /// Border color of the expander.
27
+ /// @group expander
28
+ $kendo-expander-border: var( --kendo-component-border, initial ) !default;
29
+ /// Box shadow of the expander.
30
+ /// @group expander
31
+ $kendo-expander-shadow: inset 0 0 0 2px get-theme-color-var( neutral-30 );
32
+
33
+ /// Background color of the expanded expander.
34
+ /// @group expander
35
+ $kendo-expander-expanded-bg: var( --kendo-component-bg, initial ) !default;
36
+
37
+ /// Background color of the disabled expander.
38
+ /// @group expander
39
+ $kendo-expander-disabled-bg: var( --kendo-disabled-bg, initial ) !default;
40
+ /// Text color of the disabled expander.
41
+ /// @group expander
42
+ $kendo-expander-disabled-text: var( --kendo-disabled-text, initial ) !default;
43
+ /// Offset of the focused expander.
44
+ /// @group expander
45
+ $kendo-expander-focus-offset: map-get( $kendo-spacing, hair ) !default;
46
+ /// Outline width of the focused expander.
47
+ /// @group expander
48
+ $kendo-expander-focus-outline-width: map-get( $kendo-spacing, hair ) !default;
49
+ /// Outline style of the focused expander.
50
+ /// @group expander
51
+ $kendo-expander-focus-outline-style: solid !default;
52
+ /// The focus outline color of the expander.
53
+ /// @group expander
54
+ $kendo-expander-focus-outline: get-theme-color-var( neutral-130 ) !default;
55
+
56
+ /// Background color of the focused expander.
57
+ /// @group expander
58
+ $kendo-expander-focus-bg: var( --kendo-component-bg, initial ) !default;
59
+ /// Box shadow color of the focused expander.
60
+ /// @group expander
61
+ $kendo-expander-focus-shadow: inset 0px 0px 0px 2px get-theme-color-var( neutral-130 ) !default;
62
+
63
+ /// Horizontal padding of the expander header.
64
+ /// @group expander
65
+ $kendo-expander-header-padding-x: map-get( $kendo-spacing, 4 ) !default;
66
+ /// Vertical padding of the expander header.
67
+ /// @group expander
68
+ $kendo-expander-header-padding-y: map-get( $kendo-spacing, 3 ) !default;
69
+ /// Text color of the expander header.
70
+ /// @group expander
71
+ $kendo-expander-header-text: get-theme-color-var( primary-100 ) !default;
72
+ /// Background color of the expander header.
73
+ /// @group expander
74
+ $kendo-expander-header-bg: inherit !default;
75
+ /// Background color of the hovered expander header.
76
+ /// @group expander
77
+ $kendo-expander-header-hover-bg: get-theme-color-var( neutral-20 ) !default;
78
+
79
+ /// Text color of the expander title.
80
+ /// @group expander
81
+ $kendo-expander-title-text: get-theme-color-var( primary-100 ) !default;
82
+
83
+ /// Text color of the expander sub-title.
84
+ /// @group expander
85
+ $kendo-expander-header-sub-title-text: var( --kendo-subtle-text, initial ) !default;
86
+
87
+ /// Horizontal margin of the expander indicator.
88
+ /// @group expander
89
+ $kendo-expander-indicator-margin-x: map-get( $kendo-spacing, 2 ) + map-get( $kendo-spacing, thin ) !default;
90
+ /// Text color of the expander indicator.
91
+ /// @group expander
92
+ $kendo-expander-indicator-text: var( --kendo-expander-text, #{$kendo-expander-text} );
93
+
94
+ /// Horizontal padding of the expander content.
95
+ /// @group expander
96
+ $kendo-expander-content-padding-x: map-get( $kendo-spacing, 4 ) !default;
97
+ /// Vertical padding of the expander content.
98
+ /// @group expander
99
+ $kendo-expander-content-padding-y: map-get( $kendo-spacing, 4 ) !default;
@@ -0,0 +1,24 @@
1
+ // Module meta
2
+ $_kendo-module-meta: (
3
+ name: "expansion-panel",
4
+ dependencies: (
5
+ "icon"
6
+ )
7
+ );
8
+
9
+ // Component
10
+ @forward "_variables.scss";
11
+ @use "_layout.scss" as *;
12
+ @use "_theme.scss" as *;
13
+
14
+ // Register
15
+ @use "../core/module-system/" as module;
16
+ @include module.register( $_kendo-module-meta... );
17
+
18
+ // Expose
19
+ @mixin styles() {
20
+ @include module.render( "expansion-panel" ) {
21
+ @include kendo-expansion-panel--layout();
22
+ @include kendo-expansion-panel--theme();
23
+ }
24
+ }
@@ -0,0 +1,173 @@
1
+ @use "_variables.scss" as *;
2
+
3
+ @mixin kendo-fab--layout() {
4
+
5
+ .k-fab {
6
+ padding-inline: var( --INTERNAL--kendo-fab-padding-x, 0 );
7
+ padding-block: var( --INTERNAL--kendo-fab-padding-y, 0 );
8
+ border-width: 0;
9
+ border-style: solid;
10
+ border-color: transparent;
11
+ box-sizing: border-box;
12
+ position: relative;
13
+ color: inherit;
14
+ background-color: transparent;
15
+ font-family: var( --kendo-fab-font-family, #{$kendo-fab-font-family} );
16
+ font-size:var( --kendo-fab-font-size, #{$kendo-fab-font-size} );
17
+ line-height: var( --kendo-fab-line-height, #{$kendo-fab-line-height} );
18
+ text-align: center;
19
+ white-space: nowrap;
20
+ display: inline-flex;
21
+ align-items: center;
22
+ justify-content: center;
23
+ vertical-align: middle;
24
+ overflow: hidden;
25
+ text-overflow: ellipsis;
26
+ cursor: pointer;
27
+ outline: none;
28
+
29
+ *,
30
+ *::before,
31
+ *::after {
32
+ box-sizing: border-box;
33
+ }
34
+
35
+ &:focus::after,
36
+ &.k-focus::after {
37
+ content: "";
38
+ position: absolute;
39
+ border: medium none;
40
+ inset: var( --kendo-fab-focus-offset, #{$kendo-fab-focus-offset} );
41
+ outline-width: var( --kendo-fab-focus-outline-width, #{$kendo-fab-focus-outline-width} );
42
+ outline-style: var( --kendo-fab-focus-outline-style, #{$kendo-fab-focus-outline-style} );
43
+ z-index: 1;
44
+ }
45
+
46
+ // Fix for focused FAB with full roundness
47
+ &.k-rounded-full {
48
+ &:focus::after,
49
+ &.k-focus::after {
50
+ border-radius: inherit;
51
+ }
52
+ }
53
+ }
54
+
55
+ // FAB Icon
56
+ .k-fab-icon {
57
+ width: var( --kendo-fab-icon-width, #{$kendo-fab-icon-width} );
58
+ height: var( --kendo-fab-icon-height, #{$kendo-fab-icon-height} );
59
+
60
+ &:not(:only-child) {
61
+ margin-inline-end: var( --kendo-fab-icon-spacing, #{$kendo-fab-icon-spacing} );
62
+ margin-inline-start: calc( var( --kendo-fab-icon-spacing, #{$kendo-fab-icon-spacing} ) * -1 );
63
+ }
64
+ }
65
+
66
+
67
+ // Sizes
68
+ @each $size, $size-props in $kendo-fab-sizes {
69
+ $_padding-x: map-get( $size-props, padding-x );
70
+ $_padding-y: map-get( $size-props, padding-y );
71
+
72
+ .k-fab-#{$size} {
73
+ --INTERNAL--kendo-fab-padding-x: var( --kendo-fab-#{$size}-padding-x, #{$_padding-x} );
74
+ --INTERNAL--kendo-fab-padding-y: var( --kendo-fab-#{$size}-padding-y, #{$_padding-y} );
75
+ }
76
+ }
77
+
78
+ // Shapes
79
+ .k-fab-square {
80
+ aspect-ratio: 1;
81
+ }
82
+
83
+
84
+ // Items
85
+ .k-fab-items {
86
+ margin: 0;
87
+ padding-inline: var( --kendo-fab-items-padding-x, #{$kendo-fab-items-padding-x} );
88
+ padding-block: var( --kendo-fab-items-padding-y, #{$kendo-fab-items-padding-y} );
89
+ display: flex;
90
+ }
91
+
92
+ .k-fab-items-bottom {
93
+ flex-direction: column;
94
+ }
95
+ .k-fab-items-bottom .k-fab-item:last-child {
96
+ margin-bottom: 0;
97
+ }
98
+
99
+ .k-fab-items-top {
100
+ flex-direction: column-reverse;
101
+ }
102
+ .k-fab-items-top .k-fab-item:first-child {
103
+ margin-bottom: 0;
104
+ }
105
+
106
+ .k-fab-item {
107
+ list-style-type: none;
108
+ margin-block-end: var( --kendo-fab-item-offset-y, #{$kendo-fab-item-offset-y} );
109
+ outline: none;
110
+ white-space: nowrap;
111
+ display: flex;
112
+ align-items: center;
113
+ justify-content: flex-end;
114
+ cursor: pointer;
115
+
116
+ &:focus .k-fab-item-text::after,
117
+ &:focus .k-fab-item-icon::after,
118
+ &.k-focus .k-fab-item-text::after,
119
+ &.k-focus .k-fab-item-icon::after {
120
+ content: "";
121
+ position: absolute;
122
+ border: medium none;
123
+ inset: var( --kendo-fab-item-focus-offset, #{$kendo-fab-item-focus-offset} );
124
+ outline-width: var( --kendo-fab-item-focus-outline-width, #{$kendo-fab-item-focus-outline-width} );
125
+ outline-style: var( --kendo-fab-item-focus-outline-style, #{$kendo-fab-item-focus-outline-style} );
126
+ z-index: 1;
127
+ }
128
+
129
+ &.k-text-right {
130
+ flex-direction: row;
131
+
132
+ .k-fab-item-text {
133
+ margin-inline-end: var( --kendo-fab-item-text-offset-x, #{$kendo-fab-item-text-offset-x} );
134
+ }
135
+ }
136
+
137
+ &.k-text-left {
138
+ flex-direction: row-reverse;
139
+
140
+ .k-fab-item-text {
141
+ margin-inline-start: var( --kendo-fab-item-text-offset-x, #{$kendo-fab-item-text-offset-x} );
142
+ }
143
+ }
144
+ }
145
+
146
+ .k-fab-item-text {
147
+ padding-inline: var( --kendo-fab-item-text-padding-x, #{$kendo-fab-item-text-padding-x} );
148
+ padding-block: var( --kendo-fab-item-text-padding-y, #{$kendo-fab-item-text-padding-y} );
149
+ border-width: var( --kendo-fab-item-text-border-width, #{$kendo-fab-item-text-border-width} );
150
+ border-style: var( --kendo-fab-item-text-border-style, #{$kendo-fab-item-text-border-style} );
151
+ border-radius: var( --kendo-fab-item-text-border-radius, #{$kendo-fab-item-text-border-radius} );
152
+ position: relative;
153
+ font-size: var( --kendo-fab-item-text-font-size, #{$kendo-fab-item-text-font-size} );
154
+ line-height: var( --kendo-fab-item-text-line-height, #{$kendo-fab-item-text-line-height} );
155
+ }
156
+
157
+ .k-fab-item-icon {
158
+ width: var( --kendo-fab-item-icon-width, #{$kendo-fab-item-icon-width} );
159
+ height: var( --kendo-fab-item-icon-height, #{$kendo-fab-item-icon-height} );
160
+ padding-inline: var( --kendo-fab-item-icon-padding-x, #{$kendo-fab-item-icon-padding-x} );
161
+ padding-block: var( --kendo-fab-item-icon-padding-y, #{$kendo-fab-item-icon-padding-y} );
162
+ border-width: var( --kendo-fab-item-icon-border-width, #{$kendo-fab-item-icon-border-width} );
163
+ border-style: var( --kendo-fab-item-icon-border-style, #{$kendo-fab-item-icon-border-style} );
164
+ border-radius: var( --kendo-fab-item-border-radius, #{$kendo-fab-item-icon-border-radius} );
165
+ box-sizing: content-box;
166
+ outline: none;
167
+
168
+ &::after {
169
+ border-radius: inherit;
170
+ }
171
+ }
172
+
173
+ }