elabs 4.0.0 → 5.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (313) hide show
  1. checksums.yaml +4 -4
  2. data/.gitlab-ci.yml +9 -0
  3. data/.node-version +1 -1
  4. data/.rubocop.yml +4 -0
  5. data/.stylelintrc.yml +12 -2
  6. data/CHANGELOG.md +81 -12
  7. data/Gemfile +1 -1
  8. data/Gemfile.lock +96 -94
  9. data/README.md +2 -0
  10. data/ROADMAP.md +4 -2
  11. data/app/assets/config/elabs_manifest.js +2 -1
  12. data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.eot +0 -0
  13. data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.svg +1148 -0
  14. data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.ttf +0 -0
  15. data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.woff +0 -0
  16. data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.woff2 +0 -0
  17. data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.eot +0 -0
  18. data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.svg +467 -0
  19. data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.ttf +0 -0
  20. data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.woff +0 -0
  21. data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.woff2 +0 -0
  22. data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.eot +0 -0
  23. data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.svg +2231 -0
  24. data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.ttf +0 -0
  25. data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.woff +0 -0
  26. data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.woff2 +0 -0
  27. data/app/assets/fonts/elabs/OpenSans/Apache License.txt +201 -0
  28. data/app/assets/fonts/elabs/OpenSans/OpenSans-Bold.ttf +0 -0
  29. data/app/assets/fonts/elabs/OpenSans/OpenSans-Light.ttf +0 -0
  30. data/app/assets/fonts/elabs/OpenSans/OpenSans-Regular.ttf +0 -0
  31. data/app/assets/fonts/elabs/OpenSans/OpenSans-Semibold.ttf +0 -0
  32. data/app/assets/fonts/elabs/license-icons/license-icons.eot +0 -0
  33. data/app/assets/fonts/elabs/license-icons/license-icons.svg +51 -0
  34. data/app/assets/fonts/elabs/license-icons/license-icons.ttf +0 -0
  35. data/app/assets/fonts/elabs/license-icons/license-icons.woff +0 -0
  36. data/app/assets/fonts/elabs/license-icons/license-icons.woff2 +0 -0
  37. data/app/assets/images/elabs/preview_placeholder.png +0 -0
  38. data/app/assets/images/elabs/preview_placeholder_nsfw.png +0 -0
  39. data/app/assets/javascripts/elabs/announcements.js +33 -0
  40. data/app/assets/javascripts/elabs/application.js.erb +17 -14
  41. data/app/assets/javascripts/elabs/forms.js +0 -1
  42. data/app/assets/javascripts/elabs/helpers-markdown.js +2 -2
  43. data/app/assets/javascripts/elabs/helpers.js +17 -0
  44. data/app/assets/javascripts/elabs/menu.js +5 -0
  45. data/app/assets/stylesheets/elabs/_fonts.scss +32 -0
  46. data/app/assets/stylesheets/elabs/_variables.scss +286 -5
  47. data/app/assets/stylesheets/elabs/app/components/_act.scss +83 -0
  48. data/app/assets/stylesheets/elabs/app/components/_announcement.scss +41 -0
  49. data/app/assets/stylesheets/elabs/app/components/_classifier_types.scss +43 -0
  50. data/app/assets/stylesheets/elabs/app/components/_comment.scss +29 -0
  51. data/app/assets/stylesheets/elabs/app/components/_content_relations.scss +53 -0
  52. data/app/assets/stylesheets/elabs/app/components/_content_statuses.scss +39 -0
  53. data/app/assets/stylesheets/elabs/app/components/_content_types.scss +41 -0
  54. data/app/assets/stylesheets/elabs/app/components/_git_cards.scss +122 -0
  55. data/app/assets/stylesheets/elabs/app/elements/_alerts.scss +3 -0
  56. data/app/assets/stylesheets/elabs/app/elements/_badges.scss +17 -0
  57. data/app/assets/stylesheets/elabs/app/elements/_buttons.scss +34 -0
  58. data/app/assets/stylesheets/elabs/app/elements/_dropdowns.scss +78 -0
  59. data/app/assets/stylesheets/elabs/app/elements/_empty.scss +31 -0
  60. data/app/assets/stylesheets/elabs/app/elements/_errors.scss +15 -0
  61. data/app/assets/stylesheets/elabs/app/elements/_filter_link.scss +23 -0
  62. data/app/assets/stylesheets/elabs/app/elements/_fixed_links.scss +19 -0
  63. data/app/assets/stylesheets/elabs/app/elements/_forms.scss +123 -0
  64. data/app/assets/stylesheets/elabs/app/elements/_icons.scss +74 -0
  65. data/app/assets/stylesheets/elabs/app/{_medias.scss → elements/_medias.scss} +2 -0
  66. data/app/assets/stylesheets/elabs/app/{_modals.scss → elements/_modals.scss} +8 -4
  67. data/app/assets/stylesheets/elabs/app/elements/_nsfw.scss +41 -0
  68. data/app/assets/stylesheets/elabs/app/{_pagination.scss → elements/_pagination.scss} +0 -0
  69. data/app/assets/stylesheets/elabs/app/{_tables.scss → elements/_tables.scss} +2 -2
  70. data/app/assets/stylesheets/elabs/app/elements/_tabs.scss +73 -0
  71. data/app/assets/stylesheets/elabs/app/helpers/_cards.scss +80 -0
  72. data/app/assets/stylesheets/elabs/app/helpers/_containers.scss +7 -0
  73. data/app/assets/stylesheets/elabs/app/helpers/_states.scss +3 -0
  74. data/app/assets/stylesheets/elabs/app/{_helpers.scss → helpers/_typo.scss} +6 -4
  75. data/app/assets/stylesheets/elabs/app/layouts/_acts.scss +25 -0
  76. data/app/assets/stylesheets/elabs/app/layouts/_classifiers.scss +32 -0
  77. data/app/assets/stylesheets/elabs/app/{_comments.scss → layouts/_comments.scss} +0 -2
  78. data/app/assets/stylesheets/elabs/app/layouts/_devise.scss +65 -0
  79. data/app/assets/stylesheets/elabs/app/layouts/_layout.scss +40 -0
  80. data/app/assets/stylesheets/elabs/app/layouts/_page.scss +14 -0
  81. data/app/assets/stylesheets/elabs/app/layouts/_page_content.scss +13 -0
  82. data/app/assets/stylesheets/elabs/app/layouts/_page_footer.scss +20 -0
  83. data/app/assets/stylesheets/elabs/app/layouts/_page_header.scss +146 -0
  84. data/app/assets/stylesheets/elabs/app/layouts/_page_menu.scss +232 -0
  85. data/app/assets/stylesheets/elabs/app/layouts/_page_messages.scss +4 -0
  86. data/app/assets/stylesheets/elabs/app/layouts/_private_layout.scss +78 -0
  87. data/app/assets/stylesheets/elabs/app/{_typo.scss → layouts/_typo.scss} +3 -0
  88. data/app/assets/stylesheets/elabs/app/mixins/_classifier_card.scss +43 -0
  89. data/app/assets/stylesheets/elabs/app/mixins/_content_card.scss +103 -0
  90. data/app/assets/stylesheets/elabs/app/mixins/_content_full.scss +158 -0
  91. data/app/assets/stylesheets/elabs/app/mixins/{_content-inline.scss → _content_inline.scss} +0 -0
  92. data/app/assets/stylesheets/elabs/lib/_codemirror.scss +2 -2
  93. data/app/assets/stylesheets/elabs/{_colors.scss → lib/_colors_reference.scss} +0 -52
  94. data/app/assets/stylesheets/elabs/lib/_license_icons.scss +121 -0
  95. data/app/assets/stylesheets/elabs/lib/fontawesome/_fontawesome.scss +1 -1
  96. data/app/assets/stylesheets/elabs/lib/fontawesome/_fonts.scss +18 -18
  97. data/app/assets/stylesheets/elabs/lib/knacss/_knacss.scss +1 -1
  98. data/app/assets/stylesheets/elabs/lib/knacss/_knacss_variables.scss +227 -0
  99. data/app/assets/stylesheets/elabs/style.scss +62 -57
  100. data/app/controllers/elabs/admin/admin_application_controller.rb +1 -1
  101. data/app/controllers/elabs/admin/announcements_controller.rb +71 -0
  102. data/app/controllers/elabs/concerns/elabs_controller.rb +3 -0
  103. data/app/controllers/elabs/content_application_controller.rb +4 -0
  104. data/app/controllers/elabs/elabs_public_controller.rb +15 -0
  105. data/app/controllers/elabs/languages_controller.rb +1 -5
  106. data/app/controllers/elabs/member/comments_controller.rb +42 -0
  107. data/app/controllers/elabs/member/member_application_controller.rb +1 -1
  108. data/app/controllers/elabs/reports_controller.rb +2 -0
  109. data/app/helpers/elabs/acts_helper.rb +7 -2
  110. data/app/helpers/elabs/application_helper.rb +8 -50
  111. data/app/helpers/elabs/content_filters_helper.rb +17 -24
  112. data/app/helpers/elabs/content_helper.rb +8 -35
  113. data/app/helpers/elabs/content_renderer_helper.rb +4 -112
  114. data/app/helpers/elabs/form_helper.rb +11 -11
  115. data/app/helpers/elabs/icons_helper.rb +63 -0
  116. data/app/helpers/elabs/{admin_content_helper.rb → links_admin_helper.rb} +1 -1
  117. data/app/helpers/elabs/links_helper.rb +58 -0
  118. data/app/helpers/elabs/{member_content_helper.rb → links_member_helper.rb} +2 -2
  119. data/app/helpers/elabs/notification_helper.rb +17 -3
  120. data/app/helpers/elabs/shortcodes_helper.rb +108 -0
  121. data/app/helpers/elabs/thumbnails_helper.rb +1 -1
  122. data/app/models/elabs/album.rb +14 -0
  123. data/app/models/elabs/announcement.rb +33 -0
  124. data/app/models/elabs/article.rb +14 -0
  125. data/app/models/elabs/comment.rb +10 -4
  126. data/app/models/elabs/note.rb +14 -0
  127. data/app/models/elabs/project.rb +12 -0
  128. data/app/models/elabs/report.rb +1 -0
  129. data/app/models/elabs/upload.rb +16 -0
  130. data/app/models/elabs/user.rb +2 -1
  131. data/app/views/elabs/acts/_filters.html.haml +3 -2
  132. data/app/views/elabs/acts/index.html.haml +2 -13
  133. data/app/views/elabs/admin/announcements/_announcement.json.jbuilder +10 -0
  134. data/app/views/elabs/admin/announcements/_form.html.haml +52 -0
  135. data/app/views/elabs/admin/announcements/edit.html.haml +3 -0
  136. data/app/views/elabs/admin/announcements/index.html.haml +28 -0
  137. data/app/views/elabs/admin/announcements/index.json.jbuilder +1 -0
  138. data/app/views/elabs/admin/announcements/new.html.haml +3 -0
  139. data/app/views/elabs/admin/licenses/index.html.haml +2 -2
  140. data/app/views/elabs/admin/uploads/_upload.json.jbuilder +3 -3
  141. data/app/views/elabs/albums/_card_content.html.haml +8 -0
  142. data/app/views/elabs/albums/_filters.html.haml +5 -3
  143. data/app/views/elabs/albums/index.html.haml +1 -1
  144. data/app/views/elabs/albums/show.html.haml +38 -29
  145. data/app/views/elabs/articles/_filters.html.haml +5 -3
  146. data/app/views/elabs/articles/index.html.haml +1 -1
  147. data/app/views/elabs/articles/show.html.haml +33 -25
  148. data/app/views/elabs/auth/confirmations/new.html.haml +1 -1
  149. data/app/views/elabs/auth/passwords/edit.html.haml +1 -1
  150. data/app/views/elabs/auth/passwords/new.html.haml +1 -1
  151. data/app/views/elabs/auth/registrations/new.html.haml +7 -2
  152. data/app/views/elabs/auth/sessions/_new.html.haml +1 -1
  153. data/app/views/elabs/auth/unlocks/new.html.haml +1 -1
  154. data/app/views/elabs/comments/_comments.html.haml +29 -20
  155. data/app/views/elabs/comments/_form.html.haml +40 -36
  156. data/app/views/elabs/languages/_filters.html.haml +3 -5
  157. data/app/views/elabs/languages/index.html.haml +12 -13
  158. data/app/views/elabs/languages/show.html.haml +36 -31
  159. data/app/views/elabs/layouts/_announcements.html.haml +9 -0
  160. data/app/views/elabs/layouts/_content_associations.html.haml +89 -0
  161. data/app/views/elabs/layouts/_content_card.html.haml +41 -0
  162. data/app/views/elabs/layouts/_flash_messages.html.haml +4 -0
  163. data/app/views/elabs/layouts/_footer.html.haml +18 -10
  164. data/app/views/elabs/layouts/_form_honeypot.html.haml +12 -0
  165. data/app/views/elabs/layouts/_hidden_entry.html.haml +1 -1
  166. data/app/views/elabs/layouts/_hidden_entry_full.html.haml +4 -2
  167. data/app/views/elabs/layouts/_hidden_entry_inline.html.haml +1 -1
  168. data/app/views/elabs/layouts/_language_menu.html.haml +2 -2
  169. data/app/views/elabs/layouts/_menu.html.haml +58 -75
  170. data/app/views/elabs/layouts/_menu_admin.html.haml +40 -0
  171. data/app/views/elabs/layouts/_menu_member.html.haml +57 -0
  172. data/app/views/elabs/layouts/application.html.haml +24 -13
  173. data/app/views/elabs/layouts/application_admin.html.haml +33 -0
  174. data/app/views/elabs/layouts/application_member.html.haml +36 -0
  175. data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_albums.html.haml +0 -0
  176. data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_projects.html.haml +0 -0
  177. data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_tags.html.haml +0 -0
  178. data/app/views/elabs/layouts/{_shortcode_infinite_loop.html.haml → shortcodes/_infinite_loop.html.haml} +1 -1
  179. data/app/views/elabs/layouts/{_shortcode_infinite_loop_inline.html.haml → shortcodes/_infinite_loop_inline.html.haml} +0 -0
  180. data/app/views/elabs/layouts/{_shortcode_missing_content.html.haml → shortcodes/_missing_content.html.haml} +1 -1
  181. data/app/views/elabs/layouts/{_shortcode_missing_content_inline.html.haml → shortcodes/_missing_content_inline.html.haml} +0 -0
  182. data/app/views/elabs/layouts/shortcodes/_open_to_see.html.haml +2 -0
  183. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_repo_card.html.haml +1 -1
  184. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_repo_inline.html.haml +0 -0
  185. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_user_card.html.haml +0 -0
  186. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_group_card.html.haml +1 -1
  187. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_repo_card.html.haml +1 -1
  188. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_repo_inline.html.haml +0 -0
  189. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_user_card.html.haml +1 -1
  190. data/app/views/elabs/layouts/shortcodes/widgets/vue/_all_widgets.html.haml +5 -0
  191. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_github_repo_card_vue.html.haml +8 -8
  192. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_github_user_card_vue.html.haml +5 -5
  193. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_group_card_vue.html.haml +5 -5
  194. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_repo_card_vue.html.haml +8 -8
  195. data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_user_card_vue.html.haml +4 -4
  196. data/app/views/elabs/licenses/_filters.html.haml +3 -2
  197. data/app/views/elabs/licenses/index.html.haml +14 -12
  198. data/app/views/elabs/licenses/show.html.haml +40 -34
  199. data/app/views/elabs/member/albums/_form.html.haml +1 -43
  200. data/app/views/elabs/member/articles/_form.html.haml +1 -39
  201. data/app/views/elabs/member/layouts/_form_commons.html.haml +55 -0
  202. data/app/views/elabs/member/notes/_form.html.haml +1 -39
  203. data/app/views/elabs/member/preferences/edit.html.haml +1 -2
  204. data/app/views/elabs/member/projects/_form.html.haml +3 -38
  205. data/app/views/elabs/member/uploads/_form.html.haml +1 -42
  206. data/app/views/elabs/member/uploads/_upload.json.jbuilder +3 -3
  207. data/app/views/elabs/member/users/edit.html.haml +3 -4
  208. data/app/views/elabs/notes/_filters.html.haml +5 -3
  209. data/app/views/elabs/notes/index.html.haml +1 -1
  210. data/app/views/elabs/notes/show.html.haml +33 -25
  211. data/app/views/elabs/projects/_filters.html.haml +5 -3
  212. data/app/views/elabs/projects/index.html.haml +1 -1
  213. data/app/views/elabs/projects/show.html.haml +68 -62
  214. data/app/views/elabs/reports/_form.html.haml +2 -0
  215. data/app/views/elabs/tags/_filters.html.haml +3 -2
  216. data/app/views/elabs/tags/index.html.haml +11 -11
  217. data/app/views/elabs/tags/show.html.haml +31 -28
  218. data/app/views/elabs/uploads/_filters.html.haml +5 -3
  219. data/app/views/elabs/uploads/_preview.html.haml +5 -4
  220. data/app/views/elabs/uploads/_thumbnail.html.haml +9 -0
  221. data/app/views/elabs/uploads/_upload.json.jbuilder +3 -3
  222. data/app/views/elabs/uploads/index.html.haml +1 -1
  223. data/app/views/elabs/uploads/show.html.haml +45 -39
  224. data/app/views/elabs/users/_filters.html.haml +3 -2
  225. data/app/views/elabs/users/_user.html.haml +3 -3
  226. data/app/views/elabs/users/show.html.haml +48 -43
  227. data/config/routes.rb +13 -8
  228. data/db/migrate/20181025084232_add_archived_field_to_comments.rb +5 -0
  229. data/db/migrate/20181026071743_delete_comment_notifications.rb +5 -0
  230. data/db/migrate/20181030063505_create_announcements.rb +14 -0
  231. data/docs/CODEOWNERS +10 -0
  232. data/docs/migrating.md +16 -1
  233. data/docs/shortcodes_guide.md +51 -0
  234. data/lib/assets/javascripts/README-highlight.js.md +5 -5
  235. data/lib/assets/javascripts/highlight.js-9.13.1/highlight.pack.js +2 -0
  236. data/lib/assets/stylesheets/{highlight.js-9.12.0 → highlight.js-9.13.1}/styles/atelier-sulphurpool-light.css +0 -0
  237. data/lib/elabs.rb +8 -0
  238. data/lib/elabs/version.rb +1 -1
  239. data/lib/generators/elabs/{devise_views_generator.rb → devise_mailer_views_generator.rb} +2 -2
  240. data/lib/generators/elabs/images_generator.rb +24 -0
  241. data/lib/generators/elabs/required_assets_generator.rb +0 -2
  242. data/lib/generators/templates/elabs.rb +3 -0
  243. data/locale/app.pot +132 -19
  244. data/locale/en/app.edit.po +130 -17
  245. data/locale/en/app.po +130 -17
  246. data/locale/fr/app.edit.po +145 -28
  247. data/locale/fr/app.po +141 -27
  248. data/package.json +10 -12
  249. data/yarn.lock +885 -668
  250. metadata +136 -97
  251. data/app/assets/stylesheets/elabs/_icons.scss +0 -17
  252. data/app/assets/stylesheets/elabs/app/_acts.scss +0 -69
  253. data/app/assets/stylesheets/elabs/app/_alerts.scss +0 -3
  254. data/app/assets/stylesheets/elabs/app/_badges.scss +0 -11
  255. data/app/assets/stylesheets/elabs/app/_buttons.scss +0 -29
  256. data/app/assets/stylesheets/elabs/app/_content.scss +0 -25
  257. data/app/assets/stylesheets/elabs/app/_content_statuses.scss +0 -32
  258. data/app/assets/stylesheets/elabs/app/_content_uploads.scss +0 -39
  259. data/app/assets/stylesheets/elabs/app/_empty.scss +0 -19
  260. data/app/assets/stylesheets/elabs/app/_errors.scss +0 -9
  261. data/app/assets/stylesheets/elabs/app/_filter_links.scss +0 -27
  262. data/app/assets/stylesheets/elabs/app/_forms.scss +0 -74
  263. data/app/assets/stylesheets/elabs/app/_languages.scss +0 -6
  264. data/app/assets/stylesheets/elabs/app/_layout.scss +0 -206
  265. data/app/assets/stylesheets/elabs/app/_licenses.scss +0 -6
  266. data/app/assets/stylesheets/elabs/app/_link-to-top.scss +0 -8
  267. data/app/assets/stylesheets/elabs/app/_tabs.scss +0 -54
  268. data/app/assets/stylesheets/elabs/app/_tags.scss +0 -6
  269. data/app/assets/stylesheets/elabs/app/_toolbars.scss +0 -3
  270. data/app/assets/stylesheets/elabs/app/_users.scss +0 -21
  271. data/app/assets/stylesheets/elabs/app/admin-members/_forms.scss +0 -13
  272. data/app/assets/stylesheets/elabs/app/admin-members/_indexes.scss +0 -46
  273. data/app/assets/stylesheets/elabs/app/admin-members/_layout.scss +0 -17
  274. data/app/assets/stylesheets/elabs/app/areas/_devise.scss +0 -31
  275. data/app/assets/stylesheets/elabs/app/components/_cards.scss +0 -16
  276. data/app/assets/stylesheets/elabs/app/components/_container.scss +0 -4
  277. data/app/assets/stylesheets/elabs/app/mixins/_classifier-card.scss +0 -16
  278. data/app/assets/stylesheets/elabs/app/mixins/_content-card.scss +0 -72
  279. data/app/assets/stylesheets/elabs/app/mixins/_content-full.scss +0 -77
  280. data/app/assets/stylesheets/elabs/app/widgets/_git-cards.scss +0 -88
  281. data/app/assets/stylesheets/elabs/lib/fontawesome/_icons.scss +0 -1118
  282. data/app/assets/stylesheets/elabs/lib/knacss/_knacss-variables.scss +0 -239
  283. data/app/views/elabs/albums/_album.html.haml +0 -38
  284. data/app/views/elabs/articles/_article.html.haml +0 -30
  285. data/app/views/elabs/languages/_associations.html.haml +0 -61
  286. data/app/views/elabs/layouts/_shortcode_open_to_see.html.haml +0 -2
  287. data/app/views/elabs/layouts/admin_application.html.haml +0 -21
  288. data/app/views/elabs/layouts/member_application.html.haml +0 -24
  289. data/app/views/elabs/layouts/widgets/vue/_all_widgets.html.haml +0 -5
  290. data/app/views/elabs/licenses/_associations.html.haml +0 -61
  291. data/app/views/elabs/notes/_note.html.haml +0 -31
  292. data/app/views/elabs/projects/_associations.html.haml +0 -54
  293. data/app/views/elabs/projects/_project.html.haml +0 -29
  294. data/app/views/elabs/tags/_associations.html.haml +0 -61
  295. data/app/views/elabs/uploads/_upload.html.haml +0 -41
  296. data/app/views/elabs/users/_associations.html.haml +0 -61
  297. data/db/seeds.rb +0 -10
  298. data/db/seeds_development.rb +0 -21
  299. data/db/seeds_production.rb +0 -0
  300. data/lib/assets/javascripts/codemirror-5.39.2/addon/mode/overlay.js +0 -90
  301. data/lib/assets/javascripts/codemirror-5.39.2/lib/codemirror.js +0 -9684
  302. data/lib/assets/javascripts/codemirror-5.39.2/mode/clike/clike.js +0 -834
  303. data/lib/assets/javascripts/codemirror-5.39.2/mode/css/css.js +0 -832
  304. data/lib/assets/javascripts/codemirror-5.39.2/mode/gfm/gfm.js +0 -129
  305. data/lib/assets/javascripts/codemirror-5.39.2/mode/htmlmixed/htmlmixed.js +0 -152
  306. data/lib/assets/javascripts/codemirror-5.39.2/mode/javascript/javascript.js +0 -896
  307. data/lib/assets/javascripts/codemirror-5.39.2/mode/markdown/markdown.js +0 -882
  308. data/lib/assets/javascripts/codemirror-5.39.2/mode/meta.js +0 -217
  309. data/lib/assets/javascripts/codemirror-5.39.2/mode/xml/xml.js +0 -402
  310. data/lib/assets/javascripts/highlight.js-9.12.0/highlight.pack.js +0 -2
  311. data/lib/assets/stylesheets/codemirror-5.39.2/lib/codemirror.css +0 -346
  312. data/lib/assets/stylesheets/codemirror-5.39.2/theme/base16-dark.css +0 -38
  313. data/lib/assets/stylesheets/codemirror-5.39.2/theme/base16-light.css +0 -38
@@ -0,0 +1,121 @@
1
+ /* stylelint-disable */
2
+ $li-agpl: "\ea01";
3
+ $li-apache: "\ea02";
4
+ $li-bsd: "\ea03";
5
+ $li-cc: "\ea04";
6
+ $li-cc-0: "\ea05";
7
+ $li-cc-pd: "\ea06";
8
+ $li-copyright: "\ea07";
9
+ $li-gpl: "\ea08";
10
+ $li-lgpl: "\ea09";
11
+ $li-mit: "\ea0a";
12
+ $li-mpl: "\ea0b";
13
+ $li-whitespace: "\ea0c";
14
+ $li-wtfpl: "\ea0d";
15
+
16
+ @font-face {
17
+ font-family: license-icons;
18
+ src: font-url("elabs/license-icons/license-icons.eot");
19
+ src: font-url("elabs/license-icons/license-icons.eot?#iefix") format("embedded-opentype"),
20
+ font-url("elabs/license-icons/license-icons.woff2") format("woff2"),
21
+ font-url("elabs/license-icons/license-icons.woff") format("woff"),
22
+ font-url("elabs/license-icons/license-icons.ttf") format("truetype"),
23
+ font-url("elabs/license-icons/license-icons.svg#license-icons") format("svg");
24
+ font-style: normal;
25
+ font-weight: 400;
26
+ }
27
+
28
+ %li {
29
+ display: inline-block;
30
+ transform: translate(0, 0);
31
+ text-rendering: auto;
32
+ font: normal normal 400 12px/1 license-icons;
33
+ font-size: 1.3em;
34
+ -moz-osx-font-smoothing: grayscale;
35
+ -webkit-font-smoothing: antialiased;
36
+ vertical-align: -15%;
37
+ }
38
+
39
+ .li {
40
+ @extend %li;
41
+ }
42
+
43
+ .li-lg {
44
+ vertical-align: -15%;
45
+ line-height: 0.75em;
46
+ font-size: 1.33333333em;
47
+ }
48
+
49
+ .li-2x {
50
+ font-size: 2em;
51
+ }
52
+
53
+ .li-3x {
54
+ font-size: 3em;
55
+ }
56
+
57
+ .li-4x {
58
+ font-size: 4em;
59
+ }
60
+
61
+ .li-5x {
62
+ font-size: 5em;
63
+ }
64
+
65
+ .li-fw {
66
+ width: 1.28571429em;
67
+ text-align: center;
68
+ }
69
+
70
+ .li-agpl::before {
71
+ content: "\ea01";
72
+ }
73
+
74
+ .li-apache::before {
75
+ content: "\ea02";
76
+ }
77
+
78
+ .li-bsd::before {
79
+ content: "\ea03";
80
+ }
81
+
82
+ .li-cc::before {
83
+ content: "\ea04";
84
+ }
85
+
86
+ .li-cc-0::before {
87
+ content: "\ea05";
88
+ }
89
+
90
+ .li-cc-pd::before {
91
+ content: "\ea06";
92
+ }
93
+
94
+ .li-copyright::before {
95
+ content: "\ea07";
96
+ }
97
+
98
+ .li-gpl::before {
99
+ content: "\ea08";
100
+ }
101
+
102
+ .li-lgpl::before {
103
+ content: "\ea09";
104
+ }
105
+
106
+ .li-mit::before {
107
+ content: "\ea0a";
108
+ }
109
+
110
+ .li-mpl::before {
111
+ content: "\ea0b";
112
+ }
113
+
114
+ .li-whitespace::before {
115
+ content: "\ea0c";
116
+ }
117
+
118
+ .li-wtfpl::before {
119
+ content: "\ea0d";
120
+ }
121
+ /* stylelint-enable */
@@ -22,7 +22,7 @@
22
22
  .fab {
23
23
  font-family: 'Font Awesome 5 Brands';
24
24
  }
25
- @import '@fortawesome/fontawesome-free/scss/variables';
25
+ //@import '@fortawesome/fontawesome-free/scss/variables';
26
26
  @import '@fortawesome/fontawesome-free/scss/mixins';
27
27
  @import '@fortawesome/fontawesome-free/scss/core';
28
28
  @import '@fortawesome/fontawesome-free/scss/larger';
@@ -7,36 +7,36 @@
7
7
  font-family: 'Font Awesome 5 Free';
8
8
  font-style: normal;
9
9
  font-weight: 900;
10
- src: url('#{$fa-font-path}/fa-solid-900.eot');
11
- src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'),
12
- url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
13
- url('#{$fa-font-path}/fa-solid-900.woff') format('woff'),
14
- url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype'),
15
- url('#{$fa-font-path}/fa-solid-900.svg#fontawesome') format('svg');
10
+ src: font-url('#{$fa-font-path}/FontAwesome/fa-solid-900.eot');
11
+ src: font-url('#{$fa-font-path}/FontAwesome/fa-solid-900.eot?#iefix') format('embedded-opentype'),
12
+ font-url('#{$fa-font-path}/FontAwesome/fa-solid-900.woff2') format('woff2'),
13
+ font-url('#{$fa-font-path}/FontAwesome/fa-solid-900.woff') format('woff'),
14
+ font-url('#{$fa-font-path}/FontAwesome/fa-solid-900.ttf') format('truetype'),
15
+ font-url('#{$fa-font-path}/FontAwesome/fa-solid-900.svg#fontawesome') format('svg');
16
16
  }
17
17
 
18
18
  @font-face {
19
19
  font-family: 'Font Awesome 5 Free';
20
20
  font-style: normal;
21
21
  font-weight: 400;
22
- src: url('#{$fa-font-path}/fa-regular-400.eot');
23
- src: url('#{$fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'),
24
- url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
25
- url('#{$fa-font-path}/fa-regular-400.woff') format('woff'),
26
- url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype'),
27
- url('#{$fa-font-path}/fa-regular-400.svg#fontawesome') format('svg');
22
+ src: font-url('#{$fa-font-path}/FontAwesome/fa-regular-400.eot');
23
+ src: font-url('#{$fa-font-path}/FontAwesome/fa-regular-400.eot?#iefix') format('embedded-opentype'),
24
+ font-url('#{$fa-font-path}/FontAwesome/fa-regular-400.woff2') format('woff2'),
25
+ font-url('#{$fa-font-path}/FontAwesome/fa-regular-400.woff') format('woff'),
26
+ font-url('#{$fa-font-path}/FontAwesome/fa-regular-400.ttf') format('truetype'),
27
+ font-url('#{$fa-font-path}/FontAwesome/fa-regular-400.svg#fontawesome') format('svg');
28
28
  }
29
29
 
30
30
  @font-face {
31
31
  font-family: 'Font Awesome 5 Brands';
32
32
  font-style: normal;
33
33
  font-weight: normal;
34
- src: url('#{$fa-font-path}/fa-brands-400.eot');
35
- src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'),
36
- url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
37
- url('#{$fa-font-path}/fa-brands-400.woff') format('woff'),
38
- url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype'),
39
- url('#{$fa-font-path}/fa-brands-400.svg#fontawesome') format('svg');
34
+ src: font-url('#{$fa-font-path}/FontAwesome/fa-brands-400.eot');
35
+ src: font-url('#{$fa-font-path}/FontAwesome/fa-brands-400.eot?#iefix') format('embedded-opentype'),
36
+ font-url('#{$fa-font-path}/FontAwesome/fa-brands-400.woff2') format('woff2'),
37
+ font-url('#{$fa-font-path}/FontAwesome/fa-brands-400.woff') format('woff'),
38
+ font-url('#{$fa-font-path}/FontAwesome/fa-brands-400.ttf') format('truetype'),
39
+ font-url('#{$fa-font-path}/FontAwesome/fa-brands-400.svg#fontawesome') format('svg');
40
40
  }
41
41
 
42
42
  /* stylelint-enable */
@@ -53,7 +53,7 @@
53
53
  //@import "knacss/sass/components/tabs"; // tabs styles
54
54
  //@import "knacss/sass/components/arrows"; // arrows styles
55
55
  //@import "knacss/sass/components/tags"; // tags styles
56
- @import "knacss/sass/components/badges"; // badges styles
56
+ //@import "knacss/sass/components/badges"; // badges styles
57
57
  @import "knacss/sass/components/alerts"; // alerts styles
58
58
 
59
59
  /* stylelint-enable */
@@ -0,0 +1,227 @@
1
+ // NOTE:
2
+ // Most of the Knacss vars names are used directly as variable names
3
+ // for the application in 'variables.scss'.
4
+ // Here are all the Knacss variables with "!default" added at the end
5
+ // so they can be overridden.
6
+ // Ina ddition, some of the vars here takes values from Elabs vars.
7
+ // Config file and project variables
8
+
9
+ // ----------------
10
+ // Breakpoints zone
11
+ // ----------------
12
+
13
+ // Warning: you should use your own values, regardless of the devices
14
+ // Best practice is Mobile First: (min-width: $breakpoint)
15
+ $tiny : 480px !default; // or 'em' if you prefer, of course
16
+ $small : 576px !default;
17
+ $medium : 768px !default;
18
+ $large : 992px !default;
19
+ $extra-large : 1200px !default;
20
+
21
+ // ----------
22
+ // Fonts zone
23
+ // ----------
24
+
25
+ // Font families
26
+ $font-family-base : -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !default; // system font stack
27
+ $font-family-headings : sans-serif !default; // font for h1, h2.. h6
28
+ $font-family-monospace : consolas, courier, monospace !default; // font for code and samples
29
+
30
+ // Font sizes (1.6rem value is "16px" equivalent)
31
+ $font-size-base : 1.6rem !default;
32
+
33
+ $font-sizes: (
34
+ base: (
35
+ mobile : 1.4rem,
36
+ desktop : $font-size-base
37
+ ),
38
+ h1: (
39
+ mobile : 2.8rem,
40
+ desktop : 3.2rem
41
+ ),
42
+ h2: (
43
+ mobile : 2.4rem,
44
+ desktop : 2.8rem
45
+ ),
46
+ h3: (
47
+ mobile : 2.0rem,
48
+ desktop : 2.4rem
49
+ ),
50
+ h4: (
51
+ mobile : 1.8rem,
52
+ desktop : 2.0rem
53
+ ),
54
+ h5: (
55
+ mobile : 1.6rem,
56
+ desktop : 1.8rem
57
+ ),
58
+ h6: (
59
+ mobile : 1.4rem,
60
+ desktop : 1.6rem
61
+ )
62
+ ) !default;
63
+
64
+ // Line heights
65
+ $line-height-s : 1.3 !default;
66
+ $line-height-base : 1.5 !default;
67
+ $line-height-l : 1.7 !default;
68
+
69
+ // Default margin-bottom
70
+ $margin-bottom-base : 1rem !default;
71
+ $headings-margin-bottom : $margin-bottom-base /2 !default;
72
+ $paragraph-margin-bottom: $margin-bottom-base !default;
73
+
74
+ // Font weights
75
+ $weight-light : 200 !default;
76
+ $weight-book : 300 !default;
77
+ $weight-regular : 400 !default;
78
+ $weight-medium : 500 !default;
79
+ $weight-bold : 700 !default;
80
+
81
+ // Activate hyphenation on small screens
82
+ $hyphens: false !default;
83
+
84
+ // ------------
85
+ // Spacing zone
86
+ // ------------
87
+
88
+ // Number of grid-columns
89
+ $cols: 12;
90
+
91
+ // Grid gutters (for .has-gutter-* classes)
92
+ $grid-gutters: (
93
+ '': 1rem,
94
+ '-l': 2rem,
95
+ '-xl': 4rem
96
+ ) !default;
97
+
98
+ // Spacings
99
+ $spacer-tiny : .5rem !default;
100
+ $spacer-tiny-plus : .7rem !default;
101
+ $spacer-small : 1rem !default;
102
+ $spacer-small-plus : 1.5rem !default;
103
+ $spacer-medium : 2rem !default;
104
+ $spacer-medium-plus : 3rem !default;
105
+ $spacer-large : 4rem !default;
106
+ $spacer-large-plus : 6rem !default;
107
+ $spacer-extra-large : 8rem !default;
108
+ $spacer-extra-large-plus : 12rem !default;
109
+ $spacer-ultra-large : 16rem !default;
110
+ $spacer-ultra-large-plus : 20rem !default;
111
+
112
+ // z-indexes
113
+ $zindex-navigation : 1000 !default;
114
+ $zindex-dropdown : 2000 !default;
115
+ $zindex-popover : 3000 !default;
116
+ $zindex-tooltip : 4000 !default;
117
+ $zindex-modal : 5000 !default;
118
+ $zindex-notification : 6000 !default;
119
+ $zindex-debug : 7000 !default;
120
+
121
+ // ----------
122
+ // Color zone
123
+ // ----------
124
+
125
+ // Color names - Overriden with Elabs vars
126
+ $white : $color-white;
127
+ $gray-100 : $color-grey-100;
128
+ $gray-200 : $color-grey-200;
129
+ $gray-300 : $color-grey-300;
130
+ $gray-400 : $color-grey-400;
131
+ $gray-500 : $color-grey-500;
132
+ $gray-600 : $color-grey-600;
133
+ $gray-700 : $color-grey-700;
134
+ $gray-800 : $color-grey-800;
135
+ $gray-900 : $color-grey-900;
136
+ $black : $color-black;
137
+
138
+ $blue-300 : $color-blue-300;
139
+ $blue-500 : $color-blue-500;
140
+ $green-500 : $color-green-500;
141
+ $orange-500 : $color-orange-500;
142
+ $red-500 : $color-red-500;
143
+
144
+ // Semantic colors
145
+ $color-brand : $green-500 !default;
146
+ $color-primary : $blue-500 !default;
147
+ $color-success : $green-500 !default;
148
+ $color-info : $blue-300 !default;
149
+ $color-warning : $orange-500 !default;
150
+ $color-danger : $red-500 !default;
151
+ $color-inverse : $gray-800 !default;
152
+ $color-ghost : transparent !default;
153
+ $color-muted : $gray-200 !default;
154
+
155
+ $color-base : $color-base;
156
+ $background-base : $color-background-base;
157
+
158
+ $forms-color : $form-input-color;
159
+
160
+ // ---------------
161
+ // Components zone
162
+ // ---------------
163
+
164
+ // Component: links
165
+ $link-color : $gray-800 !default;
166
+ $link-color-hover : darken($link-color, 15%) !default;
167
+ $link-decoration : underline !default;
168
+ $link-decoration-hover : underline !default;
169
+
170
+ // Global border-radius
171
+ $border-radius: 0 !default;
172
+
173
+ // Component: quotes
174
+ $quote-color : $gray-200 !default;
175
+
176
+ // Component: arrows
177
+ $arrow-color : $black !default;
178
+
179
+ // Components: checkboxes, radios, switches
180
+ $checkbox-color: $white !default;
181
+ $checkbox-background: $gray-800 !default;
182
+ $checkbox-size: 2rem !default;
183
+ $checkbox-border-radius: 4px !default;
184
+ $radio-color: $gray-800 !default;
185
+ $radio-background: $white !default;
186
+ $switch-color: $white !default;
187
+ $switch-background: $gray-800 !default;
188
+ $switch-size: 2rem !default;
189
+ $switch-border-radius: 3em !default;
190
+
191
+ // Component: tables
192
+ $table-border : $gray-500 !default;
193
+ $table-caption-color : $gray-800 !default;
194
+ $table-background : transparent !default;
195
+ $table-head-color : $color-base !default;
196
+ $table-head-background : transparent !default;
197
+ $table-footer-color : $color-base !default;
198
+ $table-footer-background : transparent !default;
199
+
200
+ // Components: buttons, badges, alerts color variants list
201
+ // Convention is: name - background-color - color - border
202
+ $variants-list: (
203
+ (primary, $color-primary, $white, none),
204
+ (success, $color-success, $white, none),
205
+ (info, $color-info, $black, none),
206
+ (warning, $color-warning, $black, none),
207
+ (danger, $color-danger, $white, none),
208
+ (inverse, $color-inverse, $white, none),
209
+ (ghost, $color-ghost, $white, 0 0 0 1px $white inset)
210
+ ) !default;
211
+
212
+ // Component: tabs
213
+ $tabs-border : $gray-200 !default;
214
+ $tabs-active-border : $gray-800 !default;
215
+ $tabs-color : $color-base !default;
216
+ $tabs-active-color : $gray-800 !default;
217
+ $tabs-background : transparent !default;
218
+ $tabs-active-background : transparent !default;
219
+ $tabs-border-radius : 0 !default;
220
+
221
+ // Component: nav burger button
222
+ $burger-color : $gray-800 !default;
223
+ $burger-background : transparent !default;
224
+ $burger-hover-background : transparent !default;
225
+ $burger-size : 2.6rem !default;
226
+ $burger-weight : 5px !default; // size of stripes
227
+ $burger-padding : 0 !default;
@@ -1,83 +1,88 @@
1
1
  /* ------------------
2
2
  Elabs variables
3
3
  ------------------ */
4
- @import 'colors';
4
+ @import 'fonts';
5
+ @import 'lib/colors_reference';
6
+ @import '@fortawesome/fontawesome-free/scss/variables';
5
7
  @import 'variables';
6
8
 
7
- // Mixins
8
- @import 'app/mixins/classifier-card';
9
- @import 'app/mixins/content-card';
10
- @import 'app/mixins/content-full';
11
- @import 'app/mixins/content-inline';
12
- @import 'app/mixins/icon';
13
-
14
9
  /* ------------------
15
10
  Libraries
16
11
  ------------------ */
17
- @import 'lib/knacss/knacss-variables';
12
+ @import 'lib/knacss/knacss_variables';
18
13
  @import 'lib/knacss/knacss';
19
14
  @import 'lib/fontawesome/fonts';
20
15
  @import 'lib/fontawesome/fontawesome';
21
- @import 'lib/fontawesome/icons';
22
- @import 'icons';
16
+ @import 'lib/license_icons';
17
+ @import 'codemirror/lib/codemirror';
18
+ @import 'codemirror/theme/base16-light';
19
+
20
+ // Mixins -----------------------------
21
+ @import 'app/mixins/classifier_card';
22
+ @import 'app/mixins/content_card';
23
+ @import 'app/mixins/content_full';
24
+ @import 'app/mixins/content_inline';
25
+ @import 'app/mixins/icon';
23
26
 
24
27
  /* ------------------
25
28
  Elabs elements
26
29
  ------------------ */
27
30
 
28
- // Helpers
29
- @import 'app/helpers';
30
-
31
- // App specific components
32
- @import 'app/components/cards';
33
- @import 'app/components/container';
34
-
35
- // App specific areas
36
- @import 'app/areas/devise';
31
+ // Helpers (to be extended) -----------
32
+ @import 'app/helpers/cards';
33
+ @import 'app/helpers/containers';
34
+ @import 'app/helpers/states';
35
+ @import 'app/helpers/typo';
37
36
 
38
- // App specific elements
39
- @import 'app/acts';
40
- @import 'app/alerts';
41
- @import 'app/badges';
42
- @import 'app/buttons';
43
- @import 'app/comments';
44
- @import 'app/content';
45
- @import 'app/content_statuses';
46
- @import 'app/content_uploads';
47
- @import 'app/empty';
48
- @import 'app/errors';
49
- @import 'app/filter_links';
50
- @import 'app/forms';
51
- @import 'app/languages';
52
- @import 'app/layout';
53
- @import 'app/licenses';
54
- @import 'app/link-to-top';
55
- @import 'app/medias';
56
- @import 'app/modals';
57
- @import 'app/pagination';
58
- @import 'app/tables';
59
- @import 'app/tabs';
60
- @import 'app/tags';
61
- @import 'app/toolbars';
62
- @import 'app/typo';
63
- @import 'app/users';
37
+ // App elements -----------------------
38
+ @import 'app/elements/alerts';
39
+ @import 'app/elements/badges';
40
+ @import 'app/elements/buttons';
41
+ @import 'app/elements/dropdowns';
42
+ @import 'app/elements/empty';
43
+ @import 'app/elements/errors';
44
+ @import 'app/elements/filter_link';
45
+ @import 'app/elements/fixed_links';
46
+ @import 'app/elements/forms';
47
+ @import 'app/elements/icons';
48
+ @import 'app/elements/medias';
49
+ @import 'app/elements/modals';
50
+ @import 'app/elements/nsfw';
51
+ @import 'app/elements/pagination';
52
+ @import 'app/elements/tables';
53
+ @import 'app/elements/tabs';
64
54
 
65
- // Widgets
66
- @import 'app/widgets/git-cards';
55
+ // App layouts ------------------------
56
+ @import 'app/layouts/acts';
57
+ @import 'app/layouts/classifiers';
58
+ @import 'app/layouts/comments';
59
+ @import 'app/layouts/devise';
60
+ @import 'app/layouts/layout';
61
+ @import 'app/layouts/page';
62
+ @import 'app/layouts/page_content';
63
+ @import 'app/layouts/page_footer';
64
+ @import 'app/layouts/page_header';
65
+ @import 'app/layouts/page_menu';
66
+ @import 'app/layouts/page_messages';
67
+ @import 'app/layouts/private_layout';
68
+ @import 'app/layouts/typo';
67
69
 
68
- // Admin zone
69
- @import 'app/admin-members/forms';
70
- @import 'app/admin-members/indexes';
71
- @import 'app/admin-members/layout';
70
+ // App components ---------------------
71
+ @import 'app/components/act';
72
+ @import 'app/components/announcement';
73
+ @import 'app/components/classifier_types';
74
+ @import 'app/components/comment';
75
+ @import 'app/components/content_relations';
76
+ @import 'app/components/content_statuses';
77
+ @import 'app/components/content_types';
78
+ @import 'app/components/git_cards';
72
79
 
73
80
  // Other manually downloaded libraries
74
- @import 'codemirror-5.39.2/lib/codemirror';
75
- @import 'codemirror-5.39.2/theme/base16-light';
76
- @import 'highlight.js-9.12.0/styles/atelier-sulphurpool-light';
81
+ @import 'highlight.js-9.13.1/styles/atelier-sulphurpool-light';
77
82
 
78
- // Overrides
83
+ // Overrides --------------------------
79
84
  @import 'lib/codemirror';
80
85
  @import 'lib/hljs';
81
86
 
82
- // Fixes
87
+ // Fixes ------------------------------
83
88
  @import 'fixes';