@festo-ui/angular 3.1.0 → 3.2.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 (292) hide show
  1. package/README.md +5 -1
  2. package/css/bundle.css +1 -0
  3. package/css/image-gallery.css +1 -0
  4. package/css/popover.css +1 -0
  5. package/esm2020/festo-ui-angular.mjs +5 -0
  6. package/esm2020/index.mjs +20 -0
  7. package/esm2020/lib/components/accordion/accordion-header/accordion-header.component.mjs +11 -0
  8. package/esm2020/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.mjs +15 -0
  9. package/esm2020/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.mjs +28 -0
  10. package/esm2020/lib/components/accordion/accordion-item/accordion-item.component.mjs +143 -0
  11. package/esm2020/lib/components/accordion/accordion.component.mjs +59 -0
  12. package/esm2020/lib/components/accordion/index.mjs +6 -0
  13. package/esm2020/lib/components/breadcrumb/breadcrumb.component.mjs +23 -0
  14. package/esm2020/lib/components/buttons/button/button.component.mjs +41 -0
  15. package/esm2020/lib/components/buttons/link-button/link-button.component.mjs +33 -0
  16. package/esm2020/lib/components/chips/chip/chip.component.mjs +37 -0
  17. package/esm2020/lib/components/chips/chip-container/chip-container.component.mjs +16 -0
  18. package/esm2020/lib/components/click-outside.directive.mjs +28 -0
  19. package/esm2020/lib/components/components.module.mjs +223 -0
  20. package/esm2020/lib/components/image-gallery/image-gallery.component.mjs +58 -0
  21. package/esm2020/lib/components/image-gallery/image-gallery.module.mjs +21 -0
  22. package/esm2020/lib/components/loading-indicator/loading-indicator.component.mjs +16 -0
  23. package/esm2020/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.mjs +27 -0
  24. package/esm2020/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.mjs +43 -0
  25. package/esm2020/lib/components/mobile-flyout/mobile-flyout.component.mjs +41 -0
  26. package/esm2020/lib/components/modals/alert/alert.component.mjs +52 -0
  27. package/esm2020/lib/components/modals/confirm/confirm.component.mjs +53 -0
  28. package/esm2020/lib/components/modals/custom-modal/custom-modal.component.mjs +70 -0
  29. package/esm2020/lib/components/modals/index.mjs +2 -0
  30. package/esm2020/lib/components/modals/modal.service.mjs +121 -0
  31. package/esm2020/lib/components/modals/modals.module.mjs +31 -0
  32. package/esm2020/lib/components/modals/prompt/prompt.component.mjs +102 -0
  33. package/esm2020/lib/components/pagination/pagination.component.mjs +55 -0
  34. package/esm2020/lib/components/popovers/legend/legend.component.mjs +42 -0
  35. package/esm2020/lib/components/popovers/legend/legend.directive.mjs +31 -0
  36. package/esm2020/lib/components/popovers/popover/popover.component.mjs +31 -0
  37. package/esm2020/lib/components/popovers/popover-content/popover-content.component.mjs +82 -0
  38. package/esm2020/lib/components/popovers/popover-content/popover-content.directive.mjs +39 -0
  39. package/esm2020/lib/components/popovers/popover-menu/popover-menu.component.mjs +68 -0
  40. package/esm2020/lib/components/popovers/popover-ref.mjs +25 -0
  41. package/esm2020/lib/components/popovers/popover.defaults.mjs +60 -0
  42. package/esm2020/lib/components/popovers/popover.models.mjs +23 -0
  43. package/esm2020/lib/components/popovers/popover.service.mjs +123 -0
  44. package/esm2020/lib/components/popovers/tooltip/tooltip.directive.mjs +100 -0
  45. package/esm2020/lib/components/progress/progress.component.mjs +20 -0
  46. package/esm2020/lib/components/scroll/index.mjs +2 -0
  47. package/esm2020/lib/components/scroll/scrollable.directive.mjs +72 -0
  48. package/esm2020/lib/components/search-input/safe-html.pipe.mjs +21 -0
  49. package/esm2020/lib/components/search-input/search-input.component.mjs +172 -0
  50. package/esm2020/lib/components/snackbar/snackbar-container.component.mjs +21 -0
  51. package/esm2020/lib/components/snackbar/snackbar-container.directive.mjs +83 -0
  52. package/esm2020/lib/components/snackbar/snackbar.component.mjs +79 -0
  53. package/esm2020/lib/components/snackbar/snackbar.models.mjs +2 -0
  54. package/esm2020/lib/components/snackbar/snackbar.module.mjs +26 -0
  55. package/esm2020/lib/components/snackbar/snackbar.service.mjs +23 -0
  56. package/esm2020/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.mjs +19 -0
  57. package/esm2020/lib/components/stepper-horizontal/stepper-horizontal.component.mjs +51 -0
  58. package/esm2020/lib/components/stepper-vertical/step-vertical/step-vertical.component.mjs +56 -0
  59. package/esm2020/lib/components/stepper-vertical/stepper-vertical.component.mjs +54 -0
  60. package/esm2020/lib/components/table-header-cell/table-header-cell.directive.mjs +58 -0
  61. package/esm2020/lib/components/tabs/tab-pane/tab-pane.component.mjs +31 -0
  62. package/esm2020/lib/components/tabs/tabs.component.mjs +353 -0
  63. package/esm2020/lib/content/content.module.mjs +20 -0
  64. package/esm2020/lib/content/icon/icon.component.mjs +17 -0
  65. package/esm2020/lib/festo-angular.module.mjs +65 -0
  66. package/esm2020/lib/forms/checkbox/checkbox.component.mjs +149 -0
  67. package/esm2020/lib/forms/color-indicator/color-indicator.component.mjs +68 -0
  68. package/esm2020/lib/forms/color-picker/color-helper.mjs +121 -0
  69. package/esm2020/lib/forms/color-picker/color-picker.component.mjs +273 -0
  70. package/esm2020/lib/forms/container-host.mjs +27 -0
  71. package/esm2020/lib/forms/date-picker/date-picker.component.mjs +199 -0
  72. package/esm2020/lib/forms/date-range-picker/date-range-picker.component.mjs +224 -0
  73. package/esm2020/lib/forms/forms.module.mjs +146 -0
  74. package/esm2020/lib/forms/radio/radio.component.mjs +346 -0
  75. package/esm2020/lib/forms/segment/segment-control/segment-control.component.mjs +57 -0
  76. package/esm2020/lib/forms/segment/segment.component.mjs +109 -0
  77. package/esm2020/lib/forms/select/chip-text.pipe.mjs +34 -0
  78. package/esm2020/lib/forms/select/select-option/select-option.component.mjs +22 -0
  79. package/esm2020/lib/forms/select/select.component.mjs +257 -0
  80. package/esm2020/lib/forms/slider/slider.component.mjs +110 -0
  81. package/esm2020/lib/forms/switch/switch.component.mjs +120 -0
  82. package/esm2020/lib/forms/text-area/text-area.component.mjs +180 -0
  83. package/esm2020/lib/forms/text-editor/text-editor.component.mjs +286 -0
  84. package/esm2020/lib/forms/text-input/text-input.component.mjs +183 -0
  85. package/esm2020/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.mjs +89 -0
  86. package/esm2020/lib/forms/time-picker/time-picker.component.mjs +188 -0
  87. package/esm2020/lib/forms/unique-selection-dispatcher.mjs +39 -0
  88. package/esm2020/lib/forms/value-accessor-base.mjs +41 -0
  89. package/esm2020/lib/layout/layout.module.mjs +18 -0
  90. package/esm2020/lib/wrappers/flatpickr/flatpickr.component.mjs +59 -0
  91. package/fesm2015/festo-ui-angular.mjs +6117 -0
  92. package/fesm2015/festo-ui-angular.mjs.map +1 -0
  93. package/fesm2020/festo-ui-angular.mjs +6101 -0
  94. package/fesm2020/festo-ui-angular.mjs.map +1 -0
  95. package/index.d.ts +1 -0
  96. package/lib/components/accordion/accordion-header/accordion-header.component.d.ts +5 -0
  97. package/lib/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.d.ts +6 -0
  98. package/lib/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.d.ts +15 -0
  99. package/lib/components/accordion/accordion-item/accordion-item.component.d.ts +34 -0
  100. package/lib/components/accordion/accordion.component.d.ts +24 -0
  101. package/lib/components/accordion/index.d.ts +5 -0
  102. package/lib/components/components.module.d.ts +40 -20
  103. package/lib/components/image-gallery/image-gallery.component.d.ts +33 -0
  104. package/lib/components/image-gallery/image-gallery.module.d.ts +10 -0
  105. package/lib/components/mobile-flyout/mobile-flyout-item/mobile-flyout-item.component.d.ts +10 -0
  106. package/lib/components/mobile-flyout/mobile-flyout-page/mobile-flyout-page.component.d.ts +15 -0
  107. package/lib/components/mobile-flyout/mobile-flyout.component.d.ts +11 -0
  108. package/lib/components/modals/confirm/confirm.component.d.ts +1 -3
  109. package/lib/components/modals/custom-modal/custom-modal.component.d.ts +21 -0
  110. package/lib/components/modals/modal.service.d.ts +2 -0
  111. package/lib/components/modals/modals.module.d.ts +8 -5
  112. package/lib/components/popovers/tooltip/tooltip.directive.d.ts +5 -3
  113. package/lib/components/search-input/safe-html.pipe.d.ts +10 -0
  114. package/lib/components/search-input/search-input.component.d.ts +22 -5
  115. package/lib/components/stepper-horizontal/step-horizontal/step-horizontal.component.d.ts +7 -0
  116. package/lib/components/stepper-horizontal/stepper-horizontal.component.d.ts +14 -0
  117. package/lib/components/stepper-vertical/step-vertical/step-vertical.component.d.ts +18 -0
  118. package/lib/components/stepper-vertical/stepper-vertical.component.d.ts +14 -0
  119. package/lib/festo-angular.module.d.ts +2 -1
  120. package/package.json +41 -19
  121. package/scss/base/components/accordion/accordion-header/accordion-header.component.scss +12 -0
  122. package/scss/base/components/accordion/accordion-item/accordion-item-body/accordion-item-body.component.scss +109 -0
  123. package/scss/base/components/accordion/accordion-item/accordion-item-header/accordion-item-header.component.scss +9 -0
  124. package/scss/base/components/accordion/accordion-item/accordion-item.component.scss +71 -0
  125. package/scss/base/components/accordion/accordion.component.scss +6 -0
  126. package/scss/base/components/breadcrumb/breadcrumb.component.scss +0 -1
  127. package/scss/base/components/buttons/button/button.component.scss +6 -1
  128. package/scss/base/components/image-gallery/image-gallery.component.scss +0 -0
  129. package/scss/base/components/image-gallery/styles.scss +5 -0
  130. package/scss/base/components/modals/prompt/prompt.component.scss +0 -1
  131. package/scss/base/components/popovers/legend/legend.component.scss +2 -2
  132. package/scss/base/components/popovers/popover/styles.scss +2 -3
  133. package/scss/base/components/popovers/popover-content/popover-content.component.scss +1 -1
  134. package/scss/base/components/scroll/scroll-story-helper.scss +1 -3
  135. package/scss/base/components/search-input/search-input.component.scss +4 -0
  136. package/scss/base/components/snackbar/snackbar.component.scss +1 -1
  137. package/scss/base/components/stepper-horizontal/step-horizontal/step-horizontal.component.scss +23 -0
  138. package/scss/base/components/stepper-vertical/step-vertical/step-vertical.component.scss +6 -0
  139. package/scss/base/forms/color-indicator/color-indicator.component.scss +1 -1
  140. package/scss/base/forms/color-picker/color-picker.component.scss +15 -15
  141. package/scss/base/forms/date-picker/date-picker.component.scss +1 -1
  142. package/scss/base/forms/date-range-picker/date-range-picker.component.scss +1 -1
  143. package/scss/base/forms/text-area/text-area.component.scss +4 -4
  144. package/scss/base/forms/text-editor/text-editor.component.scss +8 -10
  145. package/scss/base/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.scss +1 -1
  146. package/bundles/festo-ui-angular.umd.js +0 -6429
  147. package/bundles/festo-ui-angular.umd.js.map +0 -1
  148. package/esm2015/festo-ui-angular.js +0 -5
  149. package/esm2015/festo-ui-angular.js.map +0 -1
  150. package/esm2015/index.js +0 -18
  151. package/esm2015/index.js.map +0 -1
  152. package/esm2015/lib/components/breadcrumb/breadcrumb.component.js +0 -27
  153. package/esm2015/lib/components/breadcrumb/breadcrumb.component.js.map +0 -1
  154. package/esm2015/lib/components/buttons/button/button.component.js +0 -46
  155. package/esm2015/lib/components/buttons/button/button.component.js.map +0 -1
  156. package/esm2015/lib/components/buttons/link-button/link-button.component.js +0 -38
  157. package/esm2015/lib/components/buttons/link-button/link-button.component.js.map +0 -1
  158. package/esm2015/lib/components/chips/chip/chip.component.js +0 -42
  159. package/esm2015/lib/components/chips/chip/chip.component.js.map +0 -1
  160. package/esm2015/lib/components/chips/chip-container/chip-container.component.js +0 -21
  161. package/esm2015/lib/components/chips/chip-container/chip-container.component.js.map +0 -1
  162. package/esm2015/lib/components/click-outside.directive.js +0 -28
  163. package/esm2015/lib/components/click-outside.directive.js.map +0 -1
  164. package/esm2015/lib/components/components.module.js +0 -155
  165. package/esm2015/lib/components/components.module.js.map +0 -1
  166. package/esm2015/lib/components/loading-indicator/loading-indicator.component.js +0 -21
  167. package/esm2015/lib/components/loading-indicator/loading-indicator.component.js.map +0 -1
  168. package/esm2015/lib/components/modals/alert/alert.component.js +0 -57
  169. package/esm2015/lib/components/modals/alert/alert.component.js.map +0 -1
  170. package/esm2015/lib/components/modals/confirm/confirm.component.js +0 -73
  171. package/esm2015/lib/components/modals/confirm/confirm.component.js.map +0 -1
  172. package/esm2015/lib/components/modals/index.js +0 -2
  173. package/esm2015/lib/components/modals/index.js.map +0 -1
  174. package/esm2015/lib/components/modals/modal.service.js +0 -91
  175. package/esm2015/lib/components/modals/modal.service.js.map +0 -1
  176. package/esm2015/lib/components/modals/modals.module.js +0 -28
  177. package/esm2015/lib/components/modals/modals.module.js.map +0 -1
  178. package/esm2015/lib/components/modals/prompt/prompt.component.js +0 -110
  179. package/esm2015/lib/components/modals/prompt/prompt.component.js.map +0 -1
  180. package/esm2015/lib/components/pagination/pagination.component.js +0 -60
  181. package/esm2015/lib/components/pagination/pagination.component.js.map +0 -1
  182. package/esm2015/lib/components/popovers/legend/legend.component.js +0 -46
  183. package/esm2015/lib/components/popovers/legend/legend.component.js.map +0 -1
  184. package/esm2015/lib/components/popovers/legend/legend.directive.js +0 -31
  185. package/esm2015/lib/components/popovers/legend/legend.directive.js.map +0 -1
  186. package/esm2015/lib/components/popovers/popover/popover.component.js +0 -35
  187. package/esm2015/lib/components/popovers/popover/popover.component.js.map +0 -1
  188. package/esm2015/lib/components/popovers/popover-content/popover-content.component.js +0 -86
  189. package/esm2015/lib/components/popovers/popover-content/popover-content.component.js.map +0 -1
  190. package/esm2015/lib/components/popovers/popover-content/popover-content.directive.js +0 -39
  191. package/esm2015/lib/components/popovers/popover-content/popover-content.directive.js.map +0 -1
  192. package/esm2015/lib/components/popovers/popover-menu/popover-menu.component.js +0 -72
  193. package/esm2015/lib/components/popovers/popover-menu/popover-menu.component.js.map +0 -1
  194. package/esm2015/lib/components/popovers/popover-ref.js +0 -25
  195. package/esm2015/lib/components/popovers/popover-ref.js.map +0 -1
  196. package/esm2015/lib/components/popovers/popover.defaults.js +0 -60
  197. package/esm2015/lib/components/popovers/popover.defaults.js.map +0 -1
  198. package/esm2015/lib/components/popovers/popover.models.js +0 -23
  199. package/esm2015/lib/components/popovers/popover.models.js.map +0 -1
  200. package/esm2015/lib/components/popovers/popover.service.js +0 -117
  201. package/esm2015/lib/components/popovers/popover.service.js.map +0 -1
  202. package/esm2015/lib/components/popovers/tooltip/tooltip.directive.js +0 -96
  203. package/esm2015/lib/components/popovers/tooltip/tooltip.directive.js.map +0 -1
  204. package/esm2015/lib/components/progress/progress.component.js +0 -23
  205. package/esm2015/lib/components/progress/progress.component.js.map +0 -1
  206. package/esm2015/lib/components/scroll/index.js +0 -2
  207. package/esm2015/lib/components/scroll/index.js.map +0 -1
  208. package/esm2015/lib/components/scroll/scrollable.directive.js +0 -73
  209. package/esm2015/lib/components/scroll/scrollable.directive.js.map +0 -1
  210. package/esm2015/lib/components/search-input/search-input.component.js +0 -155
  211. package/esm2015/lib/components/search-input/search-input.component.js.map +0 -1
  212. package/esm2015/lib/components/snackbar/snackbar-container.component.js +0 -26
  213. package/esm2015/lib/components/snackbar/snackbar-container.component.js.map +0 -1
  214. package/esm2015/lib/components/snackbar/snackbar-container.directive.js +0 -83
  215. package/esm2015/lib/components/snackbar/snackbar-container.directive.js.map +0 -1
  216. package/esm2015/lib/components/snackbar/snackbar.component.js +0 -85
  217. package/esm2015/lib/components/snackbar/snackbar.component.js.map +0 -1
  218. package/esm2015/lib/components/snackbar/snackbar.models.js +0 -2
  219. package/esm2015/lib/components/snackbar/snackbar.models.js.map +0 -1
  220. package/esm2015/lib/components/snackbar/snackbar.module.js +0 -26
  221. package/esm2015/lib/components/snackbar/snackbar.module.js.map +0 -1
  222. package/esm2015/lib/components/snackbar/snackbar.service.js +0 -23
  223. package/esm2015/lib/components/snackbar/snackbar.service.js.map +0 -1
  224. package/esm2015/lib/components/stepper/stepper.component.js +0 -28
  225. package/esm2015/lib/components/stepper/stepper.component.js.map +0 -1
  226. package/esm2015/lib/components/table-header-cell/table-header-cell.directive.js +0 -58
  227. package/esm2015/lib/components/table-header-cell/table-header-cell.directive.js.map +0 -1
  228. package/esm2015/lib/components/tabs/tab-pane/tab-pane.component.js +0 -35
  229. package/esm2015/lib/components/tabs/tab-pane/tab-pane.component.js.map +0 -1
  230. package/esm2015/lib/components/tabs/tabs.component.js +0 -362
  231. package/esm2015/lib/components/tabs/tabs.component.js.map +0 -1
  232. package/esm2015/lib/content/content.module.js +0 -24
  233. package/esm2015/lib/content/content.module.js.map +0 -1
  234. package/esm2015/lib/content/icon/icon.component.js +0 -23
  235. package/esm2015/lib/content/icon/icon.component.js.map +0 -1
  236. package/esm2015/lib/festo-angular.module.js +0 -58
  237. package/esm2015/lib/festo-angular.module.js.map +0 -1
  238. package/esm2015/lib/forms/checkbox/checkbox.component.js +0 -156
  239. package/esm2015/lib/forms/checkbox/checkbox.component.js.map +0 -1
  240. package/esm2015/lib/forms/color-indicator/color-indicator.component.js +0 -72
  241. package/esm2015/lib/forms/color-indicator/color-indicator.component.js.map +0 -1
  242. package/esm2015/lib/forms/color-picker/color-helper.js +0 -121
  243. package/esm2015/lib/forms/color-picker/color-helper.js.map +0 -1
  244. package/esm2015/lib/forms/color-picker/color-picker.component.js +0 -280
  245. package/esm2015/lib/forms/color-picker/color-picker.component.js.map +0 -1
  246. package/esm2015/lib/forms/container-host.js +0 -27
  247. package/esm2015/lib/forms/container-host.js.map +0 -1
  248. package/esm2015/lib/forms/date-picker/date-picker.component.js +0 -205
  249. package/esm2015/lib/forms/date-picker/date-picker.component.js.map +0 -1
  250. package/esm2015/lib/forms/date-range-picker/date-range-picker.component.js +0 -230
  251. package/esm2015/lib/forms/date-range-picker/date-range-picker.component.js.map +0 -1
  252. package/esm2015/lib/forms/forms.module.js +0 -146
  253. package/esm2015/lib/forms/forms.module.js.map +0 -1
  254. package/esm2015/lib/forms/radio/radio.component.js +0 -353
  255. package/esm2015/lib/forms/radio/radio.component.js.map +0 -1
  256. package/esm2015/lib/forms/segment/segment-control/segment-control.component.js +0 -58
  257. package/esm2015/lib/forms/segment/segment-control/segment-control.component.js.map +0 -1
  258. package/esm2015/lib/forms/segment/segment.component.js +0 -116
  259. package/esm2015/lib/forms/segment/segment.component.js.map +0 -1
  260. package/esm2015/lib/forms/select/chip-text.pipe.js +0 -34
  261. package/esm2015/lib/forms/select/chip-text.pipe.js.map +0 -1
  262. package/esm2015/lib/forms/select/select-option/select-option.component.js +0 -29
  263. package/esm2015/lib/forms/select/select-option/select-option.component.js.map +0 -1
  264. package/esm2015/lib/forms/select/select.component.js +0 -265
  265. package/esm2015/lib/forms/select/select.component.js.map +0 -1
  266. package/esm2015/lib/forms/slider/slider.component.js +0 -116
  267. package/esm2015/lib/forms/slider/slider.component.js.map +0 -1
  268. package/esm2015/lib/forms/switch/switch.component.js +0 -127
  269. package/esm2015/lib/forms/switch/switch.component.js.map +0 -1
  270. package/esm2015/lib/forms/text-area/text-area.component.js +0 -186
  271. package/esm2015/lib/forms/text-area/text-area.component.js.map +0 -1
  272. package/esm2015/lib/forms/text-editor/text-editor.component.js +0 -294
  273. package/esm2015/lib/forms/text-editor/text-editor.component.js.map +0 -1
  274. package/esm2015/lib/forms/text-input/text-input.component.js +0 -189
  275. package/esm2015/lib/forms/text-input/text-input.component.js.map +0 -1
  276. package/esm2015/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.js +0 -103
  277. package/esm2015/lib/forms/time-picker/time-picker-dropdown/time-picker-dropdown.component.js.map +0 -1
  278. package/esm2015/lib/forms/time-picker/time-picker.component.js +0 -194
  279. package/esm2015/lib/forms/time-picker/time-picker.component.js.map +0 -1
  280. package/esm2015/lib/forms/unique-selection-dispatcher.js +0 -39
  281. package/esm2015/lib/forms/unique-selection-dispatcher.js.map +0 -1
  282. package/esm2015/lib/forms/value-accessor-base.js +0 -41
  283. package/esm2015/lib/forms/value-accessor-base.js.map +0 -1
  284. package/esm2015/lib/layout/layout.module.js +0 -18
  285. package/esm2015/lib/layout/layout.module.js.map +0 -1
  286. package/esm2015/lib/wrappers/flatpickr/flatpickr.component.js +0 -63
  287. package/esm2015/lib/wrappers/flatpickr/flatpickr.component.js.map +0 -1
  288. package/fesm2015/festo-ui-angular.js +0 -5596
  289. package/fesm2015/festo-ui-angular.js.map +0 -1
  290. package/lib/components/stepper/stepper.component.d.ts +0 -30
  291. package/scss/base/components/stepper/stepper.component.scss +0 -118
  292. package/scss/styles.scss +0 -2056
package/scss/styles.scss DELETED
@@ -1,2056 +0,0 @@
1
- /** Main global styles **/
2
- @import '~@angular/cdk/overlay-prebuilt';
3
- $black: var(--fwe-black) !default;
4
- $white: var(--fwe-white) !default;
5
- $white-dark: var(--fwe-white-dark) !default;
6
- $caerul: var(--fwe-caerul) !default;
7
- $sucaerul: var(--fwe-sucaerul) !default;
8
- $sucanul: var(--fwe-sucanul) !default;
9
-
10
- $gray-100: var(--fwe-gray-100) !default;
11
- $gray-200: var(--fwe-gray-200) !default;
12
- $gray-300: var(--fwe-gray-300) !default;
13
- $gray-400: var(--fwe-gray-400) !default;
14
-
15
- $icon-black: var(--fwe-icon-black) !default;
16
- $icon-white: var(--fwe-icon-white) !default;
17
- $icon-gray: var(--fwe-icon-gray) !default;
18
- $icon-hero: var(--fwe-icon-hero) !default;
19
- $icon-hero-light: var(--fwe-icon-hero-light) !default;
20
-
21
- $green: var(--fwe-green) !default;
22
- $yellow: var(--fwe-yellow) !default;
23
- $orange: var(--fwe-orange) !default;
24
- $red: var(--fwe-red) !default;
25
- $green-dark: var(--fwe-green-dark) !default;
26
- $yellow-dark: var(--fwe-yellow-dark) !default;
27
- $orange-dark: var(--fwe-orange-dark) !default;
28
- $red-dark: var(--fwe-red-dark) !default;
29
-
30
- // control colors
31
- $text: var(--fwe-text) !default;
32
- $text-light: var(--fwe-text-light) !default;
33
- $text-disabled: var(--fwe-text-disabled) !default;
34
-
35
- $hero: var(--fwe-hero) !default;
36
- $hero-dark: var(--fwe-hero-dark) !default;
37
- $hero-darker: var(--fwe-hero-darker) !default;
38
-
39
- $control: var(--fwe-control) !default;
40
- $control-dark: var(--fwe-control-dark) !default;
41
- $control-darker: var(--fwe-control-darker) !default;
42
- $control-disabled: var(--fwe-control-disabled) !default;
43
- $control-box-shadow: 0px 1px 8px rgba(black, 0.3) !default;
44
- $control-scrollbar: var(--fwe-control-scrollbar) !default;
45
-
46
- $control-border: var(--fwe-control-border) !default;
47
- $control-border-dark: var(--fwe-control-border-dark) !default;
48
- $control-border-darker: var(--fwe-control-border-darker) !default;
49
-
50
- $background: var(--fwe-background) !default;
51
- $background-modal: rgba(black, 0.7) !default;
52
-
53
- $border: var(--fwe-border) !default;
54
- $border-disabled: var(--fwe-border-disabled) !default;
55
-
56
- $snackbar-info-bg: var(--fwe-snackbar-info-bg) !default;
57
- $snackbar-warning-bg: var(--fwe-snackbar-warning-bg) !default;
58
- $snackbar-error-bg: var(--fwe-snackbar-error-bg) !default;
59
-
60
- // color map
61
- $colors: () !default;
62
- $colors: map-merge(
63
- (
64
- "black": $black,
65
- "white": $white,
66
- "white-dark": $white-dark,
67
- "caerul": $caerul,
68
- "sucaerul": $sucaerul,
69
- "sucanul": $sucanul,
70
- "gray-100": $gray-100,
71
- "gray-200": $gray-200,
72
- "gray-300": $gray-300,
73
- "gray-400": $gray-400,
74
- "icon-black": $icon-black,
75
- "icon-white": $icon-white,
76
- "icon-gray": $icon-gray,
77
- "icon-hero": $icon-hero,
78
- "icon-hero-light": $icon-hero-light,
79
- "green": $green,
80
- "yellow": $yellow,
81
- "orange": $orange,
82
- "red": $red,
83
- "green-dark": $green-dark,
84
- "yellow-dark": $yellow-dark,
85
- "orange-dark": $orange-dark,
86
- "red-dark": $red-dark,
87
- "text": $text,
88
- "text-light": $text-light,
89
- "text-disabled": $text-disabled,
90
- "hero": $hero,
91
- "hero-dark": $hero-dark,
92
- "hero-darker": $hero-darker,
93
- "control": $control,
94
- "control-dark": $control-dark,
95
- "control-darker": $control-darker,
96
- "control-disabled": $control-disabled,
97
- "control-border": $control,
98
- "control-border-dark": $control-dark,
99
- "control-border-darker": $control-darker,
100
- "control-border-disabled": $control-disabled,
101
- "background": $background,
102
- "background-modal": $background-modal,
103
- "border": $border,
104
- "border-disabled": $border-disabled
105
- ),
106
- $colors
107
- );
108
-
109
- $badge-colors: () !default;
110
- $badge-colors: map-merge(
111
- (
112
- "caerul": $caerul,
113
- "green": $green,
114
- "yellow": $yellow,
115
- "orange": $orange,
116
- "red": $red,
117
- "hero": $hero,
118
- "hero-dark": $hero-dark,
119
- "hero-darker": $hero-darker,
120
- "control": $control,
121
- "control-dark": $control-dark,
122
- "control-darker": $control-darker
123
- ),
124
- $badge-colors
125
- );
126
-
127
- $font-family-sans-serif: "MetaPro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
128
- "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
129
- $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
130
- $font-family-icons-16: "festo_icons-16" !default;
131
- $font-family-icons-24: "festo_icons-24" !default;
132
- $font-family-icons-32: "festo_icons-32" !default;
133
-
134
- $font-family-base: $font-family-sans-serif !default;
135
-
136
- $font-size-small: 12px !default;
137
- $font-size-md: 14px !default;
138
- $font-size-base: 16px !default;
139
- $font-size-xl: 24px !default;
140
- $font-size-xxl: 32px !default;
141
-
142
- $font-weight-normal: 400 !default;
143
- $font-weight-bold: 700 !default;
144
-
145
- $font-weight-base: $font-weight-normal !default;
146
- $line-height-base: 1.5 !default;
147
-
148
- $container-padding: 0 8px 0 8px;
149
- $container-paddings: (
150
- xs: 0 16px 0 16px,
151
- md: 0 24px 0 24px,
152
- lg: 0 60px 0 60px,
153
- xxl: 0 86px 0 86px
154
- ) !default;
155
-
156
- $grid-columns: 12 !default;
157
- $grid-gap: 24px !default;
158
- $grid-breakpoint-xs: 600px;
159
- $grid-breakpoint-sm: 769px;
160
- $grid-breakpoint-md: 1025px;
161
- $grid-breakpoint-lg: 1281px;
162
- $grid-breakpoint-xl: 1441px;
163
- $grid-breakpoint-xxl: 1921px;
164
- $grid-breakpoints: (
165
- unset: 0,
166
- xs: $grid-breakpoint-xs,
167
- sm: $grid-breakpoint-sm,
168
- md: $grid-breakpoint-md,
169
- lg: $grid-breakpoint-lg,
170
- xl: $grid-breakpoint-xl,
171
- xxl: $grid-breakpoint-xxl
172
- ) !default;
173
-
174
- $navbar-height: 64px;
175
- $navbar-bottom-box-height: 48px;
176
-
177
- $toolbar-width: 60px;
178
-
179
- $control-border-radius: 4px;
180
- $borders: (
181
- 0: $border,
182
- disabled: $border-disabled
183
- ) !default;
184
-
185
- $spacer: 16px !default;
186
- $spacer-0: 0px;
187
- $spacer-1: $spacer * 0.25;
188
- $spacer-2: $spacer * 0.5;
189
- $spacer-3: $spacer;
190
- $spacer-4: $spacer * 1.5;
191
- $spacer-5: $spacer * 2;
192
- $spacer-6: $spacer * 3;
193
- $spacer-xxxs: 4px;
194
- $spacer-xxs: 8px;
195
- $spacer-xs: 12px;
196
- $spacer-s: 16px;
197
- $spacer-m: 24px;
198
- $spacer-l: 32px;
199
- $spacer-xl: 48px;
200
- $spacer-xxl: 64px;
201
-
202
- $spacers: (
203
- 0: $spacer-0,
204
- 1: $spacer-1,
205
- 2: $spacer-2,
206
- 3: $spacer-3,
207
- 4: $spacer-4,
208
- 5: $spacer-5,
209
- 6: $spacer-6,
210
- xxxs: $spacer-xxxs,
211
- xxs: $spacer-xxs,
212
- xs: $spacer-xs,
213
- s: $spacer-s,
214
- m: $spacer-m,
215
- l: $spacer-l,
216
- xl: $spacer-xl,
217
- xxl: $spacer-xxl
218
- ) !default;
219
-
220
- $zindex-dropdown: var(--fwe-z-index-dropdown) !default;
221
- $zindex-sticky: var(--fwe-z-index-sticky) !default;
222
- $zindex-fixed: var(--fwe-z-index-fixed) !default;
223
- $zindex-modal-backdrop: var(--fwe-z-index-modal-backdrop) !default;
224
- $zindex-modal: var(--fwe-z-index-modal) !default;
225
- $zindex-popover: var(--fwe-z-index-popover) !default;
226
- $zindex-tooltip: var(--fwe-z-index-tooltip) !default;
227
-
228
- %triangle-base {
229
- width: 17px;
230
- height: 17px;
231
- position: absolute;
232
- overflow: hidden;
233
- &::after {
234
- content: "";
235
- position: absolute;
236
- width: 12px;
237
- height: 12px;
238
- background: $white;
239
- transform: rotate(45deg);
240
- box-shadow: 0px 1px 4px #33333333;
241
- }
242
- }
243
-
244
- @mixin triangle-bottom {
245
- @extend %triangle-base;
246
- left: 50%;
247
- top: 100%;
248
- transform: translateX(-8px);
249
- &::after {
250
- top: -6px;
251
- left: 3px;
252
- }
253
- }
254
-
255
- @mixin triangle-top {
256
- @extend %triangle-base;
257
- left: 50%;
258
- top: -17px;
259
- transform: translateX(-8px);
260
- &::after {
261
- top: 11px;
262
- left: 3px;
263
- }
264
- }
265
-
266
- @mixin triangle-left {
267
- @extend %triangle-base;
268
- left: -17px;
269
- top: 50%;
270
- transform: translateY(-8px);
271
- &::after {
272
- top: 2px;
273
- left: 11px;
274
- }
275
- }
276
-
277
- @mixin triangle-left-top {
278
- @extend %triangle-base;
279
- left: -17px;
280
- top: 32px;
281
- transform: translateY(-8px);
282
- &::after {
283
- top: 2px;
284
- left: 11px;
285
- }
286
- }
287
-
288
- @mixin triangle-right {
289
- @extend %triangle-base;
290
- left: 100%;
291
- top: 50%;
292
- transform: translateY(-8px);
293
- &::after {
294
- top: 2px;
295
- left: -6px;
296
- }
297
- }
298
-
299
- @mixin triangle-right-top {
300
- @extend %triangle-base;
301
- left: 100%;
302
- top: 32px;
303
- transform: translateY(-8px);
304
- &::after {
305
- top: 2px;
306
- left: -6px;
307
- }
308
- }
309
-
310
- %popover-base {
311
- background-color: $white;
312
- box-shadow: 0px 1px 4px #33333333;
313
- border-radius: $control-border-radius;
314
- }
315
-
316
- .fwe-popover {
317
- @extend %popover-base;
318
- padding: $spacer * 0.5;
319
- font-size: $font-size-md;
320
- line-height: 1rem;
321
- }
322
-
323
- .fwe-popover-container {
324
- position: relative;
325
- display: inline-block;
326
- }
327
-
328
- @mixin popover-menu {
329
- @extend %popover-base;
330
- font-size: $font-size-base;
331
- line-height: 1.5rem;
332
- padding: $spacer;
333
- .fwe-list-group {
334
- .fwe-list-group-item {
335
- border-bottom: none;
336
- min-height: $spacer * 2.25;
337
- padding: 0;
338
- button {
339
- width: 100%;
340
- margin-left: inherit;
341
- padding: 0 ($spacer * 0.5) 0 0;
342
- text-align: left;
343
- height: $spacer * 2;
344
- max-height: $spacer * 2;
345
- display: inline-flex;
346
- &:hover {
347
- color: $black;
348
- }
349
- i {
350
- display: inline-flex;
351
- align-items: center;
352
- justify-content: center;
353
- flex-wrap: nowrap;
354
- height: $spacer * 1.5;
355
- width: $spacer * 2;
356
- &::before {
357
- display: inline-flex;
358
- }
359
- }
360
- span {
361
- display: inline-flex;
362
- height: $spacer * 1.5;
363
- }
364
- [class*=" fwe-icon-"] {
365
- margin-left: inherit;
366
- }
367
- }
368
- &:hover {
369
- color: $black;
370
- background-color: #3333331a;
371
- }
372
- &:active {
373
- background-color: #33333333;
374
- }
375
- }
376
- }
377
- }
378
-
379
- @mixin popover-legend {
380
- display: table;
381
- margin: $spacer;
382
- line-height: $spacer * 1.5;
383
- }
384
-
385
- @mixin popover-legend-content {
386
- display: table-row;
387
- dt {
388
- display: table-cell;
389
- margin: 0;
390
- padding-right: $spacer * 0.5;
391
- }
392
- dd {
393
- display: table-cell;
394
- margin: 0;
395
- }
396
- }
397
-
398
- .fwe-triangle {
399
- &.fwe-triangle-top {
400
- @include triangle-top();
401
- }
402
-
403
- &.fwe-triangle-bottom {
404
- @include triangle-bottom();
405
- }
406
-
407
- &.fwe-triangle-left {
408
- @include triangle-left();
409
- }
410
-
411
- &.fwe-triangle-right {
412
- @include triangle-right();
413
- }
414
- }
415
-
416
- .fwe-popover {
417
- &.fwe-popover-menu {
418
- @include popover-menu();
419
- }
420
-
421
- .fwe-popover-legend {
422
- @include popover-legend();
423
- .fwe-popover-legend-content {
424
- @include popover-legend-content();
425
- }
426
- }
427
- }
428
-
429
-
430
- /* This file is imported into global ~src/styles.scss to overwrite cdk overlay styles */
431
-
432
- /* Overwrite global styles for popovers based on cdk overlay below this line */
433
- .cdk-overlay-pane {
434
- &.fng-popover-top {
435
- .fwe-triangle {
436
- @include triangle-bottom();
437
- }
438
- }
439
-
440
- &.fng-popover-bottom {
441
- .fwe-triangle {
442
- @include triangle-top();
443
- }
444
- }
445
-
446
- &.fng-popover-right {
447
- .fwe-triangle {
448
- @include triangle-left();
449
- }
450
- }
451
-
452
- &.fng-popover-right-top {
453
- .fwe-triangle {
454
- @include triangle-left-top();
455
- }
456
- }
457
-
458
- &.fng-popover-left {
459
- .fwe-triangle {
460
- @include triangle-right();
461
- }
462
- }
463
-
464
- &.fng-popover-left-top {
465
- .fwe-triangle {
466
- @include triangle-right-top();
467
- }
468
- }
469
-
470
- &.fng-popover-menu {
471
- .fwe-popover {
472
- @include popover-menu();
473
- }
474
- }
475
-
476
- &.fng-color-indicator-top {
477
- .fwe-triangle {
478
- @include triangle-bottom();
479
- }
480
- }
481
-
482
- &.fng-color-indicator-bottom {
483
- .fwe-triangle {
484
- @include triangle-top();
485
- }
486
- }
487
-
488
- &.fng-color-indicator-left {
489
- .fwe-triangle {
490
- @include triangle-right();
491
- }
492
- }
493
-
494
- &.fng-color-indicator-right {
495
- .fwe-triangle {
496
- @include triangle-left();
497
- }
498
- }
499
-
500
- &.fng-popover-content {
501
- .fwe-popover-container {
502
- min-height: 100%;
503
- min-width: 100%;
504
- .fwe-popover {
505
- min-height: 100%;
506
- min-width: 100%;
507
- }
508
- }
509
- }
510
- }
511
-
512
- $black: var(--fwe-black) !default;
513
- $white: var(--fwe-white) !default;
514
- $white-dark: var(--fwe-white-dark) !default;
515
- $caerul: var(--fwe-caerul) !default;
516
- $sucaerul: var(--fwe-sucaerul) !default;
517
- $sucanul: var(--fwe-sucanul) !default;
518
-
519
- $gray-100: var(--fwe-gray-100) !default;
520
- $gray-200: var(--fwe-gray-200) !default;
521
- $gray-300: var(--fwe-gray-300) !default;
522
- $gray-400: var(--fwe-gray-400) !default;
523
-
524
- $icon-black: var(--fwe-icon-black) !default;
525
- $icon-white: var(--fwe-icon-white) !default;
526
- $icon-gray: var(--fwe-icon-gray) !default;
527
- $icon-hero: var(--fwe-icon-hero) !default;
528
- $icon-hero-light: var(--fwe-icon-hero-light) !default;
529
-
530
- $green: var(--fwe-green) !default;
531
- $yellow: var(--fwe-yellow) !default;
532
- $orange: var(--fwe-orange) !default;
533
- $red: var(--fwe-red) !default;
534
- $green-dark: var(--fwe-green-dark) !default;
535
- $yellow-dark: var(--fwe-yellow-dark) !default;
536
- $orange-dark: var(--fwe-orange-dark) !default;
537
- $red-dark: var(--fwe-red-dark) !default;
538
-
539
- // control colors
540
- $text: var(--fwe-text) !default;
541
- $text-light: var(--fwe-text-light) !default;
542
- $text-disabled: var(--fwe-text-disabled) !default;
543
-
544
- $hero: var(--fwe-hero) !default;
545
- $hero-dark: var(--fwe-hero-dark) !default;
546
- $hero-darker: var(--fwe-hero-darker) !default;
547
-
548
- $control: var(--fwe-control) !default;
549
- $control-dark: var(--fwe-control-dark) !default;
550
- $control-darker: var(--fwe-control-darker) !default;
551
- $control-disabled: var(--fwe-control-disabled) !default;
552
- $control-box-shadow: 0px 1px 8px rgba(black, 0.3) !default;
553
- $control-scrollbar: var(--fwe-control-scrollbar) !default;
554
-
555
- $control-border: var(--fwe-control-border) !default;
556
- $control-border-dark: var(--fwe-control-border-dark) !default;
557
- $control-border-darker: var(--fwe-control-border-darker) !default;
558
-
559
- $background: var(--fwe-background) !default;
560
- $background-modal: rgba(black, 0.7) !default;
561
-
562
- $border: var(--fwe-border) !default;
563
- $border-disabled: var(--fwe-border-disabled) !default;
564
-
565
- $snackbar-info-bg: var(--fwe-snackbar-info-bg) !default;
566
- $snackbar-warning-bg: var(--fwe-snackbar-warning-bg) !default;
567
- $snackbar-error-bg: var(--fwe-snackbar-error-bg) !default;
568
-
569
- // color map
570
- $colors: () !default;
571
- $colors: map-merge(
572
- (
573
- "black": $black,
574
- "white": $white,
575
- "white-dark": $white-dark,
576
- "caerul": $caerul,
577
- "sucaerul": $sucaerul,
578
- "sucanul": $sucanul,
579
- "gray-100": $gray-100,
580
- "gray-200": $gray-200,
581
- "gray-300": $gray-300,
582
- "gray-400": $gray-400,
583
- "icon-black": $icon-black,
584
- "icon-white": $icon-white,
585
- "icon-gray": $icon-gray,
586
- "icon-hero": $icon-hero,
587
- "icon-hero-light": $icon-hero-light,
588
- "green": $green,
589
- "yellow": $yellow,
590
- "orange": $orange,
591
- "red": $red,
592
- "green-dark": $green-dark,
593
- "yellow-dark": $yellow-dark,
594
- "orange-dark": $orange-dark,
595
- "red-dark": $red-dark,
596
- "text": $text,
597
- "text-light": $text-light,
598
- "text-disabled": $text-disabled,
599
- "hero": $hero,
600
- "hero-dark": $hero-dark,
601
- "hero-darker": $hero-darker,
602
- "control": $control,
603
- "control-dark": $control-dark,
604
- "control-darker": $control-darker,
605
- "control-disabled": $control-disabled,
606
- "control-border": $control,
607
- "control-border-dark": $control-dark,
608
- "control-border-darker": $control-darker,
609
- "control-border-disabled": $control-disabled,
610
- "background": $background,
611
- "background-modal": $background-modal,
612
- "border": $border,
613
- "border-disabled": $border-disabled
614
- ),
615
- $colors
616
- );
617
-
618
- $badge-colors: () !default;
619
- $badge-colors: map-merge(
620
- (
621
- "caerul": $caerul,
622
- "green": $green,
623
- "yellow": $yellow,
624
- "orange": $orange,
625
- "red": $red,
626
- "hero": $hero,
627
- "hero-dark": $hero-dark,
628
- "hero-darker": $hero-darker,
629
- "control": $control,
630
- "control-dark": $control-dark,
631
- "control-darker": $control-darker
632
- ),
633
- $badge-colors
634
- );
635
-
636
- $font-family-sans-serif: "MetaPro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
637
- "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
638
- $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default;
639
- $font-family-icons-16: "festo_icons-16" !default;
640
- $font-family-icons-24: "festo_icons-24" !default;
641
- $font-family-icons-32: "festo_icons-32" !default;
642
-
643
- $font-family-base: $font-family-sans-serif !default;
644
-
645
- $font-size-small: 12px !default;
646
- $font-size-md: 14px !default;
647
- $font-size-base: 16px !default;
648
- $font-size-xl: 24px !default;
649
- $font-size-xxl: 32px !default;
650
-
651
- $font-weight-normal: 400 !default;
652
- $font-weight-bold: 700 !default;
653
-
654
- $font-weight-base: $font-weight-normal !default;
655
- $line-height-base: 1.5 !default;
656
-
657
- $container-padding: 0 8px 0 8px;
658
- $container-paddings: (
659
- xs: 0 16px 0 16px,
660
- md: 0 24px 0 24px,
661
- lg: 0 60px 0 60px,
662
- xxl: 0 86px 0 86px
663
- ) !default;
664
-
665
- $grid-columns: 12 !default;
666
- $grid-gap: 24px !default;
667
- $grid-breakpoint-xs: 600px;
668
- $grid-breakpoint-sm: 769px;
669
- $grid-breakpoint-md: 1025px;
670
- $grid-breakpoint-lg: 1281px;
671
- $grid-breakpoint-xl: 1441px;
672
- $grid-breakpoint-xxl: 1921px;
673
- $grid-breakpoints: (
674
- unset: 0,
675
- xs: $grid-breakpoint-xs,
676
- sm: $grid-breakpoint-sm,
677
- md: $grid-breakpoint-md,
678
- lg: $grid-breakpoint-lg,
679
- xl: $grid-breakpoint-xl,
680
- xxl: $grid-breakpoint-xxl
681
- ) !default;
682
-
683
- $navbar-height: 64px;
684
- $navbar-bottom-box-height: 48px;
685
-
686
- $toolbar-width: 60px;
687
-
688
- $control-border-radius: 4px;
689
- $borders: (
690
- 0: $border,
691
- disabled: $border-disabled
692
- ) !default;
693
-
694
- $spacer: 16px !default;
695
- $spacer-0: 0px;
696
- $spacer-1: $spacer * 0.25;
697
- $spacer-2: $spacer * 0.5;
698
- $spacer-3: $spacer;
699
- $spacer-4: $spacer * 1.5;
700
- $spacer-5: $spacer * 2;
701
- $spacer-6: $spacer * 3;
702
- $spacer-xxxs: 4px;
703
- $spacer-xxs: 8px;
704
- $spacer-xs: 12px;
705
- $spacer-s: 16px;
706
- $spacer-m: 24px;
707
- $spacer-l: 32px;
708
- $spacer-xl: 48px;
709
- $spacer-xxl: 64px;
710
-
711
- $spacers: (
712
- 0: $spacer-0,
713
- 1: $spacer-1,
714
- 2: $spacer-2,
715
- 3: $spacer-3,
716
- 4: $spacer-4,
717
- 5: $spacer-5,
718
- 6: $spacer-6,
719
- xxxs: $spacer-xxxs,
720
- xxs: $spacer-xxs,
721
- xs: $spacer-xs,
722
- s: $spacer-s,
723
- m: $spacer-m,
724
- l: $spacer-l,
725
- xl: $spacer-xl,
726
- xxl: $spacer-xxl
727
- ) !default;
728
-
729
- $zindex-dropdown: var(--fwe-z-index-dropdown) !default;
730
- $zindex-sticky: var(--fwe-z-index-sticky) !default;
731
- $zindex-fixed: var(--fwe-z-index-fixed) !default;
732
- $zindex-modal-backdrop: var(--fwe-z-index-modal-backdrop) !default;
733
- $zindex-modal: var(--fwe-z-index-modal) !default;
734
- $zindex-popover: var(--fwe-z-index-popover) !default;
735
- $zindex-tooltip: var(--fwe-z-index-tooltip) !default;
736
-
737
- @mixin icon-base {
738
- font-size: $font-size-base;
739
- display: inline-block;
740
- &:before {
741
- line-height: 1;
742
- display: inline-block;
743
- speak: none;
744
- font-style: normal;
745
- font-weight: normal;
746
- font-variant: normal;
747
- text-transform: none;
748
- -webkit-font-smoothing: antialiased;
749
- -moz-osx-font-smoothing: grayscale;
750
- font-family: "#{$font-family-icons-16}";
751
- }
752
- }
753
-
754
- .fwe-icon {
755
- @include icon-base;
756
- }
757
-
758
- .fwe-icon-lg {
759
- font-size: $font-size-xl;
760
- &:before {
761
- font-family: "#{$font-family-icons-24}" !important;
762
- }
763
- }
764
-
765
- .fwe-icon-2x {
766
- font-size: $font-size-xxl;
767
- &:before {
768
- font-family: "#{$font-family-icons-32}" !important;
769
- }
770
- }
771
-
772
- .fwe-icon-3x {
773
- font-size: 48px;
774
- &:before {
775
- font-family: "#{$font-family-icons-24}" !important;
776
- }
777
- }
778
-
779
- .fwe-icon-4x {
780
- font-size: 64px;
781
- &:before {
782
- font-family: "#{$font-family-icons-32}" !important;
783
- }
784
- }
785
-
786
- .fwe-icon-rotate-90 {
787
- &:before {
788
- transform-origin: center center;
789
- transform: rotate(90deg);
790
- }
791
- }
792
-
793
- .fwe-icon-rotate-180 {
794
- &:before {
795
- transform-origin: center center;
796
- transform: rotate(180deg);
797
- }
798
- }
799
-
800
- .fwe-icon-rotate-270 {
801
- &:before {
802
- transform-origin: center center;
803
- transform: rotate(270deg);
804
- }
805
- }
806
-
807
- // icon codes are copied from style.css generated by icomoon
808
- .fwe-icon-arrows-collapse:before {
809
- content: "\e900";
810
- }
811
- .fwe-icon-arrows-down:before {
812
- content: "\e901";
813
- }
814
- .fwe-icon-arrows-exchanged-energy:before {
815
- content: "\e902";
816
- }
817
- .fwe-icon-arrows-expand:before {
818
- content: "\e903";
819
- }
820
- .fwe-icon-arrows-left-2:before {
821
- content: "\e904";
822
- }
823
- .fwe-icon-arrows-left:before {
824
- content: "\e905";
825
- }
826
- .fwe-icon-arrows-refresh:before {
827
- content: "\e906";
828
- }
829
- .fwe-icon-arrows-reinitialize:before {
830
- content: "\e907";
831
- }
832
- .fwe-icon-arrows-reset:before {
833
- content: "\e908";
834
- }
835
- .fwe-icon-arrows-restart:before {
836
- content: "\e909";
837
- }
838
- .fwe-icon-arrows-right-2:before {
839
- content: "\e90a";
840
- }
841
- .fwe-icon-arrows-right:before {
842
- content: "\e90b";
843
- }
844
- .fwe-icon-arrows-scale-down:before {
845
- content: "\e90c";
846
- }
847
- .fwe-icon-arrows-scale-up:before {
848
- content: "\e90d";
849
- }
850
- .fwe-icon-arrows-up:before {
851
- content: "\e90e";
852
- }
853
- .fwe-icon-arrows-update:before {
854
- content: "\e90f";
855
- }
856
- .fwe-icon-cable-adaptor:before {
857
- content: "\e910";
858
- }
859
- .fwe-icon-cable-connector:before {
860
- content: "\e911";
861
- }
862
- .fwe-icon-cable-monitor-adaptor:before {
863
- content: "\e912";
864
- }
865
- .fwe-icon-cable-plug:before {
866
- content: "\e913";
867
- }
868
- .fwe-icon-cable-usb-adaptor:before {
869
- content: "\e914";
870
- }
871
- .fwe-icon-cable-usb-plug:before {
872
- content: "\e915";
873
- }
874
- .fwe-icon-cable-wiring-2:before {
875
- content: "\e916";
876
- }
877
- .fwe-icon-cable-wiring:before {
878
- content: "\e917";
879
- }
880
- .fwe-icon-communication-communication:before {
881
- content: "\e918";
882
- }
883
- .fwe-icon-communication-emergency-hotline:before {
884
- content: "\e919";
885
- }
886
- .fwe-icon-communication-audio-on:before {
887
- content: "\e91a";
888
- }
889
- .fwe-icon-communication-infoportal:before {
890
- content: "\e91b";
891
- }
892
- .fwe-icon-communication-message-number:before {
893
- content: "\e91c";
894
- }
895
- .fwe-icon-communication-message:before {
896
- content: "\e91d";
897
- }
898
- .fwe-icon-communication-notification:before {
899
- content: "\e91e";
900
- }
901
- .fwe-icon-communication-tooltip:before {
902
- content: "\e91f";
903
- }
904
- .fwe-icon-documents-add-bookmark:before {
905
- content: "\e920";
906
- }
907
- .fwe-icon-documents-bill-of-material:before {
908
- content: "\e921";
909
- }
910
- .fwe-icon-documents-bookmark:before {
911
- content: "\e922";
912
- }
913
- .fwe-icon-documents-CAD:before {
914
- content: "\e923";
915
- }
916
- .fwe-icon-documents-certificate:before {
917
- content: "\e924";
918
- }
919
- .fwe-icon-documents-datasheet:before {
920
- content: "\e925";
921
- }
922
- .fwe-icon-documents-delete-bookmark:before {
923
- content: "\e926";
924
- }
925
- .fwe-icon-documents-doc-bmp:before {
926
- content: "\e927";
927
- }
928
- .fwe-icon-documents-doc-csv:before {
929
- content: "\e928";
930
- }
931
- .fwe-icon-documents-doc-doc:before {
932
- content: "\e929";
933
- }
934
- .fwe-icon-documents-doc-docx:before {
935
- content: "\e92a";
936
- }
937
- .fwe-icon-documents-doc-eps:before {
938
- content: "\e92b";
939
- }
940
- .fwe-icon-documents-doc-fa:before {
941
- content: "\e92c";
942
- }
943
- .fwe-icon-documents-doc-gif:before {
944
- content: "\e92d";
945
- }
946
- .fwe-icon-documents-doc-jpg:before {
947
- content: "\e92e";
948
- }
949
- .fwe-icon-documents-doc-odb:before {
950
- content: "\e92f";
951
- }
952
- .fwe-icon-documents-doc-odc:before {
953
- content: "\e930";
954
- }
955
- .fwe-icon-documents-doc-odf:before {
956
- content: "\e931";
957
- }
958
- .fwe-icon-documents-doc-odg:before {
959
- content: "\e932";
960
- }
961
- .fwe-icon-documents-doc-odm:before {
962
- content: "\e933";
963
- }
964
- .fwe-icon-documents-doc-odp:before {
965
- content: "\e934";
966
- }
967
- .fwe-icon-documents-doc-ods:before {
968
- content: "\e935";
969
- }
970
- .fwe-icon-documents-doc-odt:before {
971
- content: "\e936";
972
- }
973
- .fwe-icon-documents-doc-otg:before {
974
- content: "\e937";
975
- }
976
- .fwe-icon-documents-doc-otp:before {
977
- content: "\e938";
978
- }
979
- .fwe-icon-documents-doc-ots:before {
980
- content: "\e939";
981
- }
982
- .fwe-icon-documents-doc-ott:before {
983
- content: "\e93a";
984
- }
985
- .fwe-icon-documents-doc-pa:before {
986
- content: "\e93b";
987
- }
988
- .fwe-icon-documents-doc-pdf:before {
989
- content: "\e93c";
990
- }
991
- .fwe-icon-documents-doc-png:before {
992
- content: "\e93d";
993
- }
994
- .fwe-icon-documents-doc-ppt:before {
995
- content: "\e93e";
996
- }
997
- .fwe-icon-documents-doc-pptx:before {
998
- content: "\e93f";
999
- }
1000
- .fwe-icon-documents-doc-psd:before {
1001
- content: "\e940";
1002
- }
1003
- .fwe-icon-documents-doc-stack:before {
1004
- content: "\e941";
1005
- }
1006
- .fwe-icon-documents-doc-svg:before {
1007
- content: "\e942";
1008
- }
1009
- .fwe-icon-documents-doc-swf:before {
1010
- content: "\e943";
1011
- }
1012
- .fwe-icon-documents-doc-tif:before {
1013
- content: "\e944";
1014
- }
1015
- .fwe-icon-documents-doc-txt:before {
1016
- content: "\e945";
1017
- }
1018
- .fwe-icon-documents-doc-wmf:before {
1019
- content: "\e946";
1020
- }
1021
- .fwe-icon-documents-doc-xls:before {
1022
- content: "\e947";
1023
- }
1024
- .fwe-icon-documents-doc-xlsx:before {
1025
- content: "\e948";
1026
- }
1027
- .fwe-icon-documents-doc-xml:before {
1028
- content: "\e949";
1029
- }
1030
- .fwe-icon-documents-document:before {
1031
- content: "\e94a";
1032
- }
1033
- .fwe-icon-documents-documentation:before {
1034
- content: "\e94b";
1035
- }
1036
- .fwe-icon-documents-manual:before {
1037
- content: "\e94c";
1038
- }
1039
- .fwe-icon-documents-movie:before {
1040
- content: "\e94d";
1041
- }
1042
- .fwe-icon-documents-no-data:before {
1043
- content: "\e94e";
1044
- }
1045
- .fwe-icon-documents-note:before {
1046
- content: "\e94f";
1047
- }
1048
- .fwe-icon-documents-order:before {
1049
- content: "\e950";
1050
- }
1051
- .fwe-icon-documents-product-generic-template:before {
1052
- content: "\e951";
1053
- }
1054
- .fwe-icon-documents-restore-default:before {
1055
- content: "\e952";
1056
- }
1057
- .fwe-icon-documents-task-done:before {
1058
- content: "\e953";
1059
- }
1060
- .fwe-icon-documents-terms-of-use:before {
1061
- content: "\e954";
1062
- }
1063
- .fwe-icon-documents-worksheet:before {
1064
- content: "\e955";
1065
- }
1066
- .fwe-icon-ecommerce-add-to-basket:before {
1067
- content: "\e956";
1068
- }
1069
- .fwe-icon-ecommerce-basket:before {
1070
- content: "\e957";
1071
- }
1072
- .fwe-icon-ecommerce-client:before {
1073
- content: "\e958";
1074
- }
1075
- .fwe-icon-ecommerce-core-range-product-outline:before {
1076
- content: "\e959";
1077
- }
1078
- .fwe-icon-ecommerce-core-range-product:before {
1079
- content: "\e95a";
1080
- }
1081
- .fwe-icon-ecommerce-costs:before {
1082
- content: "\e95b";
1083
- }
1084
- .fwe-icon-ecommerce-delivery-time:before {
1085
- content: "\e95c";
1086
- }
1087
- .fwe-icon-ecommerce-delivery:before {
1088
- content: "\e95d";
1089
- }
1090
- .fwe-icon-ecommerce-express-delivery:before {
1091
- content: "\e95e";
1092
- }
1093
- .fwe-icon-ecommerce-favorit:before {
1094
- content: "\e95f";
1095
- }
1096
- .fwe-icon-ecommerce-local-currency:before {
1097
- content: "\e960";
1098
- }
1099
- .fwe-icon-ecommerce-offer:before {
1100
- content: "\e961";
1101
- }
1102
- .fwe-icon-ecommerce-order-tracking:before {
1103
- content: "\e962";
1104
- }
1105
- .fwe-icon-ecommerce-qr-code-scan:before {
1106
- content: "\e963";
1107
- }
1108
- .fwe-icon-ecommerce-secure-shopping:before {
1109
- content: "\e964";
1110
- }
1111
- .fwe-icon-ecommerce-shopping:before {
1112
- content: "\e965";
1113
- }
1114
- .fwe-icon-energy-eco:before {
1115
- content: "\e966";
1116
- }
1117
- .fwe-icon-energy-savings:before {
1118
- content: "\e967";
1119
- }
1120
- .fwe-icon-fa-axis:before {
1121
- content: "\e968";
1122
- }
1123
- .fwe-icon-fa-compressed-air:before {
1124
- content: "\e969";
1125
- }
1126
- .fwe-icon-fa-connection-accessories-2:before {
1127
- content: "\e96a";
1128
- }
1129
- .fwe-icon-fa-connection-accessories:before {
1130
- content: "\e96b";
1131
- }
1132
- .fwe-icon-fa-control:before {
1133
- content: "\e96c";
1134
- }
1135
- .fwe-icon-fa-controller:before {
1136
- content: "\e96d";
1137
- }
1138
- .fwe-icon-fa-cylinder-mountings:before {
1139
- content: "\e96e";
1140
- }
1141
- .fwe-icon-fa-fa-positioner:before {
1142
- content: "\e96f";
1143
- }
1144
- .fwe-icon-fa-factory-automation:before {
1145
- content: "\e970";
1146
- }
1147
- .fwe-icon-fa-fitting:before {
1148
- content: "\e971";
1149
- }
1150
- .fwe-icon-fa-function-fitting:before {
1151
- content: "\e972";
1152
- }
1153
- .fwe-icon-fa-gripper:before {
1154
- content: "\e973";
1155
- }
1156
- .fwe-icon-fa-handlingsystems:before {
1157
- content: "\e974";
1158
- }
1159
- .fwe-icon-fa-linear-drive:before {
1160
- content: "\e975";
1161
- }
1162
- .fwe-icon-fa-montage-accessories:before {
1163
- content: "\e976";
1164
- }
1165
- .fwe-icon-fa-motor:before {
1166
- content: "\e977";
1167
- }
1168
- .fwe-icon-fa-mount-cylinder:before {
1169
- content: "\e978";
1170
- }
1171
- .fwe-icon-fa-mounting-kit:before {
1172
- content: "\e979";
1173
- }
1174
- .fwe-icon-fa-pilot-valves:before {
1175
- content: "\e97a";
1176
- }
1177
- .fwe-icon-fa-piston-rod-attachements:before {
1178
- content: "\e97b";
1179
- }
1180
- .fwe-icon-fa-pneumatic-actuator:before {
1181
- content: "\e97c";
1182
- }
1183
- .fwe-icon-fa-pneumatic-equipment:before {
1184
- content: "\e97d";
1185
- }
1186
- .fwe-icon-fa-process-automation:before {
1187
- content: "\e97e";
1188
- }
1189
- .fwe-icon-fa-quarter-turn-actuator:before {
1190
- content: "\e97f";
1191
- }
1192
- .fwe-icon-fa-ready-to-install-solutions:before {
1193
- content: "\e980";
1194
- }
1195
- .fwe-icon-fa-reboot-device:before {
1196
- content: "\e981";
1197
- }
1198
- .fwe-icon-fa-referencing:before {
1199
- content: "\e982";
1200
- }
1201
- .fwe-icon-fa-save-device:before {
1202
- content: "\e983";
1203
- }
1204
- .fwe-icon-fa-sensor-box:before {
1205
- content: "\e984";
1206
- }
1207
- .fwe-icon-fa-sensors:before {
1208
- content: "\e985";
1209
- }
1210
- .fwe-icon-fa-servo-pneumatic-2:before {
1211
- content: "\e986";
1212
- }
1213
- .fwe-icon-fa-servo-pneumatic:before {
1214
- content: "\e987";
1215
- }
1216
- .fwe-icon-fa-solenoid-actuated-media:before {
1217
- content: "\e988";
1218
- }
1219
- .fwe-icon-fa-solenoid-valves:before {
1220
- content: "\e989";
1221
- }
1222
- .fwe-icon-fa-transmission:before {
1223
- content: "\e98a";
1224
- }
1225
- .fwe-icon-fa-tubing:before {
1226
- content: "\e98b";
1227
- }
1228
- .fwe-icon-fa-vacuum-technology:before {
1229
- content: "\e98c";
1230
- }
1231
- .fwe-icon-fa-valve-manifolds:before {
1232
- content: "\e98d";
1233
- }
1234
- .fwe-icon-fa-write-all:before {
1235
- content: "\e98e";
1236
- }
1237
- .fwe-icon-file-delete:before {
1238
- content: "\e98f";
1239
- }
1240
- .fwe-icon-file-download:before {
1241
- content: "\e990";
1242
- }
1243
- .fwe-icon-file-edit:before {
1244
- content: "\e991";
1245
- }
1246
- .fwe-icon-file-export:before {
1247
- content: "\e992";
1248
- }
1249
- .fwe-icon-file-folder:before {
1250
- content: "\e993";
1251
- }
1252
- .fwe-icon-file-import:before {
1253
- content: "\e994";
1254
- }
1255
- .fwe-icon-file-link:before {
1256
- content: "\e995";
1257
- }
1258
- .fwe-icon-file-order-config:before {
1259
- content: "\e996";
1260
- }
1261
- .fwe-icon-file-paperclip:before {
1262
- content: "\e997";
1263
- }
1264
- .fwe-icon-file-printer:before {
1265
- content: "\e998";
1266
- }
1267
- .fwe-icon-file-project-structure:before {
1268
- content: "\e999";
1269
- }
1270
- .fwe-icon-file-ready-for-occupancy:before {
1271
- content: "\e99a";
1272
- }
1273
- .fwe-icon-file-save:before {
1274
- content: "\e99b";
1275
- }
1276
- .fwe-icon-file-search:before {
1277
- content: "\e99c";
1278
- }
1279
- .fwe-icon-file-lock:before {
1280
- content: "\e99d";
1281
- }
1282
- .fwe-icon-file-share:before {
1283
- content: "\e99e";
1284
- }
1285
- .fwe-icon-file-upload:before {
1286
- content: "\e99f";
1287
- }
1288
- .fwe-icon-file-visible:before {
1289
- content: "\e9a0";
1290
- }
1291
- .fwe-icon-image-attached-images:before {
1292
- content: "\e9a1";
1293
- }
1294
- .fwe-icon-image-camera:before {
1295
- content: "\e9a2";
1296
- }
1297
- .fwe-icon-image-focus:before {
1298
- content: "\e9a3";
1299
- }
1300
- .fwe-icon-image-image:before {
1301
- content: "\e9a4";
1302
- }
1303
- .fwe-icon-it-different-devices:before {
1304
- content: "\e9a5";
1305
- }
1306
- .fwe-icon-it-fax:before {
1307
- content: "\e9a6";
1308
- }
1309
- .fwe-icon-it-embedded-software:before {
1310
- content: "\e9a7";
1311
- }
1312
- .fwe-icon-it-harddrive:before {
1313
- content: "\e9a8";
1314
- }
1315
- .fwe-icon-it-keyboard:before {
1316
- content: "\e9a9";
1317
- }
1318
- .fwe-icon-it-laptop:before {
1319
- content: "\e9aa";
1320
- }
1321
- .fwe-icon-it-memorystick:before {
1322
- content: "\e9ab";
1323
- }
1324
- .fwe-icon-it-monitor:before {
1325
- content: "\e9ac";
1326
- }
1327
- .fwe-icon-it-mouse:before {
1328
- content: "\e9ad";
1329
- }
1330
- .fwe-icon-it-projector:before {
1331
- content: "\e9ae";
1332
- }
1333
- .fwe-icon-it-repository:before {
1334
- content: "\e9af";
1335
- }
1336
- .fwe-icon-it-save-permanently:before {
1337
- content: "\e9b0";
1338
- }
1339
- .fwe-icon-it-smartphone:before {
1340
- content: "\e9b1";
1341
- }
1342
- .fwe-icon-it-smartwatch:before {
1343
- content: "\e9b2";
1344
- }
1345
- .fwe-icon-it-software:before {
1346
- content: "\e9b3";
1347
- }
1348
- .fwe-icon-it-tablet:before {
1349
- content: "\e9b4";
1350
- }
1351
- .fwe-icon-it-update-inclusive:before {
1352
- content: "\e9b5";
1353
- }
1354
- .fwe-icon-it-usb:before {
1355
- content: "\e9b6";
1356
- }
1357
- .fwe-icon-it-workplace:before {
1358
- content: "\e9b7";
1359
- }
1360
- .fwe-icon-it-workstation:before {
1361
- content: "\e9b8";
1362
- }
1363
- .fwe-icon-language-country:before {
1364
- content: "\e9b9";
1365
- }
1366
- .fwe-icon-language-exchange-local-currency:before {
1367
- content: "\e9ba";
1368
- }
1369
- .fwe-icon-language-language:before {
1370
- content: "\e9bb";
1371
- }
1372
- .fwe-icon-language-maps:before {
1373
- content: "\e9bc";
1374
- }
1375
- .fwe-icon-list-acknowledge-all:before {
1376
- content: "\e9bd";
1377
- }
1378
- .fwe-icon-list-add-line:before {
1379
- content: "\e9be";
1380
- }
1381
- .fwe-icon-list-filter:before {
1382
- content: "\e9bf";
1383
- }
1384
- .fwe-icon-list-grid-view:before {
1385
- content: "\e9c0";
1386
- }
1387
- .fwe-icon-list-list-view:before {
1388
- content: "\e9c1";
1389
- }
1390
- .fwe-icon-list-variable-list:before {
1391
- content: "\e9c2";
1392
- }
1393
- .fwe-icon-measure-actual-position:before {
1394
- content: "\e9c3";
1395
- }
1396
- .fwe-icon-measure-axis-speed:before {
1397
- content: "\e9c4";
1398
- }
1399
- .fwe-icon-measure-consumption:before {
1400
- content: "\e9c5";
1401
- }
1402
- .fwe-icon-measure-current-position:before {
1403
- content: "\e9c6";
1404
- }
1405
- .fwe-icon-measure-flow:before {
1406
- content: "\e9c7";
1407
- }
1408
- .fwe-icon-measure-maintenance:before {
1409
- content: "\e9c8";
1410
- }
1411
- .fwe-icon-measure-pressure:before {
1412
- content: "\e9c9";
1413
- }
1414
- .fwe-icon-measure-revolutions:before {
1415
- content: "\e9ca";
1416
- }
1417
- .fwe-icon-measure-target-pos:before {
1418
- content: "\e9cb";
1419
- }
1420
- .fwe-icon-measure-temperature:before {
1421
- content: "\e9cc";
1422
- }
1423
- .fwe-icon-media-pause:before {
1424
- content: "\e9cd";
1425
- }
1426
- .fwe-icon-media-play:before {
1427
- content: "\e9ce";
1428
- }
1429
- .fwe-icon-media-save-screenshot:before {
1430
- content: "\e9cf";
1431
- }
1432
- .fwe-icon-media-stop:before {
1433
- content: "\e9d0";
1434
- }
1435
- .fwe-icon-menu-add-2:before {
1436
- content: "\e9d1";
1437
- }
1438
- .fwe-icon-menu-add:before {
1439
- content: "\e9d2";
1440
- }
1441
- .fwe-icon-menu-check:before {
1442
- content: "\e9d3";
1443
- }
1444
- .fwe-icon-menu-close:before {
1445
- content: "\e9d4";
1446
- }
1447
- .fwe-icon-menu-details:before {
1448
- content: "\e9d5";
1449
- }
1450
- .fwe-icon-menu-home:before {
1451
- content: "\e9d6";
1452
- }
1453
- .fwe-icon-menu-logout:before {
1454
- content: "\e9d7";
1455
- }
1456
- .fwe-icon-menu-menu:before {
1457
- content: "\e9d8";
1458
- }
1459
- .fwe-icon-menu-minus:before {
1460
- content: "\e9d9";
1461
- }
1462
- .fwe-icon-menu-more:before {
1463
- content: "\e9da";
1464
- }
1465
- .fwe-icon-menu-plus:before {
1466
- content: "\e9db";
1467
- }
1468
- .fwe-icon-menu-repair:before {
1469
- content: "\e9dc";
1470
- }
1471
- .fwe-icon-menu-settings:before {
1472
- content: "\e9dd";
1473
- }
1474
- .fwe-icon-network-bluetooth:before {
1475
- content: "\e9de";
1476
- }
1477
- .fwe-icon-network-cloud-network:before {
1478
- content: "\e9df";
1479
- }
1480
- .fwe-icon-network-cloud:before {
1481
- content: "\e9e0";
1482
- }
1483
- .fwe-icon-network-connected:before {
1484
- content: "\e9e1";
1485
- }
1486
- .fwe-icon-network-connecting:before {
1487
- content: "\e9e2";
1488
- }
1489
- .fwe-icon-network-digital-available:before {
1490
- content: "\e9e3";
1491
- }
1492
- .fwe-icon-network-disconnected:before {
1493
- content: "\e9e4";
1494
- }
1495
- .fwe-icon-network-download-cloud:before {
1496
- content: "\e9e5";
1497
- }
1498
- .fwe-icon-network-electric-accessories:before {
1499
- content: "\e9e6";
1500
- }
1501
- .fwe-icon-network-feldbus:before {
1502
- content: "\e9e7";
1503
- }
1504
- .fwe-icon-network-function-specific-system:before {
1505
- content: "\e9e8";
1506
- }
1507
- .fwe-icon-network-io-i:before {
1508
- content: "\e9e9";
1509
- }
1510
- .fwe-icon-network-io-o:before {
1511
- content: "\e9ea";
1512
- }
1513
- .fwe-icon-network-network:before {
1514
- content: "\e9eb";
1515
- }
1516
- .fwe-icon-network-remote-io:before {
1517
- content: "\e9ec";
1518
- }
1519
- .fwe-icon-network-show-modules:before {
1520
- content: "\e9ed";
1521
- }
1522
- .fwe-icon-network-upload-cloud:before {
1523
- content: "\e9ee";
1524
- }
1525
- .fwe-icon-operate-button-press:before {
1526
- content: "\e9ef";
1527
- }
1528
- .fwe-icon-operate-commissioning:before {
1529
- content: "\e9f0";
1530
- }
1531
- .fwe-icon-operate-commit-value:before {
1532
- content: "\e9f1";
1533
- }
1534
- .fwe-icon-operate-drag-and-drop:before {
1535
- content: "\e9f2";
1536
- }
1537
- .fwe-icon-operate-engineering-information:before {
1538
- content: "\e9f3";
1539
- }
1540
- .fwe-icon-operate-hand-use:before {
1541
- content: "\e9f4";
1542
- }
1543
- .fwe-icon-operate-like:before {
1544
- content: "\e9f5";
1545
- }
1546
- .fwe-icon-operate-simple-handling:before {
1547
- content: "\e9f6";
1548
- }
1549
- .fwe-icon-operate-skip-maintenance:before {
1550
- content: "\e9f7";
1551
- }
1552
- .fwe-icon-operate-tools:before {
1553
- content: "\e9f8";
1554
- }
1555
- .fwe-icon-pa-angle-seat-valves:before {
1556
- content: "\e9f9";
1557
- }
1558
- .fwe-icon-pa-positioner:before {
1559
- content: "\e9fa";
1560
- }
1561
- .fwe-icon-pa-process-and-media-valves:before {
1562
- content: "\e9fb";
1563
- }
1564
- .fwe-icon-pa-valve:before {
1565
- content: "\e9fc";
1566
- }
1567
- .fwe-icon-people-add-user:before {
1568
- content: "\e9fd";
1569
- }
1570
- .fwe-icon-people-admin-settings:before {
1571
- content: "\e9fe";
1572
- }
1573
- .fwe-icon-people-qualification:before {
1574
- content: "\e9ff";
1575
- }
1576
- .fwe-icon-people-user-administration:before {
1577
- content: "\ea00";
1578
- }
1579
- .fwe-icon-people-user:before {
1580
- content: "\ea01";
1581
- }
1582
- .fwe-icon-program-lin-axispos:before {
1583
- content: "\ea02";
1584
- }
1585
- .fwe-icon-program-module:before {
1586
- content: "\ea03";
1587
- }
1588
- .fwe-icon-program-ptp-axispos:before {
1589
- content: "\ea04";
1590
- }
1591
- .fwe-icon-program-ptp-cartpos:before {
1592
- content: "\ea05";
1593
- }
1594
- .fwe-icon-status-check-status:before {
1595
- content: "\ea06";
1596
- }
1597
- .fwe-icon-status-deny:before {
1598
- content: "\ea07";
1599
- }
1600
- .fwe-icon-status-explosion-protection:before {
1601
- content: "\ea08";
1602
- }
1603
- .fwe-icon-status-failure:before {
1604
- content: "\ea09";
1605
- }
1606
- .fwe-icon-status-help:before {
1607
- content: "\ea0a";
1608
- }
1609
- .fwe-icon-status-info:before {
1610
- content: "\ea0b";
1611
- }
1612
- .fwe-icon-status-warning:before {
1613
- content: "\ea0c";
1614
- }
1615
- .fwe-icon-time-calendar:before {
1616
- content: "\ea0d";
1617
- }
1618
- .fwe-icon-time-moving-time-filled:before {
1619
- content: "\ea0e";
1620
- }
1621
- .fwe-icon-time-moving-time:before {
1622
- content: "\ea0f";
1623
- }
1624
- .fwe-icon-time-recently-used:before {
1625
- content: "\ea10";
1626
- }
1627
- .fwe-icon-time-time:before {
1628
- content: "\ea11";
1629
- }
1630
- .fwe-icon-trace-coordinate:before {
1631
- content: "\ea12";
1632
- }
1633
- .fwe-icon-trace-economically:before {
1634
- content: "\ea13";
1635
- }
1636
- .fwe-icon-trace-lin-cartpos:before {
1637
- content: "\ea14";
1638
- }
1639
- .fwe-icon-trace-progress:before {
1640
- content: "\ea15";
1641
- }
1642
- .fwe-icon-trace-read-trace:before {
1643
- content: "\ea16";
1644
- }
1645
- .fwe-icon-trace-start-trace:before {
1646
- content: "\ea17";
1647
- }
1648
- .fwe-icon-action:before {
1649
- content: "\ea18";
1650
- }
1651
- .fwe-icon-adaptive-learning-path:before {
1652
- content: "\ea19";
1653
- }
1654
- .fwe-icon-audio-off:before {
1655
- content: "\ea1a";
1656
- }
1657
- .fwe-icon-chameleon:before {
1658
- content: "\ea1b";
1659
- }
1660
- .fwe-icon-close-small:before {
1661
- content: "\ea1c";
1662
- }
1663
- .fwe-icon-comment-rate:before {
1664
- content: "\ea1d";
1665
- }
1666
- .fwe-icon-competency-management:before {
1667
- content: "\ea1e";
1668
- }
1669
- .fwe-icon-competency:before {
1670
- content: "\ea1f";
1671
- }
1672
- .fwe-icon-copyright:before {
1673
- content: "\ea20";
1674
- }
1675
- .fwe-icon-course:before {
1676
- content: "\ea21";
1677
- }
1678
- .fwe-icon-elephant:before {
1679
- content: "\ea22";
1680
- }
1681
- .fwe-icon-export-pdf:before {
1682
- content: "\ea23";
1683
- }
1684
- .fwe-icon-fish:before {
1685
- content: "\ea24";
1686
- }
1687
- .fwe-icon-flower:before {
1688
- content: "\ea25";
1689
- }
1690
- .fwe-icon-formula:before {
1691
- content: "\ea26";
1692
- }
1693
- .fwe-icon-glossary:before {
1694
- content: "\ea27";
1695
- }
1696
- .fwe-icon-group-learner:before {
1697
- content: "\ea28";
1698
- }
1699
- .fwe-icon-learner:before {
1700
- content: "\ea29";
1701
- }
1702
- .fwe-icon-learning-analytics:before {
1703
- content: "\ea2a";
1704
- }
1705
- .fwe-icon-learning-library:before {
1706
- content: "\ea2b";
1707
- }
1708
- .fwe-icon-learning-path:before {
1709
- content: "\ea2c";
1710
- }
1711
- .fwe-icon-learning-unit:before {
1712
- content: "\ea2d";
1713
- }
1714
- .fwe-icon-nugget:before {
1715
- content: "\ea2e";
1716
- }
1717
- .fwe-icon-puzzle:before {
1718
- content: "\ea2f";
1719
- }
1720
- .fwe-icon-sort-by:before {
1721
- content: "\ea30";
1722
- }
1723
- .fwe-icon-sound-off:before {
1724
- content: "\ea31";
1725
- }
1726
- .fwe-icon-sound-on:before {
1727
- content: "\ea32";
1728
- }
1729
- .fwe-icon-speaker-text-off:before {
1730
- content: "\ea33";
1731
- }
1732
- .fwe-icon-speaker-text-on:before {
1733
- content: "\ea34";
1734
- }
1735
- .fwe-icon-swipe:before {
1736
- content: "\ea35";
1737
- }
1738
- .fwe-icon-tag-draft:before {
1739
- content: "\ea36";
1740
- }
1741
- .fwe-icon-tag-new:before {
1742
- content: "\ea37";
1743
- }
1744
- .fwe-icon-tec2screen:before {
1745
- content: "\ea38";
1746
- }
1747
- .fwe-icon-time-outline:before {
1748
- content: "\ea39";
1749
- }
1750
- .fwe-icon-unite:before {
1751
- content: "\ea3a";
1752
- }
1753
- .fwe-icon-accordion:before {
1754
- content: "\ea3b";
1755
- }
1756
- .fwe-icon-assignment:before {
1757
- content: "\ea3c";
1758
- }
1759
- .fwe-icon-enumeration:before {
1760
- content: "\ea3d";
1761
- }
1762
- .fwe-icon-headline:before {
1763
- content: "\ea3e";
1764
- }
1765
- .fwe-icon-installation-guide:before {
1766
- content: "\ea3f";
1767
- }
1768
- .fwe-icon-my-organisation:before {
1769
- content: "\ea40";
1770
- }
1771
- .fwe-icon-subline:before {
1772
- content: "\ea41";
1773
- }
1774
- .fwe-icon-table:before {
1775
- content: "\ea42";
1776
- }
1777
- .fwe-icon-user-license:before {
1778
- content: "\ea43";
1779
- }
1780
- .fwe-icon-alias:before {
1781
- content: "\ea44";
1782
- }
1783
- .fwe-icon-automatic-mode:before {
1784
- content: "\ea45";
1785
- }
1786
- .fwe-icon-cartesian:before {
1787
- content: "\ea46";
1788
- }
1789
- .fwe-icon-chains-of-components-alias:before {
1790
- content: "\ea47";
1791
- }
1792
- .fwe-icon-circuit:before {
1793
- content: "\ea48";
1794
- }
1795
- .fwe-icon-code:before {
1796
- content: "\ea49";
1797
- }
1798
- .fwe-icon-component:before {
1799
- content: "\ea4a";
1800
- }
1801
- .fwe-icon-condition:before {
1802
- content: "\ea4b";
1803
- }
1804
- .fwe-icon-dashboard:before {
1805
- content: "\ea4c";
1806
- }
1807
- .fwe-icon-feldbus-sps:before {
1808
- content: "\ea4d";
1809
- }
1810
- .fwe-icon-joints:before {
1811
- content: "\ea4e";
1812
- }
1813
- .fwe-icon-library:before {
1814
- content: "\ea4f";
1815
- }
1816
- .fwe-icon-location:before {
1817
- content: "\ea50";
1818
- }
1819
- .fwe-icon-logout:before {
1820
- content: "\ea51";
1821
- }
1822
- .fwe-icon-loop:before {
1823
- content: "\ea52";
1824
- }
1825
- .fwe-icon-machine:before {
1826
- content: "\ea53";
1827
- }
1828
- .fwe-icon-manual-mode:before {
1829
- content: "\ea54";
1830
- }
1831
- .fwe-icon-move:before {
1832
- content: "\ea55";
1833
- }
1834
- .fwe-icon-norm-compliant-event:before {
1835
- content: "\ea56";
1836
- }
1837
- .fwe-icon-pallatize:before {
1838
- content: "\ea57";
1839
- }
1840
- .fwe-icon-power-off:before {
1841
- content: "\ea58";
1842
- }
1843
- .fwe-icon-power-on:before {
1844
- content: "\ea59";
1845
- }
1846
- .fwe-icon-project-alias:before {
1847
- content: "\ea5a";
1848
- }
1849
- .fwe-icon-reduced:before {
1850
- content: "\ea5b";
1851
- }
1852
- .fwe-icon-save-to-clipboard:before {
1853
- content: "\ea5c";
1854
- }
1855
- .fwe-icon-sensor:before {
1856
- content: "\ea5d";
1857
- }
1858
- .fwe-icon-show-in-list:before {
1859
- content: "\ea5e";
1860
- }
1861
- .fwe-icon-unlocked:before {
1862
- content: "\ea5f";
1863
- }
1864
- .fwe-icon-upload-history:before {
1865
- content: "\ea60";
1866
- }
1867
- .fwe-icon-worksheet-alias:before {
1868
- content: "\ea61";
1869
- }
1870
- .fwe-icon-analysis-compressed-air-consumption:before {
1871
- content: "\ea62";
1872
- }
1873
- .fwe-icon-analysis-compressed-air-generation:before {
1874
- content: "\ea63";
1875
- }
1876
- .fwe-icon-analysis-compressed-air-quality:before {
1877
- content: "\ea64";
1878
- }
1879
- .fwe-icon-balance:before {
1880
- content: "\ea65";
1881
- }
1882
- .fwe-icon-compressed-air-energy-efficiency:before {
1883
- content: "\ea66";
1884
- }
1885
- .fwe-icon-leakage-detection:before {
1886
- content: "\ea67";
1887
- }
1888
- .fwe-icon-machine-analysis:before {
1889
- content: "\ea68";
1890
- }
1891
- .fwe-icon-mechanic-gripper-close:before {
1892
- content: "\ea69";
1893
- }
1894
- .fwe-icon-mechanic-gripper-open:before {
1895
- content: "\ea6a";
1896
- }
1897
- .fwe-icon-security:before {
1898
- content: "\ea6b";
1899
- }
1900
- .fwe-icon-status:before {
1901
- content: "\ea6c";
1902
- }
1903
- .fwe-icon-vacuum-suction-close:before {
1904
- content: "\ea6d";
1905
- }
1906
- .fwe-icon-vacuum-suction-open:before {
1907
- content: "\ea6e";
1908
- }
1909
- .fwe-icon-page-configure:before {
1910
- content: "\ea6f";
1911
- }
1912
- .fwe-icon-compare:before {
1913
- content: "\ea70";
1914
- }
1915
- .fwe-icon-contact:before {
1916
- content: "\ea71";
1917
- }
1918
- .fwe-icon-copy:before {
1919
- content: "\ea72";
1920
- }
1921
- .fwe-icon-duplicate:before {
1922
- content: "\ea73";
1923
- }
1924
- .fwe-icon-group:before {
1925
- content: "\ea74";
1926
- }
1927
- .fwe-icon-in-progress:before {
1928
- content: "\ea75";
1929
- }
1930
- .fwe-icon-motion-terminal:before {
1931
- content: "\ea76";
1932
- }
1933
- .fwe-icon-move-circular:before {
1934
- content: "\ea77";
1935
- }
1936
- .fwe-icon-move-linear:before {
1937
- content: "\ea78";
1938
- }
1939
- .fwe-icon-move-ptp:before {
1940
- content: "\ea79";
1941
- }
1942
- .fwe-icon-move-skill:before {
1943
- content: "\ea7a";
1944
- }
1945
- .fwe-icon-move-spline:before {
1946
- content: "\ea7b";
1947
- }
1948
- .fwe-icon-paste:before {
1949
- content: "\ea7c";
1950
- }
1951
- .fwe-icon-ringing:before {
1952
- content: "\ea7d";
1953
- }
1954
- .fwe-icon-ungroup:before {
1955
- content: "\ea7e";
1956
- }
1957
- .fwe-icon-wifi:before {
1958
- content: "\ea7f";
1959
- }
1960
- .fwe-icon-training-consulting:before {
1961
- content: "\ea80";
1962
- }
1963
- .fwe-icon-reduce-pressure:before {
1964
- content: "\ea81";
1965
- }
1966
- .fwe-icon-dimension-correctly:before {
1967
- content: "\ea82";
1968
- }
1969
- .fwe-icon-shorten-hose-length:before {
1970
- content: "\ea83";
1971
- }
1972
- .fwe-icon-reduce-leckage:before {
1973
- content: "\ea84";
1974
- }
1975
- .fwe-icon-air-saving-circuit:before {
1976
- content: "\ea85";
1977
- }
1978
- .fwe-icon-reduce-pressure-drop:before {
1979
- content: "\ea86";
1980
- }
1981
- .fwe-icon-efficient-control:before {
1982
- content: "\ea87";
1983
- }
1984
- .fwe-icon-measurement-technology:before {
1985
- content: "\ea88";
1986
- }
1987
- .fwe-icon-select-component:before {
1988
- content: "\ea89";
1989
- }
1990
- .fwe-icon-reduce-weight:before {
1991
- content: "\ea8a";
1992
- }
1993
- .fwe-icon-recover-energy:before {
1994
- content: "\ea8b";
1995
- }
1996
- .fwe-icon-reduce-friction:before {
1997
- content: "\ea8c";
1998
- }
1999
- .fwe-icon-energy-on:before {
2000
- content: "\ea8d";
2001
- }
2002
- .fwe-icon-energy-off:before {
2003
- content: "\ea8e";
2004
- }
2005
- .fwe-icon-code-library:before {
2006
- content: "\ea8f";
2007
- }
2008
- .fwe-icon-codesys:before {
2009
- content: "\ea90";
2010
- }
2011
- .fwe-icon-driver:before {
2012
- content: "\ea91";
2013
- }
2014
- .fwe-icon-firmware:before {
2015
- content: "\ea92";
2016
- }
2017
- .fwe-icon-i-o-link:before {
2018
- content: "\ea93";
2019
- }
2020
- .fwe-icon-middleware:before {
2021
- content: "\ea94";
2022
- }
2023
- .fwe-icon-plugin:before {
2024
- content: "\ea95";
2025
- }
2026
- .fwe-icon-calculator:before {
2027
- content: "\ea96";
2028
- }
2029
- .fwe-icon-design:before {
2030
- content: "\ea97";
2031
- }
2032
- .fwe-icon-first-time-use:before {
2033
- content: "\ea98";
2034
- }
2035
- .fwe-icon-flow-control:before {
2036
- content: "\ea99";
2037
- }
2038
- .fwe-icon-news-services:before {
2039
- content: "\ea9a";
2040
- }
2041
- .fwe-icon-pressure-control:before {
2042
- content: "\ea9b";
2043
- }
2044
- .fwe-icon-services:before {
2045
- content: "\ea9c";
2046
- }
2047
- .fwe-icon-simulation:before {
2048
- content: "\ea9d";
2049
- }
2050
-
2051
-
2052
- .cdk-overlay-container, 
2053
- .cdk-overlay-connected-position-bounding-box,
2054
- .cdk-global-overlay-wrapper {
2055
- z-index: $zindex-modal !important;
2056
- }