@c8y/style 1023.14.33 → 1023.14.37

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 (403) hide show
  1. package/branding-login.scss +17 -0
  2. package/branding.scss +15 -0
  3. package/export.scss +1 -0
  4. package/extend.scss +4 -0
  5. package/login.scss +17 -0
  6. package/main.scss +6 -0
  7. package/package.json +1 -1
  8. package/styles/README.md +204 -0
  9. package/styles/_login-app.scss +34 -0
  10. package/styles/_mixins.scss +47 -0
  11. package/styles/_utilities.scss +21 -0
  12. package/styles/animations/_animate.less +648 -0
  13. package/styles/animations/_animate.scss +654 -0
  14. package/styles/animations/_component-animations.scss +70 -0
  15. package/styles/animations/_realtime-animation-list.scss +21 -0
  16. package/styles/animations/_spinner-snake.scss +73 -0
  17. package/styles/{_spinner.less → animations/_spinner.less} +0 -3
  18. package/styles/animations/_spinner.scss +165 -0
  19. package/styles/base/_normalize.scss +309 -0
  20. package/styles/base/_print.scss +159 -0
  21. package/styles/base/_scaffolding.scss +162 -0
  22. package/styles/{_type.less → base/_type.less} +2 -2
  23. package/styles/base/_type.scss +350 -0
  24. package/styles/components/_markdown-content.less +75 -0
  25. package/styles/components/_markdown-content.scss +82 -0
  26. package/styles/{_smartrules.less → components/_smartrules.less} +120 -97
  27. package/styles/components/_smartrules.scss +392 -0
  28. package/styles/{_range-display.less → components/data-display-and-visualization/_range-display.less} +67 -49
  29. package/styles/components/data-display-and-visualization/_range-display.scss +488 -0
  30. package/styles/{_timelines-chart.less → components/data-display-and-visualization/_timelines-chart.less} +42 -33
  31. package/styles/components/data-display-and-visualization/_timelines-chart.scss +45 -0
  32. package/styles/{_c8y-data-point-list.less → components/data-display-and-visualization/lists/_c8y-data-point-list.less} +2 -20
  33. package/styles/components/data-display-and-visualization/lists/_c8y-data-point-list.scss +32 -0
  34. package/styles/components/data-display-and-visualization/lists/_c8y-empty-state.scss +164 -0
  35. package/styles/{_c8y-list-group.less → components/data-display-and-visualization/lists/_c8y-list-group.less} +1 -1
  36. package/styles/components/data-display-and-visualization/lists/_c8y-list-group.scss +789 -0
  37. package/styles/components/data-display-and-visualization/lists/_cards-layout.scss +415 -0
  38. package/styles/{_list-group.less → components/data-display-and-visualization/lists/_list-group.less} +4 -2
  39. package/styles/components/data-display-and-visualization/lists/_list-group.scss +381 -0
  40. package/styles/components/data-display-and-visualization/lists/_smart-rules-template-list.scss +36 -0
  41. package/styles/components/data-display-and-visualization/lists/_timeline-list.scss +240 -0
  42. package/styles/components/data-display-and-visualization/lists/timeline-list.less +216 -0
  43. package/styles/components/data-display-and-visualization/tables/_data-grid.scss +814 -0
  44. package/styles/{_resizable-grid.less → components/data-display-and-visualization/tables/_resizable-grid.less} +0 -3
  45. package/styles/components/data-display-and-visualization/tables/_resizable-grid.scss +138 -0
  46. package/styles/components/data-display-and-visualization/tables/_tables.scss +411 -0
  47. package/styles/{_c8y-ai-chat.less → components/data-input/_c8y-ai-chat.less} +44 -28
  48. package/styles/components/data-input/_c8y-ai-chat.scss +212 -0
  49. package/styles/components/data-input/assets/_asset-property-list.scss +285 -0
  50. package/styles/{_asset-table.less → components/data-input/assets/_asset-table.less} +3 -6
  51. package/styles/components/data-input/assets/_asset-table.scss +95 -0
  52. package/styles/components/data-input/assets/_c8y-asset-notes.scss +41 -0
  53. package/styles/components/data-input/assets/_c8y-asset-selector-miller.scss +134 -0
  54. package/styles/{_c8y-asset-selector.less → components/data-input/assets/_c8y-asset-selector.less} +1 -1
  55. package/styles/components/data-input/assets/_c8y-asset-selector.scss +178 -0
  56. package/styles/components/data-input/assets/_c8y-child-assets-selector.scss +231 -0
  57. package/styles/{_app-switcher.less → components/navigation-and-layout/action-bars/_app-switcher.less} +1 -1
  58. package/styles/components/navigation-and-layout/action-bars/_app-switcher.scss +111 -0
  59. package/styles/components/navigation-and-layout/action-bars/_c8y-action-bar.scss +418 -0
  60. package/styles/{_card-dashboard.less → components/navigation-and-layout/cards/_card-dashboard.less} +2 -5
  61. package/styles/components/navigation-and-layout/cards/_card-dashboard.scss +179 -0
  62. package/styles/components/navigation-and-layout/cards/_card-flip.scss +104 -0
  63. package/styles/components/navigation-and-layout/cards/_card-grid.scss +95 -0
  64. package/styles/{_card.less → components/navigation-and-layout/cards/_card.less} +18 -22
  65. package/styles/components/navigation-and-layout/cards/_card.scss +769 -0
  66. package/styles/{_panels.less → components/navigation-and-layout/cards/_panels.less} +11 -21
  67. package/styles/components/navigation-and-layout/cards/_panels.scss +514 -0
  68. package/styles/components/navigation-and-layout/navigation/_breadcrumbs.less +82 -0
  69. package/styles/components/navigation-and-layout/navigation/_breadcrumbs.scss +61 -0
  70. package/styles/components/navigation-and-layout/navigation/_c8y-nav-stacked.scss +85 -0
  71. package/styles/components/navigation-and-layout/navigation/_main-header.scss +510 -0
  72. package/styles/{_navbar.less → components/navigation-and-layout/navigation/_navbar.less} +7 -6
  73. package/styles/components/navigation-and-layout/navigation/_navbar.scss +488 -0
  74. package/styles/components/navigation-and-layout/navigation/_navigator.scss +454 -0
  75. package/styles/components/navigation-and-layout/navigation/_navs.scss +118 -0
  76. package/styles/components/navigation-and-layout/navigation/_pagination.scss +148 -0
  77. package/styles/components/navigation-and-layout/navigation/_steps-navbar.scss +101 -0
  78. package/styles/{_tabs.less → components/navigation-and-layout/navigation/_tabs.less} +1 -1
  79. package/styles/components/navigation-and-layout/navigation/_tabs.scss +254 -0
  80. package/styles/components/navigation-and-layout/navigation/steps-navbar.less +98 -0
  81. package/styles/components/specialized/_boxed-label.scss +36 -0
  82. package/styles/components/specialized/_c8y-cookie-banner.scss +37 -0
  83. package/styles/{_c8y-countdown-interval.less → components/specialized/_c8y-countdown-interval.less} +1 -1
  84. package/styles/components/specialized/_c8y-countdown-interval.scss +126 -0
  85. package/styles/{_c8y-data-explorer.less → components/specialized/_c8y-data-explorer.less} +12 -115
  86. package/styles/components/specialized/_c8y-data-explorer.scss +260 -0
  87. package/styles/components/specialized/_c8y-datapoint-pill.scss +105 -0
  88. package/styles/{_c8y-login.less → components/specialized/_c8y-login.less} +3 -3
  89. package/styles/components/specialized/_c8y-login.scss +120 -0
  90. package/styles/components/specialized/_c8y-message-banner.less +37 -0
  91. package/styles/components/specialized/_c8y-message-banner.scss +52 -0
  92. package/styles/components/specialized/_c8y-pulse.scss +118 -0
  93. package/styles/components/specialized/_c8y-range.scss +237 -0
  94. package/styles/{_c8y-role-card.less → components/specialized/_c8y-role-card.less} +2 -22
  95. package/styles/components/specialized/_c8y-role-card.scss +68 -0
  96. package/styles/{_c8y-schema-form.less → components/specialized/_c8y-schema-form.less} +1 -5
  97. package/styles/components/specialized/_c8y-schema-form.scss +193 -0
  98. package/styles/components/specialized/_c8y-scrollbar.scss +82 -0
  99. package/styles/components/specialized/_c8y-smart-rest-tab.scss +75 -0
  100. package/styles/{_c8y-stepper.less → components/specialized/_c8y-stepper.less} +3 -3
  101. package/styles/components/specialized/_c8y-stepper.scss +110 -0
  102. package/styles/{_c8y-user-roles.less → components/specialized/_c8y-user-roles.less} +6 -7
  103. package/styles/components/specialized/_c8y-user-roles.scss +351 -0
  104. package/styles/{_c8y-utils.less → components/specialized/_c8y-utils.less} +0 -3
  105. package/styles/components/specialized/_c8y-utils.scss +109 -0
  106. package/styles/components/specialized/_code.scss +94 -0
  107. package/styles/components/specialized/_device-software-tab.scss +52 -0
  108. package/styles/components/specialized/_dtm-icon-selector.scss +84 -0
  109. package/styles/{_measurements-time-control.less → components/specialized/_measurements-time-control.less} +12 -52
  110. package/styles/components/specialized/_measurements-time-control.scss +237 -0
  111. package/styles/components/specialized/_search-header.scss +126 -0
  112. package/styles/{_smart-list-icon-label.less → components/specialized/_smart-list-icon-label.less} +1 -1
  113. package/styles/components/specialized/_smart-list-icon-label.scss +75 -0
  114. package/styles/components/specialized/_static-assets-file-picker.scss +23 -0
  115. package/styles/{_status.less → components/specialized/_status.less} +11 -11
  116. package/styles/components/specialized/_status.scss +106 -0
  117. package/styles/components/specialized/_statusContainer.scss +62 -0
  118. package/styles/core/buttons/_button-groups.scss +202 -0
  119. package/styles/{_buttons.less → core/buttons/_buttons.less} +30 -21
  120. package/styles/core/buttons/_buttons.scss +1318 -0
  121. package/styles/{_alerts.less → core/feedback/_alerts.less} +2 -6
  122. package/styles/core/feedback/_alerts.scss +243 -0
  123. package/styles/core/feedback/_badges.scss +85 -0
  124. package/styles/core/feedback/_close.scss +54 -0
  125. package/styles/{_labels.less → core/feedback/_labels.less} +1 -1
  126. package/styles/core/feedback/_labels.scss +93 -0
  127. package/styles/core/feedback/_progress-bars.scss +96 -0
  128. package/styles/{_tag.less → core/feedback/_tag.less} +1 -1
  129. package/styles/core/feedback/_tag.scss +103 -0
  130. package/styles/core/feedback/_tooltip.scss +147 -0
  131. package/styles/{_c8y-switch.less → core/forms/_c8y-switch.less} +2 -2
  132. package/styles/core/forms/_c8y-switch.scss +226 -0
  133. package/styles/{_file-picker.less → core/forms/_file-picker.less} +1 -1
  134. package/styles/core/forms/_file-picker.scss +219 -0
  135. package/styles/{_forms.less → core/forms/_forms.less} +14 -16
  136. package/styles/core/forms/_forms.scss +1183 -0
  137. package/styles/{_input-groups.less → core/forms/_input-groups.less} +2 -2
  138. package/styles/core/forms/_input-groups.scss +700 -0
  139. package/styles/{_c8y-dashboard-modal.less → core/overlays/_c8y-dashboard-modal.less} +3 -3
  140. package/styles/core/overlays/_c8y-dashboard-modal.scss +86 -0
  141. package/styles/{_c8y-wizard.less → core/overlays/_c8y-wizard.less} +1 -1
  142. package/styles/core/overlays/_c8y-wizard.scss +226 -0
  143. package/styles/{_dropdowns.less → core/overlays/_dropdowns.less} +4 -4
  144. package/styles/core/overlays/_dropdowns.scss +815 -0
  145. package/styles/{_modals.less → core/overlays/_modals.less} +7 -8
  146. package/styles/core/overlays/_modals.scss +461 -0
  147. package/styles/core/overlays/_popovers.scss +183 -0
  148. package/styles/dashboard/_availability-pie.scss +33 -0
  149. package/styles/{_c8y-dashboard-style.less → dashboard/_c8y-dashboard-style.less} +4 -6
  150. package/styles/dashboard/_c8y-dashboard-style.scss +409 -0
  151. package/styles/{_c8y-gauges.less → dashboard/_c8y-gauges.less} +1 -1
  152. package/styles/dashboard/_c8y-gauges.scss +62 -0
  153. package/styles/dashboard/_dashboard-widgets.scss +47 -0
  154. package/styles/dashboard/_info-gauge.scss +107 -0
  155. package/styles/dashboard/_quick-links-widget.scss +49 -0
  156. package/styles/dashboard/_welcome-widget.scss +68 -0
  157. package/styles/dashboard/_welcome.scss +138 -0
  158. package/styles/dashboard/welcome-widget.less +50 -0
  159. package/styles/dashboard/welcome.less +128 -0
  160. package/styles/icons/_c8y-glyphs.scss +63 -0
  161. package/styles/{_c8y-icons.less → icons/_c8y-icons.less} +12 -12
  162. package/styles/icons/_c8y-icons.scss +1209 -0
  163. package/styles/icons/_dlt-c8y-icons-stroke.less +1856 -0
  164. package/styles/icons/_dlt-c8y-icons-stroke.scss +3667 -0
  165. package/styles/{_dlt-c8y-icons.less → icons/_dlt-c8y-icons.less} +5 -112
  166. package/styles/icons/_dlt-c8y-icons.scss +9204 -0
  167. package/styles/icons/_marker-icons.less +22 -0
  168. package/styles/icons/_marker-icons.scss +33 -0
  169. package/styles/index.less +233 -152
  170. package/styles/index.scss +240 -0
  171. package/styles/layout/_bottom-drawer.scss +59 -0
  172. package/styles/layout/_c8y-help-drawer.scss +104 -0
  173. package/styles/layout/_c8y-right-drawer.scss +150 -0
  174. package/styles/layout/_c8y-top-drawer.scss +117 -0
  175. package/styles/{_grid.less → layout/_grid.less} +3 -18
  176. package/styles/layout/_grid.scss +114 -0
  177. package/styles/layout/_group-info.scss +27 -0
  178. package/styles/{_layouts.less → layout/_layouts.less} +1 -3
  179. package/styles/layout/_layouts.scss +375 -0
  180. package/styles/layout/_mcontainer.scss +136 -0
  181. package/styles/layout/_page-tabs.scss +314 -0
  182. package/styles/{_split-scroll.less → layout/_split-scroll.less} +1 -1
  183. package/styles/layout/_split-scroll.scss +112 -0
  184. package/styles/layout/_split-view.scss +126 -0
  185. package/styles/login-app-use.scss +36 -0
  186. package/styles/login-app.less +25 -24
  187. package/styles/mixins/_alert-variant.scss +13 -0
  188. package/styles/mixins/_animation.scss +25 -0
  189. package/styles/mixins/_background-variant.scss +34 -0
  190. package/styles/mixins/_border-radius.scss +18 -0
  191. package/styles/mixins/_buttons.scss +65 -0
  192. package/styles/mixins/_c8y-scrollbar.scss +29 -0
  193. package/styles/mixins/_center-block.scss +7 -0
  194. package/styles/mixins/_clearfix.scss +22 -0
  195. package/styles/mixins/_color-mixins.scss +21 -0
  196. package/styles/mixins/_create-grid.scss +137 -0
  197. package/styles/mixins/_element-queries.scss +39 -0
  198. package/styles/mixins/_forms.scss +122 -0
  199. package/styles/mixins/_gradients.scss +120 -0
  200. package/styles/mixins/_grid-framework.scss +104 -0
  201. package/styles/mixins/_grid.scss +126 -0
  202. package/styles/mixins/_hide-scrollbars.scss +10 -0
  203. package/styles/mixins/_hide-text.scss +24 -0
  204. package/styles/mixins/_icon-base.scss +30 -0
  205. package/styles/mixins/_image.scss +26 -0
  206. package/styles/mixins/_index.scss +48 -0
  207. package/styles/mixins/_labels.scss +14 -0
  208. package/styles/mixins/_list-group.scss +32 -0
  209. package/styles/mixins/_nav-divider.scss +8 -0
  210. package/styles/mixins/_nav-vertical-align.scss +9 -0
  211. package/styles/mixins/_opacity.scss +9 -0
  212. package/styles/mixins/_pagination.scss +26 -0
  213. package/styles/mixins/_panels.scss +25 -0
  214. package/styles/mixins/_progress-bar.scss +12 -0
  215. package/styles/mixins/_reset-filter.scss +9 -0
  216. package/styles/mixins/_reset-text.scss +21 -0
  217. package/styles/mixins/_resize.scss +6 -0
  218. package/styles/mixins/_responsive-visibility.scss +21 -0
  219. package/styles/mixins/_shadows-helper.scss +40 -0
  220. package/styles/mixins/_size.scss +109 -0
  221. package/styles/mixins/_tab-focus.scss +20 -0
  222. package/styles/mixins/_table-row.scss +30 -0
  223. package/styles/mixins/_tag.scss +14 -0
  224. package/styles/mixins/_text-emphasis.scss +19 -0
  225. package/styles/mixins/_text-overflow.scss +10 -0
  226. package/styles/mixins/_vendor-prefixes.scss +149 -0
  227. package/styles/mixins/vendor-prefixes.less +37 -112
  228. package/styles/utilities/_borders.less +3 -12
  229. package/styles/utilities/_borders.scss +137 -0
  230. package/styles/utilities/_caret.scss +50 -0
  231. package/styles/utilities/_container-queries.scss +113 -0
  232. package/styles/utilities/_contextual-colors.less +113 -168
  233. package/styles/utilities/_contextual-colors.scss +170 -0
  234. package/styles/utilities/_display.scss +439 -0
  235. package/styles/utilities/_elevation.scss +41 -0
  236. package/styles/utilities/_flex-containers.scss +219 -0
  237. package/styles/utilities/_flex-items.scss +152 -0
  238. package/styles/utilities/_icon-utils.less +5 -5
  239. package/styles/utilities/_icon-utils.scss +94 -0
  240. package/styles/utilities/_margins-paddings.scss +190 -0
  241. package/styles/utilities/_overflows.scss +69 -0
  242. package/styles/utilities/_position.less +3 -6
  243. package/styles/utilities/_position.scss +143 -0
  244. package/styles/utilities/_quickfloats.less +1 -8
  245. package/styles/utilities/_quickfloats.scss +36 -0
  246. package/styles/utilities/_separators.scss +71 -0
  247. package/styles/utilities/_shadows.scss +7 -0
  248. package/styles/utilities/_sizing.scss +122 -0
  249. package/styles/utilities/_text-utils.scss +691 -0
  250. package/styles/utilities.less +1 -4
  251. package/styles/vendor/ace-editor/_ace-editor.scss +26 -0
  252. package/styles/vendor/angular/_loading-bar.scss +33 -0
  253. package/styles/{_ui-sortable.less → vendor/angular/_ui-sortable.less} +1 -1
  254. package/styles/vendor/angular/_ui-sortable.scss +70 -0
  255. package/styles/{_uib-accordion.less → vendor/angular/_uib-accordion.less} +1 -1
  256. package/styles/vendor/angular/_uib-accordion.scss +59 -0
  257. package/styles/vendor/angular/angular-ui-select/_select.scss +154 -0
  258. package/styles/vendor/angular/angular-ui-select/select.less +161 -0
  259. package/styles/vendor/cdk/_cdk-drag.scss +71 -0
  260. package/styles/{_cdk-tree.less → vendor/cdk/_cdk-tree.less} +1 -1
  261. package/styles/vendor/cdk/_cdk-tree.scss +66 -0
  262. package/styles/vendor/cdk/_cdk-virtual-scroll-window.scss +18 -0
  263. package/styles/{_bs-datepicker.less → vendor/datepicker/_bs-datepicker.less} +1 -7
  264. package/styles/vendor/datepicker/_bs-datepicker.scss +628 -0
  265. package/styles/{_datepicker.less → vendor/datepicker/_uib-datepicker.less} +1 -6
  266. package/styles/vendor/datepicker/_uib-datepicker.scss +173 -0
  267. package/styles/{_c8y-map-internal.less → vendor/leaflet/_c8y-map-internal.less} +4 -4
  268. package/styles/vendor/leaflet/_c8y-map-internal.scss +316 -0
  269. package/styles/{_leaflet.less → vendor/leaflet/_leaflet.less} +4 -3
  270. package/styles/vendor/leaflet/_leaflet.scss +803 -0
  271. package/styles/{_colorpicker.less → vendor/other/_colorpicker.less} +2 -2
  272. package/styles/vendor/other/_colorpicker.scss +40 -0
  273. package/styles/{_c8y-selectize.less → vendor/selectize/_c8y-selectize.less} +1 -10
  274. package/styles/vendor/selectize/_c8y-selectize.scss +403 -0
  275. package/sync-scss-to-less.sh +75 -0
  276. package/variables/README.md +485 -0
  277. package/variables/_alert-vars.scss +36 -0
  278. package/variables/_badge-vars.less +0 -1
  279. package/variables/_badge-vars.scss +24 -0
  280. package/variables/_brand-vars.scss +97 -0
  281. package/variables/_breadcrumbs-vars.scss +13 -0
  282. package/variables/_buttons-vars.less +17 -0
  283. package/variables/_buttons-vars.scss +107 -0
  284. package/variables/_c8y-action-bar-vars.less +1 -1
  285. package/variables/_c8y-action-bar-vars.scss +15 -0
  286. package/variables/_c8y-icon-vars.scss +199 -0
  287. package/variables/_code-vars.less +2 -3
  288. package/variables/_code-vars.scss +18 -0
  289. package/variables/_color-defaults.less +91 -0
  290. package/variables/_color-defaults.scss +91 -0
  291. package/variables/_color-vars.less +96 -39
  292. package/variables/_color-vars.scss +303 -0
  293. package/variables/_components-vars.scss +22 -0
  294. package/variables/_dlt-c8y-icons-vars.scss +1825 -0
  295. package/variables/_forms-vars.less +1 -1
  296. package/variables/_forms-vars.scss +98 -0
  297. package/variables/_label-vars.less +5 -2
  298. package/variables/_label-vars.scss +37 -0
  299. package/variables/_layout-vars.less +29 -13
  300. package/variables/_layout-vars.scss +110 -0
  301. package/variables/_map-vars.scss +12 -0
  302. package/variables/_modal-vars.less +2 -2
  303. package/variables/_modal-vars.scss +13 -0
  304. package/variables/_navbar-vars.less +15 -7
  305. package/variables/_navbar-vars.scss +72 -0
  306. package/variables/_navigator.scss +8 -0
  307. package/variables/_page-sticky-header.scss +4 -0
  308. package/variables/_pagination-vars.scss +30 -0
  309. package/variables/_panel-vars.less +2 -2
  310. package/variables/_panel-vars.scss +40 -0
  311. package/variables/_popover-vars.scss +23 -0
  312. package/variables/_progress-bars-vars.less +5 -5
  313. package/variables/_progress-bars-vars.scss +19 -0
  314. package/variables/_scaffolding.scss +33 -0
  315. package/variables/_selectize-vars.scss +37 -0
  316. package/variables/_tables-vars.scss +7 -0
  317. package/variables/_tag-vars.less +1 -1
  318. package/variables/_tag-vars.scss +38 -0
  319. package/variables/_thumbnail-vars.scss +12 -0
  320. package/variables/_tooltip-vars.scss +16 -0
  321. package/variables/_typography-vars.scss +45 -0
  322. package/variables/dashboard-themes/_branded-dashboard.less +0 -11
  323. package/variables/dashboard-themes/_branded-dashboard.scss +296 -0
  324. package/variables/dashboard-themes/_dark-dashboard.less +7 -0
  325. package/variables/dashboard-themes/_dark-dashboard.scss +40 -0
  326. package/variables/dashboard-themes/_transparent-dashboard.scss +17 -0
  327. package/variables/dashboard-themes/_white-dashboard.scss +44 -0
  328. package/variables/index.less +4 -0
  329. package/variables/index.scss +146 -0
  330. package/variables/login-vars.scss +48 -0
  331. package/variables/shadows.scss +15 -0
  332. package/variables/tokens/c8y-design-tokens-dark.less +2 -13
  333. package/variables/tokens/c8y-design-tokens-dark.scss +332 -0
  334. package/variables/tokens/c8y-design-tokens.less +4 -15
  335. package/variables/tokens/c8y-design-tokens.scss +590 -0
  336. package/styles/_animate.less +0 -1133
  337. package/styles/_baseline-grid.less +0 -22
  338. package/styles/_breadcrumbs.less +0 -99
  339. package/styles/_browser-mock.less +0 -59
  340. package/styles/_bulk-operation-details-tab.less +0 -10
  341. package/styles/_c8y-message-banner.less +0 -37
  342. package/styles/_dlt-c8y-icons-stroke.less +0 -32797
  343. package/styles/_markdown-content.less +0 -54
  344. package/styles/_marker-icons.less +0 -19
  345. /package/styles/{_component-animations.less → animations/_component-animations.less} +0 -0
  346. /package/styles/{_realtime-animation-list.less → animations/_realtime-animation-list.less} +0 -0
  347. /package/styles/{_spinner-snake.less → animations/_spinner-snake.less} +0 -0
  348. /package/styles/{_normalize.less → base/_normalize.less} +0 -0
  349. /package/styles/{_print.less → base/_print.less} +0 -0
  350. /package/styles/{_scaffolding.less → base/_scaffolding.less} +0 -0
  351. /package/styles/{_c8y-empty-state.less → components/data-display-and-visualization/lists/_c8y-empty-state.less} +0 -0
  352. /package/styles/{_cards-layout.less → components/data-display-and-visualization/lists/_cards-layout.less} +0 -0
  353. /package/styles/{_smart-rules-template-list.less → components/data-display-and-visualization/lists/_smart-rules-template-list.less} +0 -0
  354. /package/styles/{_data-grid.less → components/data-display-and-visualization/tables/_data-grid.less} +0 -0
  355. /package/styles/{_tables.less → components/data-display-and-visualization/tables/_tables.less} +0 -0
  356. /package/styles/{_asset-property-list.less → components/data-input/assets/_asset-property-list.less} +0 -0
  357. /package/styles/{_c8y-asset-notes.less → components/data-input/assets/_c8y-asset-notes.less} +0 -0
  358. /package/styles/{_c8y-asset-selector-miller.less → components/data-input/assets/_c8y-asset-selector-miller.less} +0 -0
  359. /package/styles/{_c8y-child-assets-selector.less → components/data-input/assets/_c8y-child-assets-selector.less} +0 -0
  360. /package/styles/{_c8y-action-bar.less → components/navigation-and-layout/action-bars/_c8y-action-bar.less} +0 -0
  361. /package/styles/{_card-flip.less → components/navigation-and-layout/cards/_card-flip.less} +0 -0
  362. /package/styles/{_card-grid.less → components/navigation-and-layout/cards/_card-grid.less} +0 -0
  363. /package/styles/{_c8y-nav-stacked.less → components/navigation-and-layout/navigation/_c8y-nav-stacked.less} +0 -0
  364. /package/styles/{_main-header.less → components/navigation-and-layout/navigation/_main-header.less} +0 -0
  365. /package/styles/{_navigator.less → components/navigation-and-layout/navigation/_navigator.less} +0 -0
  366. /package/styles/{_navs.less → components/navigation-and-layout/navigation/_navs.less} +0 -0
  367. /package/styles/{_pagination.less → components/navigation-and-layout/navigation/_pagination.less} +0 -0
  368. /package/styles/{_boxed-label.less → components/specialized/_boxed-label.less} +0 -0
  369. /package/styles/{_c8y-cookie-banner.less → components/specialized/_c8y-cookie-banner.less} +0 -0
  370. /package/styles/{_c8y-datapoint-pill.less → components/specialized/_c8y-datapoint-pill.less} +0 -0
  371. /package/styles/{_c8y-pulse.less → components/specialized/_c8y-pulse.less} +0 -0
  372. /package/styles/{_c8y-range.less → components/specialized/_c8y-range.less} +0 -0
  373. /package/styles/{_c8y-scrollbar.less → components/specialized/_c8y-scrollbar.less} +0 -0
  374. /package/styles/{_c8y-smart-rest-tab.less → components/specialized/_c8y-smart-rest-tab.less} +0 -0
  375. /package/styles/{_code.less → components/specialized/_code.less} +0 -0
  376. /package/styles/{_device-software-tab.less → components/specialized/_device-software-tab.less} +0 -0
  377. /package/styles/{_dtm-icon-selector.less → components/specialized/_dtm-icon-selector.less} +0 -0
  378. /package/styles/{_search-header.less → components/specialized/_search-header.less} +0 -0
  379. /package/styles/{_static-assets-file-picker.less → components/specialized/_static-assets-file-picker.less} +0 -0
  380. /package/styles/{_statusContainer.less → components/specialized/_statusContainer.less} +0 -0
  381. /package/styles/{_button-groups.less → core/buttons/_button-groups.less} +0 -0
  382. /package/styles/{_badges.less → core/feedback/_badges.less} +0 -0
  383. /package/styles/{_close.less → core/feedback/_close.less} +0 -0
  384. /package/styles/{_progress-bars.less → core/feedback/_progress-bars.less} +0 -0
  385. /package/styles/{_tooltip.less → core/feedback/_tooltip.less} +0 -0
  386. /package/styles/{_popovers.less → core/overlays/_popovers.less} +0 -0
  387. /package/styles/{_availability-pie.less → dashboard/_availability-pie.less} +0 -0
  388. /package/styles/{_dashboard-widgets.less → dashboard/_dashboard-widgets.less} +0 -0
  389. /package/styles/{_info-gauge.less → dashboard/_info-gauge.less} +0 -0
  390. /package/styles/{_quick-links-widget.less → dashboard/_quick-links-widget.less} +0 -0
  391. /package/styles/{_c8y-glyphs.less → icons/_c8y-glyphs.less} +0 -0
  392. /package/styles/{_bottom-drawer.less → layout/_bottom-drawer.less} +0 -0
  393. /package/styles/{_c8y-help-drawer.less → layout/_c8y-help-drawer.less} +0 -0
  394. /package/styles/{_c8y-right-drawer.less → layout/_c8y-right-drawer.less} +0 -0
  395. /package/styles/{_c8y-top-drawer.less → layout/_c8y-top-drawer.less} +0 -0
  396. /package/styles/{_group-info.less → layout/_group-info.less} +0 -0
  397. /package/styles/{_mcontainer.less → layout/_mcontainer.less} +0 -0
  398. /package/styles/{_page-tabs.less → layout/_page-tabs.less} +0 -0
  399. /package/styles/{_split-view.less → layout/_split-view.less} +0 -0
  400. /package/styles/{_ace-editor.less → vendor/ace-editor/_ace-editor.less} +0 -0
  401. /package/styles/{_loading-bar.less → vendor/angular/_loading-bar.less} +0 -0
  402. /package/styles/{_cdk-drag.less → vendor/cdk/_cdk-drag.less} +0 -0
  403. /package/styles/{_cdk-virtual-scroll-window.less → vendor/cdk/_cdk-virtual-scroll-window.less} +0 -0
@@ -1,1133 +0,0 @@
1
- @charset "UTF-8";
2
- // c8y
3
- @ease_cubic: cubic-bezier(0.75, 0.01, 0.32, 0.99);
4
- .fadeAnim.ng-enter,
5
- .fadeAnim.ng-leave {
6
- transition: 0.5s linear all;
7
- }
8
-
9
- .fadeAnim.ng-enter,
10
- .fadeAnim.ng-leave-active {
11
- opacity: 0;
12
- }
13
-
14
- .fadeAnim.ng-enter-active,
15
- .fadeAnim.ng-leave {
16
- opacity: 1;
17
- }
18
-
19
- /*!
20
- * animate.css -http://daneden.me/animate
21
- * Version - 3.6.1
22
- * Licensed under the MIT license - http://opensource.org/licenses/MIT
23
- *
24
- * Copyright (c) 2018 Daniel Eden
25
- */
26
-
27
- .animated {
28
- -webkit-animation-duration: 1s;
29
- animation-duration: 1s;
30
- -webkit-animation-fill-mode: both;
31
- animation-fill-mode: both;
32
- }
33
- .animated.fast {
34
- -webkit-animation-duration: 0.35s;
35
- animation-duration: 0.35s;
36
- }
37
-
38
- .animated.infinite {
39
- -webkit-animation-iteration-count: infinite;
40
- animation-iteration-count: infinite;
41
- }
42
-
43
- @-webkit-keyframes bounce {
44
- from,
45
- 20%,
46
- 53%,
47
- 80%,
48
- to {
49
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
50
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
51
- -webkit-transform: translate3d(0, 0, 0);
52
- transform: translate3d(0, 0, 0);
53
- }
54
-
55
- 40%,
56
- 43% {
57
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
58
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
59
- -webkit-transform: translate3d(0, -30px, 0);
60
- transform: translate3d(0, -30px, 0);
61
- }
62
-
63
- 70% {
64
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
65
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
66
- -webkit-transform: translate3d(0, -15px, 0);
67
- transform: translate3d(0, -15px, 0);
68
- }
69
-
70
- 90% {
71
- -webkit-transform: translate3d(0, -4px, 0);
72
- transform: translate3d(0, -4px, 0);
73
- }
74
- }
75
-
76
- @keyframes bounce {
77
- from,
78
- 20%,
79
- 53%,
80
- 80%,
81
- to {
82
- -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
83
- animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
84
- -webkit-transform: translate3d(0, 0, 0);
85
- transform: translate3d(0, 0, 0);
86
- }
87
-
88
- 40%,
89
- 43% {
90
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
91
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
92
- -webkit-transform: translate3d(0, -30px, 0);
93
- transform: translate3d(0, -30px, 0);
94
- }
95
-
96
- 70% {
97
- -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
98
- animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
99
- -webkit-transform: translate3d(0, -15px, 0);
100
- transform: translate3d(0, -15px, 0);
101
- }
102
-
103
- 90% {
104
- -webkit-transform: translate3d(0, -4px, 0);
105
- transform: translate3d(0, -4px, 0);
106
- }
107
- }
108
-
109
- .bounce {
110
- -webkit-animation-name: bounce;
111
- animation-name: bounce;
112
- -webkit-transform-origin: center bottom;
113
- transform-origin: center bottom;
114
- }
115
-
116
- @-webkit-keyframes flash {
117
- from,
118
- 50%,
119
- to {
120
- opacity: 1;
121
- }
122
-
123
- 25%,
124
- 75% {
125
- opacity: 0;
126
- }
127
- }
128
-
129
- @keyframes flash {
130
- from,
131
- 50%,
132
- to {
133
- opacity: 1;
134
- }
135
-
136
- 25%,
137
- 75% {
138
- opacity: 0;
139
- }
140
- }
141
-
142
- .flash {
143
- -webkit-animation-name: flash;
144
- animation-name: flash;
145
- }
146
-
147
- /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
148
-
149
- @-webkit-keyframes pulse {
150
- from {
151
- -webkit-transform: scale3d(1, 1, 1);
152
- transform: scale3d(1, 1, 1);
153
- }
154
-
155
- 50% {
156
- -webkit-transform: scale3d(1.05, 1.05, 1.05);
157
- transform: scale3d(1.05, 1.05, 1.05);
158
- }
159
-
160
- to {
161
- -webkit-transform: scale3d(1, 1, 1);
162
- transform: scale3d(1, 1, 1);
163
- }
164
- }
165
-
166
- @keyframes pulse {
167
- from {
168
- -webkit-transform: scale3d(1, 1, 1);
169
- transform: scale3d(1, 1, 1);
170
- }
171
-
172
- 50% {
173
- -webkit-transform: scale3d(1.05, 1.05, 1.05);
174
- transform: scale3d(1.05, 1.05, 1.05);
175
- }
176
-
177
- to {
178
- -webkit-transform: scale3d(1, 1, 1);
179
- transform: scale3d(1, 1, 1);
180
- }
181
- }
182
-
183
- .pulse {
184
- -webkit-animation-name: pulse;
185
- animation-name: pulse;
186
- }
187
-
188
- @-webkit-keyframes shake {
189
- from,
190
- to {
191
- -webkit-transform: translate3d(0, 0, 0);
192
- transform: translate3d(0, 0, 0);
193
- }
194
-
195
- 10%,
196
- 30%,
197
- 50%,
198
- 70%,
199
- 90% {
200
- -webkit-transform: translate3d(-10px, 0, 0);
201
- transform: translate3d(-10px, 0, 0);
202
- }
203
-
204
- 20%,
205
- 40%,
206
- 60%,
207
- 80% {
208
- -webkit-transform: translate3d(10px, 0, 0);
209
- transform: translate3d(10px, 0, 0);
210
- }
211
- }
212
-
213
- @keyframes shake {
214
- from,
215
- to {
216
- -webkit-transform: translate3d(0, 0, 0);
217
- transform: translate3d(0, 0, 0);
218
- }
219
-
220
- 10%,
221
- 30%,
222
- 50%,
223
- 70%,
224
- 90% {
225
- -webkit-transform: translate3d(-10px, 0, 0);
226
- transform: translate3d(-10px, 0, 0);
227
- }
228
-
229
- 20%,
230
- 40%,
231
- 60%,
232
- 80% {
233
- -webkit-transform: translate3d(10px, 0, 0);
234
- transform: translate3d(10px, 0, 0);
235
- }
236
- }
237
-
238
- .shake {
239
- -webkit-animation-name: shake;
240
- animation-name: shake;
241
- }
242
-
243
- @-webkit-keyframes vibrate {
244
- 0%,
245
- 2%,
246
- 4%,
247
- 6%,
248
- 8%,
249
- 10%,
250
- 12%,
251
- 14%,
252
- 16%,
253
- 18% {
254
- -webkit-transform: translate3d(-1px, 0, 0);
255
- transform: translate3d(-1px, 0, 0);
256
- }
257
- 1%,
258
- 3%,
259
- 5%,
260
- 7%,
261
- 9%,
262
- 11%,
263
- 13%,
264
- 15%,
265
- 17%,
266
- 19% {
267
- -webkit-transform: translate3d(1px, 0, 0);
268
- transform: translate3d(1px, 0, 0);
269
- }
270
- 20%,
271
- 100% {
272
- -webkit-transform: translate3d(0, 0, 0);
273
- transform: translate3d(0, 0, 0);
274
- }
275
- }
276
-
277
- @keyframes vibrate {
278
- 0%,
279
- 2%,
280
- 4%,
281
- 6%,
282
- 8%,
283
- 10%,
284
- 12%,
285
- 14%,
286
- 16%,
287
- 18% {
288
- -webkit-transform: translate3d(-1px, 0, 0);
289
- transform: translate3d(-1px, 0, 0);
290
- }
291
- 1%,
292
- 3%,
293
- 5%,
294
- 7%,
295
- 9%,
296
- 11%,
297
- 13%,
298
- 15%,
299
- 17%,
300
- 19% {
301
- -webkit-transform: translate3d(1px, 0, 0);
302
- transform: translate3d(1px, 0, 0);
303
- }
304
- 20%,
305
- 100% {
306
- -webkit-transform: translate3d(0, 0, 0);
307
- transform: translate3d(0, 0, 0);
308
- }
309
- }
310
-
311
- .vibrate {
312
- // -webkit-animation: vibrate 2s cubic-bezier(0.36, 0.07, 0.19, 0.97) ;
313
- // animation: vibrate 2s cubic-bezier(0.36, 0.07, 0.19, 0.97);
314
- // -webkit-transform: translate3d(0, 0, 0);
315
- // transform: translate3d(0, 0, 0);
316
- // -webkit-backface-visibility: hidden;
317
- // backface-visibility: hidden;
318
- -webkit-perspective: 300px;
319
- perspective: 300px;
320
- transition-duration: 2s;
321
- transition-timing-function: cubic-bezier(0.36, 0.07, 0.19, 0.97);
322
- -webkit-animation-name: vibrate;
323
- animation-name: vibrate;
324
- }
325
-
326
- @-webkit-keyframes fadeIn {
327
- from {
328
- opacity: 0;
329
- }
330
-
331
- to {
332
- opacity: 1;
333
- }
334
- }
335
-
336
- @keyframes fadeIn {
337
- from {
338
- opacity: 0;
339
- }
340
-
341
- to {
342
- opacity: 1;
343
- }
344
- }
345
-
346
- .fadeIn {
347
- -webkit-animation-name: fadeIn;
348
- animation-name: fadeIn;
349
- }
350
-
351
- @-webkit-keyframes fadeInDown {
352
- from {
353
- opacity: 0;
354
- -webkit-transform: translate3d(0, -100%, 0);
355
- transform: translate3d(0, -100%, 0);
356
- }
357
-
358
- to {
359
- opacity: 1;
360
- -webkit-transform: translate3d(0, 0, 0);
361
- transform: translate3d(0, 0, 0);
362
- }
363
- }
364
-
365
- @keyframes fadeInDown {
366
- from {
367
- opacity: 0;
368
- -webkit-transform: translate3d(0, -100%, 0);
369
- transform: translate3d(0, -100%, 0);
370
- }
371
-
372
- to {
373
- opacity: 1;
374
- -webkit-transform: translate3d(0, 0, 0);
375
- transform: translate3d(0, 0, 0);
376
- }
377
- }
378
-
379
- .fadeInDown {
380
- -webkit-animation-name: fadeInDown;
381
- animation-name: fadeInDown;
382
- }
383
-
384
- @-webkit-keyframes fadeInDownBig {
385
- from {
386
- opacity: 0;
387
- -webkit-transform: translate3d(0, -2000px, 0);
388
- transform: translate3d(0, -2000px, 0);
389
- }
390
-
391
- to {
392
- opacity: 1;
393
- -webkit-transform: translate3d(0, 0, 0);
394
- transform: translate3d(0, 0, 0);
395
- }
396
- }
397
-
398
- @keyframes fadeInDownBig {
399
- from {
400
- opacity: 0;
401
- -webkit-transform: translate3d(0, -2000px, 0);
402
- transform: translate3d(0, -2000px, 0);
403
- }
404
-
405
- to {
406
- opacity: 1;
407
- -webkit-transform: translate3d(0, 0, 0);
408
- transform: translate3d(0, 0, 0);
409
- }
410
- }
411
-
412
- .fadeInDownBig {
413
- -webkit-animation-name: fadeInDownBig;
414
- animation-name: fadeInDownBig;
415
- }
416
-
417
- @-webkit-keyframes fadeInLeft {
418
- from {
419
- opacity: 0;
420
- -webkit-transform: translate3d(-100%, 0, 0);
421
- transform: translate3d(-100%, 0, 0);
422
- }
423
-
424
- to {
425
- opacity: 1;
426
- -webkit-transform: translate3d(0, 0, 0);
427
- transform: translate3d(0, 0, 0);
428
- }
429
- }
430
-
431
- @keyframes fadeInLeft {
432
- from {
433
- opacity: 0;
434
- -webkit-transform: translate3d(-100%, 0, 0);
435
- transform: translate3d(-100%, 0, 0);
436
- }
437
-
438
- to {
439
- opacity: 1;
440
- -webkit-transform: translate3d(0, 0, 0);
441
- transform: translate3d(0, 0, 0);
442
- }
443
- }
444
-
445
- .fadeInLeft {
446
- -webkit-animation-name: fadeInLeft;
447
- animation-name: fadeInLeft;
448
- }
449
-
450
- @-webkit-keyframes fadeInLeftBig {
451
- from {
452
- opacity: 0;
453
- -webkit-transform: translate3d(-2000px, 0, 0);
454
- transform: translate3d(-2000px, 0, 0);
455
- }
456
-
457
- to {
458
- opacity: 1;
459
- -webkit-transform: translate3d(0, 0, 0);
460
- transform: translate3d(0, 0, 0);
461
- }
462
- }
463
-
464
- @keyframes fadeInLeftBig {
465
- from {
466
- opacity: 0;
467
- -webkit-transform: translate3d(-2000px, 0, 0);
468
- transform: translate3d(-2000px, 0, 0);
469
- }
470
-
471
- to {
472
- opacity: 1;
473
- -webkit-transform: translate3d(0, 0, 0);
474
- transform: translate3d(0, 0, 0);
475
- }
476
- }
477
-
478
- .fadeInLeftBig {
479
- -webkit-animation-name: fadeInLeftBig;
480
- animation-name: fadeInLeftBig;
481
- }
482
-
483
- @-webkit-keyframes fadeInRight {
484
- from {
485
- opacity: 0;
486
- -webkit-transform: translate3d(100%, 0, 0);
487
- transform: translate3d(100%, 0, 0);
488
- }
489
-
490
- to {
491
- opacity: 1;
492
- -webkit-transform: translate3d(0, 0, 0);
493
- transform: translate3d(0, 0, 0);
494
- }
495
- }
496
-
497
- @keyframes fadeInRight {
498
- from {
499
- opacity: 0;
500
- -webkit-transform: translate3d(100%, 0, 0);
501
- transform: translate3d(100%, 0, 0);
502
- }
503
-
504
- to {
505
- opacity: 1;
506
- -webkit-transform: translate3d(0, 0, 0);
507
- transform: translate3d(0, 0, 0);
508
- }
509
- }
510
-
511
- .fadeInRight {
512
- -webkit-animation-name: fadeInRight;
513
- animation-name: fadeInRight;
514
- }
515
-
516
- @-webkit-keyframes fadeInRightBig {
517
- from {
518
- opacity: 0;
519
- -webkit-transform: translate3d(2000px, 0, 0);
520
- transform: translate3d(2000px, 0, 0);
521
- }
522
-
523
- to {
524
- opacity: 1;
525
- -webkit-transform: translate3d(0, 0, 0);
526
- transform: translate3d(0, 0, 0);
527
- }
528
- }
529
-
530
- @keyframes fadeInRightBig {
531
- from {
532
- opacity: 0;
533
- -webkit-transform: translate3d(2000px, 0, 0);
534
- transform: translate3d(2000px, 0, 0);
535
- }
536
-
537
- to {
538
- opacity: 1;
539
- -webkit-transform: translate3d(0, 0, 0);
540
- transform: translate3d(0, 0, 0);
541
- }
542
- }
543
-
544
- .fadeInRightBig {
545
- -webkit-animation-name: fadeInRightBig;
546
- animation-name: fadeInRightBig;
547
- }
548
-
549
- @-webkit-keyframes fadeInUp {
550
- from {
551
- opacity: 0;
552
- -webkit-transform: translate3d(0, 100%, 0);
553
- transform: translate3d(0, 100%, 0);
554
- }
555
-
556
- to {
557
- opacity: 1;
558
- -webkit-transform: translate3d(0, 0, 0);
559
- transform: translate3d(0, 0, 0);
560
- }
561
- }
562
-
563
- @keyframes fadeInUp {
564
- from {
565
- opacity: 0;
566
- -webkit-transform: translate3d(0, 100%, 0);
567
- transform: translate3d(0, 100%, 0);
568
- }
569
-
570
- to {
571
- opacity: 1;
572
- -webkit-transform: translate3d(0, 0, 0);
573
- transform: translate3d(0, 0, 0);
574
- }
575
- }
576
-
577
- .fadeInUp {
578
- -webkit-animation-name: fadeInUp;
579
- animation-name: fadeInUp;
580
- }
581
-
582
- @-webkit-keyframes fadeInUpBig {
583
- from {
584
- opacity: 0;
585
- -webkit-transform: translate3d(0, 2000px, 0);
586
- transform: translate3d(0, 2000px, 0);
587
- }
588
-
589
- to {
590
- opacity: 1;
591
- -webkit-transform: translate3d(0, 0, 0);
592
- transform: translate3d(0, 0, 0);
593
- }
594
- }
595
-
596
- @keyframes fadeInUpBig {
597
- from {
598
- opacity: 0;
599
- -webkit-transform: translate3d(0, 2000px, 0);
600
- transform: translate3d(0, 2000px, 0);
601
- }
602
-
603
- to {
604
- opacity: 1;
605
- -webkit-transform: translate3d(0, 0, 0);
606
- transform: translate3d(0, 0, 0);
607
- }
608
- }
609
-
610
- .fadeInUpBig {
611
- -webkit-animation-name: fadeInUpBig;
612
- animation-name: fadeInUpBig;
613
- }
614
-
615
- @-webkit-keyframes fadeOut {
616
- from {
617
- opacity: 1;
618
- }
619
-
620
- to {
621
- opacity: 0;
622
- }
623
- }
624
-
625
- @keyframes fadeOut {
626
- from {
627
- opacity: 1;
628
- }
629
-
630
- to {
631
- opacity: 0;
632
- }
633
- }
634
-
635
- .fadeOut {
636
- -webkit-animation-name: fadeOut;
637
- animation-name: fadeOut;
638
- }
639
-
640
- @-webkit-keyframes fadeOutDown {
641
- from {
642
- opacity: 1;
643
- }
644
-
645
- to {
646
- opacity: 0;
647
- -webkit-transform: translate3d(0, 100%, 0);
648
- transform: translate3d(0, 100%, 0);
649
- }
650
- }
651
-
652
- @keyframes fadeOutDown {
653
- from {
654
- opacity: 1;
655
- }
656
-
657
- to {
658
- opacity: 0;
659
- -webkit-transform: translate3d(0, 100%, 0);
660
- transform: translate3d(0, 100%, 0);
661
- }
662
- }
663
-
664
- .fadeOutDown {
665
- -webkit-animation-name: fadeOutDown;
666
- animation-name: fadeOutDown;
667
- }
668
-
669
- @-webkit-keyframes fadeOutDownBig {
670
- from {
671
- opacity: 1;
672
- }
673
-
674
- to {
675
- opacity: 0;
676
- -webkit-transform: translate3d(0, 2000px, 0);
677
- transform: translate3d(0, 2000px, 0);
678
- }
679
- }
680
-
681
- @keyframes fadeOutDownBig {
682
- from {
683
- opacity: 1;
684
- }
685
-
686
- to {
687
- opacity: 0;
688
- -webkit-transform: translate3d(0, 2000px, 0);
689
- transform: translate3d(0, 2000px, 0);
690
- }
691
- }
692
-
693
- .fadeOutDownBig {
694
- -webkit-animation-name: fadeOutDownBig;
695
- animation-name: fadeOutDownBig;
696
- }
697
-
698
- @-webkit-keyframes fadeOutLeft {
699
- from {
700
- opacity: 1;
701
- }
702
-
703
- to {
704
- opacity: 0;
705
- -webkit-transform: translate3d(-100%, 0, 0);
706
- transform: translate3d(-100%, 0, 0);
707
- }
708
- }
709
-
710
- @keyframes fadeOutLeft {
711
- from {
712
- opacity: 1;
713
- }
714
-
715
- to {
716
- opacity: 0;
717
- -webkit-transform: translate3d(-100%, 0, 0);
718
- transform: translate3d(-100%, 0, 0);
719
- }
720
- }
721
-
722
- .fadeOutLeft {
723
- -webkit-animation-name: fadeOutLeft;
724
- animation-name: fadeOutLeft;
725
- }
726
-
727
- @-webkit-keyframes fadeOutLeftBig {
728
- from {
729
- opacity: 1;
730
- }
731
-
732
- to {
733
- opacity: 0;
734
- -webkit-transform: translate3d(-2000px, 0, 0);
735
- transform: translate3d(-2000px, 0, 0);
736
- }
737
- }
738
-
739
- @keyframes fadeOutLeftBig {
740
- from {
741
- opacity: 1;
742
- }
743
-
744
- to {
745
- opacity: 0;
746
- -webkit-transform: translate3d(-2000px, 0, 0);
747
- transform: translate3d(-2000px, 0, 0);
748
- }
749
- }
750
-
751
- .fadeOutLeftBig {
752
- -webkit-animation-name: fadeOutLeftBig;
753
- animation-name: fadeOutLeftBig;
754
- }
755
-
756
- @-webkit-keyframes fadeOutRight {
757
- from {
758
- opacity: 1;
759
- }
760
-
761
- to {
762
- opacity: 0;
763
- -webkit-transform: translate3d(100%, 0, 0);
764
- transform: translate3d(100%, 0, 0);
765
- }
766
- }
767
-
768
- @keyframes fadeOutRight {
769
- from {
770
- opacity: 1;
771
- }
772
-
773
- to {
774
- opacity: 0;
775
- -webkit-transform: translate3d(100%, 0, 0);
776
- transform: translate3d(100%, 0, 0);
777
- }
778
- }
779
-
780
- .fadeOutRight {
781
- -webkit-animation-name: fadeOutRight;
782
- animation-name: fadeOutRight;
783
- }
784
-
785
- @-webkit-keyframes fadeOutRightBig {
786
- from {
787
- opacity: 1;
788
- }
789
-
790
- to {
791
- opacity: 0;
792
- -webkit-transform: translate3d(2000px, 0, 0);
793
- transform: translate3d(2000px, 0, 0);
794
- }
795
- }
796
-
797
- @keyframes fadeOutRightBig {
798
- from {
799
- opacity: 1;
800
- }
801
-
802
- to {
803
- opacity: 0;
804
- -webkit-transform: translate3d(2000px, 0, 0);
805
- transform: translate3d(2000px, 0, 0);
806
- }
807
- }
808
-
809
- .fadeOutRightBig {
810
- -webkit-animation-name: fadeOutRightBig;
811
- animation-name: fadeOutRightBig;
812
- }
813
-
814
- @-webkit-keyframes fadeOutUp {
815
- from {
816
- opacity: 1;
817
- }
818
-
819
- to {
820
- opacity: 0;
821
- -webkit-transform: translate3d(0, -100%, 0);
822
- transform: translate3d(0, -100%, 0);
823
- }
824
- }
825
-
826
- @keyframes fadeOutUp {
827
- from {
828
- opacity: 1;
829
- }
830
-
831
- to {
832
- opacity: 0;
833
- -webkit-transform: translate3d(0, -100%, 0);
834
- transform: translate3d(0, -100%, 0);
835
- }
836
- }
837
-
838
- .fadeOutUp {
839
- -webkit-animation-name: fadeOutUp;
840
- animation-name: fadeOutUp;
841
- }
842
-
843
- @-webkit-keyframes fadeOutUpBig {
844
- from {
845
- opacity: 1;
846
- }
847
-
848
- to {
849
- opacity: 0;
850
- -webkit-transform: translate3d(0, -2000px, 0);
851
- transform: translate3d(0, -2000px, 0);
852
- }
853
- }
854
-
855
- @keyframes fadeOutUpBig {
856
- from {
857
- opacity: 1;
858
- }
859
-
860
- to {
861
- opacity: 0;
862
- -webkit-transform: translate3d(0, -2000px, 0);
863
- transform: translate3d(0, -2000px, 0);
864
- }
865
- }
866
-
867
- .fadeOutUpBig {
868
- -webkit-animation-name: fadeOutUpBig;
869
- animation-name: fadeOutUpBig;
870
- }
871
-
872
- @-webkit-keyframes slideInDown {
873
- from {
874
- -webkit-transform: translate3d(0, -100%, 0);
875
- transform: translate3d(0, -100%, 0);
876
- visibility: visible;
877
- }
878
-
879
- to {
880
- -webkit-transform: translate3d(0, 0, 0);
881
- transform: translate3d(0, 0, 0);
882
- }
883
- }
884
-
885
- @keyframes slideInDown {
886
- from {
887
- -webkit-transform: translate3d(0, -100%, 0);
888
- transform: translate3d(0, -100%, 0);
889
- visibility: visible;
890
- }
891
-
892
- to {
893
- -webkit-transform: translate3d(0, 0, 0);
894
- transform: translate3d(0, 0, 0);
895
- }
896
- }
897
-
898
- .slideInDown {
899
- -webkit-animation-name: slideInDown;
900
- animation-name: slideInDown;
901
- }
902
-
903
- @-webkit-keyframes slideInLeft {
904
- from {
905
- -webkit-transform: translate3d(-100%, 0, 0);
906
- transform: translate3d(-100%, 0, 0);
907
- visibility: visible;
908
- }
909
-
910
- to {
911
- -webkit-transform: translate3d(0, 0, 0);
912
- transform: translate3d(0, 0, 0);
913
- }
914
- }
915
-
916
- @keyframes slideInLeft {
917
- from {
918
- -webkit-transform: translate3d(-100%, 0, 0);
919
- transform: translate3d(-100%, 0, 0);
920
- visibility: visible;
921
- }
922
-
923
- to {
924
- -webkit-transform: translate3d(0, 0, 0);
925
- transform: translate3d(0, 0, 0);
926
- }
927
- }
928
-
929
- .slideInLeft {
930
- -webkit-animation-name: slideInLeft;
931
- animation-name: slideInLeft;
932
- }
933
-
934
- @-webkit-keyframes slideInRight {
935
- from {
936
- -webkit-transform: translate3d(100%, 0, 0);
937
- transform: translate3d(100%, 0, 0);
938
- visibility: visible;
939
- }
940
-
941
- to {
942
- -webkit-transform: translate3d(0, 0, 0);
943
- transform: translate3d(0, 0, 0);
944
- }
945
- }
946
-
947
- @keyframes slideInRight {
948
- from {
949
- -webkit-transform: translate3d(100%, 0, 0);
950
- transform: translate3d(100%, 0, 0);
951
- visibility: visible;
952
- }
953
-
954
- to {
955
- -webkit-transform: translate3d(0, 0, 0);
956
- transform: translate3d(0, 0, 0);
957
- }
958
- }
959
-
960
- .slideInRight {
961
- -webkit-animation-name: slideInRight;
962
- animation-name: slideInRight;
963
- }
964
-
965
- @-webkit-keyframes slideInUp {
966
- from {
967
- -webkit-transform: translate3d(0, 100%, 0);
968
- transform: translate3d(0, 100%, 0);
969
- visibility: visible;
970
- }
971
-
972
- to {
973
- -webkit-transform: translate3d(0, 0, 0);
974
- transform: translate3d(0, 0, 0);
975
- }
976
- }
977
-
978
- @keyframes slideInUp {
979
- from {
980
- -webkit-transform: translate3d(0, 100%, 0);
981
- transform: translate3d(0, 100%, 0);
982
- visibility: visible;
983
- }
984
-
985
- to {
986
- -webkit-transform: translate3d(0, 0, 0);
987
- transform: translate3d(0, 0, 0);
988
- }
989
- }
990
-
991
- .slideInUp {
992
- -webkit-animation-name: slideInUp;
993
- animation-name: slideInUp;
994
- }
995
-
996
- @-webkit-keyframes slideOutDown {
997
- from {
998
- -webkit-transform: translate3d(0, 0, 0);
999
- transform: translate3d(0, 0, 0);
1000
- }
1001
-
1002
- to {
1003
- visibility: hidden;
1004
- -webkit-transform: translate3d(0, 100%, 0);
1005
- transform: translate3d(0, 100%, 0);
1006
- }
1007
- }
1008
-
1009
- @keyframes slideOutDown {
1010
- from {
1011
- -webkit-transform: translate3d(0, 0, 0);
1012
- transform: translate3d(0, 0, 0);
1013
- }
1014
-
1015
- to {
1016
- visibility: hidden;
1017
- -webkit-transform: translate3d(0, 100%, 0);
1018
- transform: translate3d(0, 100%, 0);
1019
- }
1020
- }
1021
-
1022
- .slideOutDown {
1023
- -webkit-animation-name: slideOutDown;
1024
- animation-name: slideOutDown;
1025
- }
1026
-
1027
- @-webkit-keyframes slideOutLeft {
1028
- from {
1029
- -webkit-transform: translate3d(0, 0, 0);
1030
- transform: translate3d(0, 0, 0);
1031
- }
1032
-
1033
- to {
1034
- visibility: hidden;
1035
- -webkit-transform: translate3d(-100%, 0, 0);
1036
- transform: translate3d(-100%, 0, 0);
1037
- }
1038
- }
1039
-
1040
- @keyframes slideOutLeft {
1041
- from {
1042
- -webkit-transform: translate3d(0, 0, 0);
1043
- transform: translate3d(0, 0, 0);
1044
- }
1045
-
1046
- to {
1047
- visibility: hidden;
1048
- -webkit-transform: translate3d(-100%, 0, 0);
1049
- transform: translate3d(-100%, 0, 0);
1050
- }
1051
- }
1052
-
1053
- .slideOutLeft {
1054
- -webkit-animation-name: slideOutLeft;
1055
- animation-name: slideOutLeft;
1056
- }
1057
-
1058
- @-webkit-keyframes slideOutRight {
1059
- from {
1060
- -webkit-transform: translate3d(0, 0, 0);
1061
- transform: translate3d(0, 0, 0);
1062
- }
1063
-
1064
- to {
1065
- visibility: hidden;
1066
- -webkit-transform: translate3d(100%, 0, 0);
1067
- transform: translate3d(100%, 0, 0);
1068
- }
1069
- }
1070
-
1071
- @keyframes slideOutRight {
1072
- from {
1073
- -webkit-transform: translate3d(0, 0, 0);
1074
- transform: translate3d(0, 0, 0);
1075
- }
1076
-
1077
- to {
1078
- visibility: hidden;
1079
- -webkit-transform: translate3d(100%, 0, 0);
1080
- transform: translate3d(100%, 0, 0);
1081
- }
1082
- }
1083
-
1084
- .slideOutRight {
1085
- -webkit-animation-name: slideOutRight;
1086
- animation-name: slideOutRight;
1087
- }
1088
-
1089
- @-webkit-keyframes slideOutUp {
1090
- from {
1091
- -webkit-transform: translate3d(0, 0, 0);
1092
- transform: translate3d(0, 0, 0);
1093
- }
1094
-
1095
- to {
1096
- visibility: hidden;
1097
- -webkit-transform: translate3d(0, -100%, 0);
1098
- transform: translate3d(0, -100%, 0);
1099
- }
1100
- }
1101
-
1102
- @keyframes slideOutUp {
1103
- from {
1104
- -webkit-transform: translate3d(0, 0, 0);
1105
- transform: translate3d(0, 0, 0);
1106
- }
1107
-
1108
- to {
1109
- visibility: hidden;
1110
- -webkit-transform: translate3d(0, -100%, 0);
1111
- transform: translate3d(0, -100%, 0);
1112
- }
1113
- }
1114
-
1115
- .slideOutUp {
1116
- -webkit-animation-name: slideOutUp;
1117
- animation-name: slideOutUp;
1118
- }
1119
-
1120
- @keyframes zoomIn {
1121
- from {
1122
- opacity: 0;
1123
- transform: scale3d(0.3, 0.3, 0.3);
1124
- }
1125
-
1126
- 50% {
1127
- opacity: 1;
1128
- }
1129
- }
1130
-
1131
- .zoomIn {
1132
- animation-name: zoomIn;
1133
- }