decidim-core 0.19.1 → 0.23.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of decidim-core might be problematic. Click here for more details.

Files changed (858) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +19 -0
  3. data/app/assets/config/decidim_core_manifest.js +8 -0
  4. data/app/assets/fonts/decidim/Roboto-Regular.eot +0 -0
  5. data/app/assets/fonts/decidim/Roboto-Regular.svg +1 -0
  6. data/app/assets/fonts/decidim/Roboto-Regular.ttf +0 -0
  7. data/app/assets/fonts/decidim/Roboto-Regular.woff +0 -0
  8. data/app/assets/fonts/decidim/Roboto-Regular.woff2 +0 -0
  9. data/app/assets/fonts/decidim/Source_Sans_Pro_400.svg +1 -345
  10. data/app/assets/fonts/decidim/Source_Sans_Pro_600.svg +1 -339
  11. data/app/assets/fonts/decidim/Source_Sans_Pro_900.svg +1 -342
  12. data/app/assets/images/decidim/avatar-multiuser.png +0 -0
  13. data/app/assets/images/decidim/brands/google.svg +1 -0
  14. data/app/assets/images/decidim/decidim-logo.svg +1 -71
  15. data/app/assets/images/decidim/default-avatar.svg +1 -14
  16. data/app/assets/images/decidim/gamification/badges/followers.svg +1 -115
  17. data/app/assets/images/decidim/gamification/badges/invitations.svg +1 -117
  18. data/app/assets/images/decidim/icons.svg +1 -259
  19. data/app/assets/images/decidim/placeholder.jpg +0 -0
  20. data/app/assets/javascripts/decidim.js.es6 +32 -2
  21. data/app/assets/javascripts/decidim/ajax_modals.js.es6 +6 -3
  22. data/app/assets/javascripts/decidim/assets.js.erb +5 -0
  23. data/app/assets/javascripts/decidim/callout.js.es6 +18 -0
  24. data/app/assets/javascripts/decidim/check_boxes_tree.js.es6 +190 -0
  25. data/app/assets/javascripts/decidim/configuration.js.es6 +23 -0
  26. data/app/assets/javascripts/decidim/confirm.js.es6 +179 -0
  27. data/app/assets/javascripts/decidim/conversations.js.es6 +17 -0
  28. data/app/assets/javascripts/decidim/core/bundle.js +1 -1
  29. data/app/assets/javascripts/decidim/core/bundle.js.map +1 -1
  30. data/app/assets/javascripts/decidim/core/extrapoly.js +6 -0
  31. data/app/assets/javascripts/decidim/data_picker.js.es6 +128 -50
  32. data/app/assets/javascripts/decidim/delayed.js.es6 +26 -0
  33. data/app/assets/javascripts/decidim/diff_mode_dropdown.js.es6 +39 -6
  34. data/app/assets/javascripts/decidim/dropdowns_menus.js.es6 +32 -0
  35. data/app/assets/javascripts/decidim/editor.js.es6 +3 -3
  36. data/app/assets/javascripts/decidim/external_link.js.es6 +69 -0
  37. data/app/assets/javascripts/decidim/floating_help.js.es6 +7 -0
  38. data/app/assets/javascripts/decidim/form_filter.component.js.es6 +87 -39
  39. data/app/assets/javascripts/decidim/form_filter.component.test.js +43 -9
  40. data/app/assets/javascripts/decidim/form_validator.es6 +61 -0
  41. data/app/assets/javascripts/decidim/foundation.js.es6 +28 -28
  42. data/app/assets/javascripts/decidim/geocoding.js.es6 +60 -0
  43. data/app/assets/javascripts/decidim/geocoding/attach_input.js.es6 +106 -0
  44. data/app/assets/javascripts/decidim/geocoding/format_address.js.es6 +29 -0
  45. data/app/assets/javascripts/decidim/geocoding/provider/here.js.es6 +107 -0
  46. data/app/assets/javascripts/decidim/geocoding/provider/photon.js.es6 +77 -0
  47. data/app/assets/javascripts/decidim/history.js.es6 +16 -1
  48. data/app/assets/javascripts/decidim/icon.js.es6 +42 -0
  49. data/app/assets/javascripts/decidim/identity_selector_dialog.js.es6 +61 -0
  50. data/app/assets/javascripts/decidim/input_character_counter.js.es6 +115 -0
  51. data/app/assets/javascripts/decidim/input_hashtags.js.es6 +1 -1
  52. data/app/assets/javascripts/decidim/input_mentions.js.es6 +138 -51
  53. data/app/assets/javascripts/decidim/input_multiple_mentions.js.es6 +195 -0
  54. data/app/assets/javascripts/decidim/map.js.es6 +35 -84
  55. data/app/assets/javascripts/decidim/map/controller.js.es6 +92 -0
  56. data/app/assets/javascripts/decidim/map/controller/markers.js.es6 +65 -0
  57. data/app/assets/javascripts/decidim/map/controller/static.es6 +48 -0
  58. data/app/assets/javascripts/decidim/map/factory.js.es6 +51 -0
  59. data/app/assets/javascripts/decidim/map/icon.js.es6 +31 -0
  60. data/app/assets/javascripts/decidim/map/legacy.js.es6 +87 -0
  61. data/app/assets/javascripts/decidim/map/provider/default.js.es6 +22 -0
  62. data/app/assets/javascripts/decidim/map/provider/here.js.es6 +22 -0
  63. data/app/assets/javascripts/decidim/orders.js.es6 +9 -28
  64. data/app/assets/javascripts/decidim/responsive_horizontal_tabs.js.es6 +12 -0
  65. data/app/assets/javascripts/decidim/results_listing.js.es6 +44 -0
  66. data/app/assets/javascripts/decidim/security/selfxss_warning.js.es6 +19 -0
  67. data/app/assets/javascripts/decidim/start_conversation_dialog.js +13 -0
  68. data/app/assets/javascripts/decidim/vizzs.js.es6 +1 -0
  69. data/app/assets/stylesheets/decidim/_decidim-settings.scss +5 -0
  70. data/app/assets/stylesheets/decidim/_decidim.scss +15 -11
  71. data/app/assets/stylesheets/decidim/_properties.scss +25 -0
  72. data/app/assets/stylesheets/decidim/_variables.scss +7 -25
  73. data/app/assets/stylesheets/decidim/application.scss.erb +2 -2
  74. data/app/assets/stylesheets/decidim/editor.scss +2 -2
  75. data/app/assets/stylesheets/decidim/email.scss +1771 -0
  76. data/app/assets/stylesheets/decidim/extras/_external-links.scss +29 -0
  77. data/app/assets/stylesheets/decidim/extras/_extras.scss +17 -0
  78. data/app/assets/stylesheets/decidim/extras/_label-required.scss +9 -0
  79. data/app/assets/stylesheets/decidim/extras/_process_stats.scss +1 -1
  80. data/app/assets/stylesheets/decidim/extras/_quill.scss +5 -0
  81. data/app/assets/stylesheets/decidim/extras/_results-per-page.scss +8 -1
  82. data/app/assets/stylesheets/decidim/layouts/_home.scss +31 -7
  83. data/app/assets/stylesheets/decidim/layouts/_layouts.scss +5 -0
  84. data/app/assets/stylesheets/decidim/layouts/_logo.scss +26 -0
  85. data/app/assets/stylesheets/decidim/layouts/_user.scss +4 -0
  86. data/app/assets/stylesheets/decidim/modules/_author-avatar.scss +9 -13
  87. data/app/assets/stylesheets/decidim/modules/_buttons.scss +273 -28
  88. data/app/assets/stylesheets/decidim/modules/_cards.scss +189 -23
  89. data/app/assets/stylesheets/decidim/modules/_collapsible-list.scss +21 -0
  90. data/app/assets/stylesheets/decidim/modules/_comments.scss +102 -2
  91. data/app/assets/stylesheets/decidim/modules/_conference-programme.scss +0 -1
  92. data/app/assets/stylesheets/decidim/modules/_confirm.scss +5 -0
  93. data/app/assets/stylesheets/decidim/modules/_conversation.scss +50 -0
  94. data/app/assets/stylesheets/decidim/modules/_data-picker.scss +9 -11
  95. data/app/assets/stylesheets/decidim/modules/_definition-data.scss +6 -1
  96. data/app/assets/stylesheets/decidim/modules/_docs-manager.scss +0 -1
  97. data/app/assets/stylesheets/decidim/modules/_extra.scss +0 -2
  98. data/app/assets/stylesheets/decidim/modules/_filters.scss +61 -3
  99. data/app/assets/stylesheets/decidim/modules/_floating-helper.scss +20 -8
  100. data/app/assets/stylesheets/decidim/modules/_footer.scss +8 -4
  101. data/app/assets/stylesheets/decidim/modules/_forms.scss +77 -4
  102. data/app/assets/stylesheets/decidim/modules/_horizontal-tabs.scss +64 -1
  103. data/app/assets/stylesheets/decidim/modules/_inline-filters.scss +6 -3
  104. data/app/assets/stylesheets/decidim/modules/_input-gallery.scss +10 -0
  105. data/app/assets/stylesheets/decidim/modules/_input-mentions.scss +25 -7
  106. data/app/assets/stylesheets/decidim/modules/_input-multiple-mentions.scss +5 -0
  107. data/app/assets/stylesheets/decidim/modules/_layout.scss +21 -0
  108. data/app/assets/stylesheets/decidim/modules/_map.scss +46 -0
  109. data/app/assets/stylesheets/decidim/modules/_margins.scss +8 -7
  110. data/app/assets/stylesheets/decidim/modules/_messages.scss +18 -18
  111. data/app/assets/stylesheets/decidim/modules/_modules.scss +75 -71
  112. data/app/assets/stylesheets/decidim/modules/_navbar.scss +187 -31
  113. data/app/assets/stylesheets/decidim/modules/_notification.scss +5 -0
  114. data/app/assets/stylesheets/decidim/modules/_order-by.scss +5 -0
  115. data/app/assets/stylesheets/decidim/modules/_process-nav.scss +5 -2
  116. data/app/assets/stylesheets/decidim/modules/_process-phase.scss +2 -4
  117. data/app/assets/stylesheets/decidim/modules/_process-stats.scss +53 -0
  118. data/app/assets/stylesheets/decidim/modules/_progress-bar.scss +5 -1
  119. data/app/assets/stylesheets/decidim/modules/_reveal.scss +11 -0
  120. data/app/assets/stylesheets/decidim/modules/_signup.scss +59 -1
  121. data/app/assets/stylesheets/decidim/modules/_static-pages.scss +0 -1
  122. data/app/assets/stylesheets/decidim/modules/_status-labels.scss +7 -1
  123. data/app/assets/stylesheets/decidim/modules/_sticky.scss +5 -0
  124. data/app/assets/stylesheets/decidim/modules/_tags.scss +11 -1
  125. data/app/assets/stylesheets/decidim/modules/_timeline.scss +1 -2
  126. data/app/assets/stylesheets/decidim/modules/_typography.scss +94 -10
  127. data/app/assets/stylesheets/decidim/modules/_versions.scss +0 -1
  128. data/app/assets/stylesheets/decidim/utils/_fontface.scss +10 -0
  129. data/app/assets/stylesheets/decidim/utils/_helpers.scss +8 -0
  130. data/app/assets/stylesheets/decidim/utils/_mixins.scss +86 -7
  131. data/app/assets/stylesheets/decidim/utils/_settings.scss +81 -69
  132. data/app/assets/stylesheets/decidim/utils/_toggle-expand.scss +14 -0
  133. data/app/assets/stylesheets/decidim/vizzs.scss +8 -0
  134. data/app/assets/stylesheets/decidim/vizzs/_areachart.scss +0 -1
  135. data/app/assets/stylesheets/decidim/vizzs/_linechart.scss +0 -1
  136. data/app/assets/stylesheets/decidim/vizzs/_rowchart.scss +0 -1
  137. data/app/assets/stylesheets/decidim/vizzs/_vizzs.scss +5 -0
  138. data/app/assets/stylesheets/foundation-overrides/components/_button-group.scss +319 -0
  139. data/app/cells/decidim/activity/show.erb +24 -21
  140. data/app/cells/decidim/activity_cell.rb +2 -0
  141. data/app/cells/decidim/address_cell.rb +1 -1
  142. data/app/cells/decidim/amendable/amend_button_card_cell.rb +1 -5
  143. data/app/cells/decidim/amendable/promote_button_card_cell.rb +1 -1
  144. data/app/cells/decidim/announcement/show.erb +1 -1
  145. data/app/cells/decidim/author/comments.erb +1 -1
  146. data/app/cells/decidim/author/endorsements.erb +6 -0
  147. data/app/cells/decidim/author/flag.erb +6 -3
  148. data/app/cells/decidim/author/profile_inline.erb +3 -4
  149. data/app/cells/decidim/author/show.erb +2 -0
  150. data/app/cells/decidim/author/withdraw.erb +2 -2
  151. data/app/cells/decidim/author_cell.rb +12 -13
  152. data/app/cells/decidim/badge/show.erb +6 -6
  153. data/app/cells/decidim/badge/small.erb +2 -1
  154. data/app/cells/decidim/card/show.erb +4 -4
  155. data/app/cells/decidim/card_cell.rb +21 -7
  156. data/app/cells/decidim/card_m/comments_counter.erb +1 -1
  157. data/app/cells/decidim/card_m/header.erb +4 -4
  158. data/app/cells/decidim/card_m/image.erb +1 -1
  159. data/app/cells/decidim/card_m/show.erb +3 -3
  160. data/app/cells/decidim/card_m_cell.rb +9 -6
  161. data/app/cells/decidim/coauthorships_cell.rb +2 -6
  162. data/app/cells/decidim/collapsible_authors_cell.rb +1 -1
  163. data/app/cells/decidim/collapsible_list/show.erb +3 -3
  164. data/app/cells/decidim/content_blocks/footer_sub_hero/show.erb +4 -4
  165. data/app/cells/decidim/content_blocks/hero_settings_form/show.erb +2 -2
  166. data/app/cells/decidim/content_blocks/how_to_participate/show.erb +8 -8
  167. data/app/cells/decidim/content_blocks/last_activity_cell.rb +1 -1
  168. data/app/cells/decidim/content_blocks/stats/show.erb +1 -1
  169. data/app/cells/decidim/content_blocks/sub_hero/show.erb +3 -3
  170. data/app/cells/decidim/diff/attribute.erb +15 -5
  171. data/app/cells/decidim/diff/diff_mode_html.erb +31 -0
  172. data/app/cells/decidim/diff/diff_split.erb +1 -1
  173. data/app/cells/decidim/diff/diff_unified.erb +1 -1
  174. data/app/cells/decidim/diff/show.erb +1 -0
  175. data/app/cells/decidim/diff_cell.rb +35 -16
  176. data/app/cells/decidim/endorsement_buttons/select_identity_button.erb +10 -0
  177. data/app/cells/decidim/endorsement_buttons/show.erb +4 -0
  178. data/app/cells/decidim/endorsement_buttons_cell.rb +208 -0
  179. data/app/cells/decidim/endorsers_list/show.erb +16 -0
  180. data/app/cells/decidim/endorsers_list_cell.rb +29 -0
  181. data/app/cells/decidim/fingerprint_cell.rb +1 -0
  182. data/app/cells/decidim/follow_button/show.erb +29 -8
  183. data/app/cells/decidim/follow_button_cell.rb +37 -5
  184. data/app/cells/decidim/navbar_admin_link/show.erb +6 -0
  185. data/app/cells/decidim/navbar_admin_link_cell.rb +49 -0
  186. data/app/cells/decidim/newsletter_templates/base_cell.rb +30 -0
  187. data/app/cells/decidim/newsletter_templates/base_settings_form_cell.rb +13 -0
  188. data/app/cells/decidim/newsletter_templates/basic_only_text/show.erb +86 -0
  189. data/app/cells/decidim/newsletter_templates/basic_only_text_cell.rb +21 -0
  190. data/app/cells/decidim/newsletter_templates/basic_only_text_settings_form/show.erb +7 -0
  191. data/app/cells/decidim/newsletter_templates/basic_only_text_settings_form_cell.rb +8 -0
  192. data/app/cells/decidim/newsletter_templates/image_text_cta/show.erb +125 -0
  193. data/app/cells/decidim/newsletter_templates/image_text_cta_cell.rb +61 -0
  194. data/app/cells/decidim/newsletter_templates/image_text_cta_settings_form/show.erb +17 -0
  195. data/app/cells/decidim/newsletter_templates/image_text_cta_settings_form_cell.rb +8 -0
  196. data/app/cells/decidim/notifications/show.erb +1 -1
  197. data/app/cells/decidim/profile/show.erb +2 -2
  198. data/app/cells/decidim/profile/user_group_tabs.erb +10 -5
  199. data/app/cells/decidim/profile/user_tabs.erb +16 -14
  200. data/app/cells/decidim/profile_cell.rb +18 -0
  201. data/app/cells/decidim/profile_sidebar/show.erb +16 -16
  202. data/app/cells/decidim/profile_sidebar_cell.rb +1 -0
  203. data/app/cells/decidim/progress_bar/show.erb +11 -4
  204. data/app/cells/decidim/progress_bar_cell.rb +20 -1
  205. data/app/cells/decidim/search_results_section/show.erb +1 -1
  206. data/app/cells/decidim/tags_cell.rb +34 -4
  207. data/app/cells/decidim/translation_bar/show.erb +6 -0
  208. data/app/cells/decidim/translation_bar_cell.rb +52 -0
  209. data/app/cells/decidim/user_activity/show.erb +19 -1
  210. data/app/cells/decidim/user_activity_cell.rb +6 -0
  211. data/app/cells/decidim/user_conversation/conversation_header.erb +14 -0
  212. data/app/cells/decidim/user_conversation/messages.erb +15 -0
  213. data/app/cells/decidim/user_conversation/new.erb +15 -0
  214. data/app/cells/decidim/user_conversation/reply.erb +17 -0
  215. data/app/cells/decidim/user_conversation/show.erb +20 -0
  216. data/app/cells/decidim/user_conversation_cell.rb +75 -0
  217. data/app/cells/decidim/user_conversations/add_conversation_users.erb +25 -0
  218. data/app/cells/decidim/user_conversations/conversation_item.erb +38 -0
  219. data/app/cells/decidim/user_conversations/show.erb +58 -0
  220. data/app/cells/decidim/user_conversations_cell.rb +40 -0
  221. data/app/cells/decidim/user_group_admin_membership_profile/footer.erb +3 -3
  222. data/app/cells/decidim/user_profile/footer.erb +1 -1
  223. data/app/cells/decidim/user_profile/unlinked_user_data.erb +16 -0
  224. data/app/cells/decidim/user_profile/user_data.erb +1 -1
  225. data/app/cells/decidim/user_profile_cell.rb +7 -1
  226. data/app/cells/decidim/user_timeline_cell.rb +4 -0
  227. data/app/cells/decidim/version/show.erb +31 -0
  228. data/app/{views/decidim/shared/_version_author.html.erb → cells/decidim/version_author/show.erb} +1 -1
  229. data/app/cells/decidim/version_author_cell.rb +9 -0
  230. data/app/cells/decidim/version_cell.rb +83 -0
  231. data/app/cells/decidim/versions_list/show.erb +32 -0
  232. data/app/cells/decidim/versions_list_cell.rb +64 -0
  233. data/app/cells/decidim/versions_list_item/show.erb +20 -0
  234. data/app/cells/decidim/versions_list_item_cell.rb +51 -0
  235. data/app/cells/decidim/wizard_step_form/wizard_aside.erb +1 -1
  236. data/app/cells/decidim/wizard_step_form/wizard_header.erb +2 -2
  237. data/app/cells/decidim/wizard_step_form_cell.rb +4 -1
  238. data/app/commands/decidim/amendable/accept.rb +18 -7
  239. data/app/commands/decidim/amendable/create_draft.rb +2 -0
  240. data/app/commands/decidim/amendable/publish_draft.rb +5 -0
  241. data/app/commands/decidim/amendable/reject.rb +5 -0
  242. data/app/commands/decidim/amendable/update_draft.rb +2 -0
  243. data/app/commands/decidim/amendable/withdraw.rb +3 -12
  244. data/app/commands/decidim/attachment_methods.rb +47 -0
  245. data/app/commands/decidim/create_registration.rb +7 -7
  246. data/app/commands/decidim/create_user_group.rb +12 -0
  247. data/app/commands/decidim/destroy_account.rb +13 -0
  248. data/app/commands/decidim/endorse_resource.rb +64 -0
  249. data/app/commands/decidim/gallery_methods.rb +71 -0
  250. data/app/commands/decidim/invite_user_again.rb +2 -4
  251. data/app/commands/decidim/messaging/reply_to_conversation.rb +35 -4
  252. data/app/commands/decidim/messaging/start_conversation.rb +36 -5
  253. data/app/commands/decidim/multiple_attachments_methods.rb +56 -0
  254. data/app/commands/decidim/unendorse_resource.rb +38 -0
  255. data/app/commands/decidim/update_notifications_settings.rb +1 -0
  256. data/app/commands/decidim/update_user_group.rb +14 -1
  257. data/app/controllers/concerns/decidim/devise_controllers.rb +1 -0
  258. data/app/controllers/concerns/decidim/filter_resource.rb +24 -6
  259. data/app/controllers/concerns/decidim/flaggable.rb +20 -0
  260. data/app/controllers/concerns/decidim/force_authentication.rb +1 -0
  261. data/app/controllers/concerns/decidim/impersonate_users.rb +14 -1
  262. data/app/controllers/concerns/decidim/needs_snippets.rb +20 -0
  263. data/app/controllers/concerns/decidim/paginable.rb +5 -1
  264. data/app/controllers/concerns/decidim/resource_versions_concern.rb +28 -0
  265. data/app/controllers/concerns/decidim/use_organization_time_zone.rb +32 -0
  266. data/app/controllers/concerns/decidim/withdrawable.rb +20 -0
  267. data/app/controllers/decidim/application_controller.rb +19 -8
  268. data/app/controllers/decidim/components/base_controller.rb +7 -1
  269. data/app/controllers/decidim/cookie_policy_controller.rb +6 -3
  270. data/app/controllers/decidim/data_portability_controller.rb +12 -19
  271. data/app/controllers/decidim/devise/omniauth_registrations_controller.rb +1 -1
  272. data/app/controllers/decidim/devise/registrations_controller.rb +3 -4
  273. data/app/controllers/decidim/devise/sessions_controller.rb +5 -0
  274. data/app/controllers/decidim/devise/unlocks_controller.rb +25 -0
  275. data/app/controllers/decidim/endorsements_controller.rb +71 -0
  276. data/app/controllers/decidim/messaging/conversations_controller.rb +57 -14
  277. data/app/controllers/decidim/newsletters_controller.rb +2 -2
  278. data/app/controllers/decidim/profiles_controller.rb +6 -0
  279. data/app/controllers/decidim/scopes_controller.rb +42 -7
  280. data/app/controllers/decidim/searches_controller.rb +0 -1
  281. data/app/controllers/decidim/user_activities_controller.rb +19 -2
  282. data/app/controllers/decidim/user_conversations_controller.rb +142 -0
  283. data/app/controllers/decidim/user_timeline_controller.rb +19 -2
  284. data/app/events/decidim/resource_endorsed_event.rb +35 -0
  285. data/app/events/decidim/user_group_admin_event.rb +37 -0
  286. data/app/events/decidim/user_group_created_event.rb +6 -0
  287. data/app/events/decidim/user_group_updated_event.rb +6 -0
  288. data/app/forms/decidim/account_form.rb +5 -1
  289. data/app/forms/decidim/amendable/create_form.rb +1 -1
  290. data/app/forms/decidim/amendable/form.rb +44 -3
  291. data/app/forms/decidim/attachment_form.rb +5 -0
  292. data/app/forms/decidim/messaging/conversation_form.rb +10 -4
  293. data/app/forms/decidim/notifications_settings_form.rb +6 -0
  294. data/app/forms/decidim/registration_form.rb +6 -0
  295. data/app/forms/decidim/user_group_form.rb +5 -1
  296. data/app/functions/decidim/core/component_finder_base.rb +40 -0
  297. data/app/functions/decidim/core/component_list.rb +38 -0
  298. data/app/functions/decidim/core/component_list_base.rb +67 -0
  299. data/app/functions/decidim/core/needs_api_filter_and_order.rb +52 -0
  300. data/app/functions/decidim/core/participatory_space_finder.rb +11 -0
  301. data/app/functions/decidim/core/participatory_space_finder_base.rb +29 -0
  302. data/app/functions/decidim/core/participatory_space_list.rb +11 -0
  303. data/app/functions/decidim/core/participatory_space_list_base.rb +34 -0
  304. data/app/functions/decidim/core/user_entity_finder.rb +33 -0
  305. data/app/functions/decidim/core/user_entity_list.rb +31 -0
  306. data/app/helpers/concerns/decidim/flash_helper_extensions.rb +47 -0
  307. data/app/helpers/decidim/action_authorization_helper.rb +24 -2
  308. data/app/helpers/decidim/amendments_helper.rb +29 -1
  309. data/app/helpers/decidim/application_helper.rb +38 -4
  310. data/app/helpers/decidim/categories_helper.rb +26 -0
  311. data/app/helpers/decidim/cells_helper.rb +3 -15
  312. data/app/helpers/decidim/check_boxes_tree_helper.rb +123 -0
  313. data/app/helpers/decidim/cookies_helper.rb +1 -1
  314. data/app/helpers/decidim/cta_button_helper.rb +1 -1
  315. data/app/helpers/decidim/decidim_form_helper.rb +24 -1
  316. data/app/helpers/decidim/endorsable_helper.rb +93 -0
  317. data/app/helpers/decidim/filter_params_helper.rb +30 -0
  318. data/app/helpers/decidim/filters_helper.rb +15 -5
  319. data/app/helpers/decidim/followable_helper.rb +11 -0
  320. data/app/helpers/decidim/layout_helper.rb +23 -5
  321. data/app/helpers/decidim/map_helper.rb +100 -17
  322. data/app/helpers/decidim/markup_helper.rb +9 -0
  323. data/app/helpers/decidim/messaging/conversation_helper.rb +61 -7
  324. data/app/helpers/decidim/omniauth_helper.rb +6 -13
  325. data/app/helpers/decidim/orders_helper.rb +15 -1
  326. data/app/helpers/decidim/paginate_helper.rb +3 -1
  327. data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
  328. data/app/helpers/decidim/resource_versions_helper.rb +46 -0
  329. data/app/helpers/decidim/rich_text_editor_helper.rb +23 -0
  330. data/app/helpers/decidim/sanitize_helper.rb +13 -3
  331. data/app/helpers/decidim/scopes_helper.rb +7 -6
  332. data/app/helpers/decidim/tooltip_helper.rb +1 -1
  333. data/app/helpers/decidim/traceability_helper.rb +2 -8
  334. data/app/helpers/decidim/translations_helper.rb +7 -1
  335. data/app/helpers/decidim/user_profile_helper.rb +1 -1
  336. data/app/helpers/decidim/widget_urls_helper.rb +4 -2
  337. data/app/jobs/decidim/data_portability_export_job.rb +18 -10
  338. data/app/jobs/decidim/event_publisher_job.rb +1 -1
  339. data/app/jobs/decidim/export_job.rb +1 -1
  340. data/app/jobs/decidim/export_participatory_space_job.rb +20 -0
  341. data/app/jobs/decidim/machine_translation_fields_job.rb +30 -0
  342. data/app/jobs/decidim/machine_translation_resource_job.rb +113 -0
  343. data/app/jobs/decidim/machine_translation_save_job.rb +33 -0
  344. data/app/mailers/concerns/decidim/multitenant_asset_host.rb +33 -0
  345. data/app/mailers/decidim/application_mailer.rb +1 -0
  346. data/app/mailers/decidim/export_mailer.rb +9 -5
  347. data/app/mailers/decidim/messaging/conversation_mailer.rb +53 -4
  348. data/app/mailers/decidim/newsletter_mailer.rb +22 -4
  349. data/app/mailers/decidim/reported_mailer.rb +8 -1
  350. data/app/middleware/decidim/strip_x_forwarded_host.rb +14 -0
  351. data/app/models/decidim/action_log.rb +2 -2
  352. data/app/models/decidim/amendment.rb +0 -18
  353. data/app/models/decidim/area.rb +3 -0
  354. data/app/models/decidim/area_type.rb +4 -0
  355. data/app/models/decidim/attachment.rb +30 -2
  356. data/app/models/decidim/attachment_collection.rb +3 -0
  357. data/app/models/decidim/authorization.rb +27 -0
  358. data/app/models/decidim/category.rb +6 -0
  359. data/app/models/decidim/component.rb +16 -0
  360. data/app/models/decidim/content_block.rb +16 -4
  361. data/app/models/decidim/contextual_help_section.rb +4 -0
  362. data/app/models/decidim/endorsement.rb +30 -0
  363. data/app/models/decidim/follow.rb +3 -1
  364. data/app/models/decidim/messaging/conversation.rb +39 -11
  365. data/app/models/decidim/messaging/message.rb +32 -6
  366. data/app/models/decidim/messaging/participation.rb +1 -1
  367. data/app/models/decidim/messaging/receipt.rb +8 -0
  368. data/app/models/decidim/moderation.rb +1 -1
  369. data/app/models/decidim/newsletter.rb +10 -1
  370. data/app/models/decidim/oauth_application.rb +2 -0
  371. data/app/models/decidim/omniauth_provider.rb +28 -0
  372. data/app/models/decidim/organization.rb +94 -0
  373. data/app/models/decidim/participatory_space_role_config/admin.rb +8 -0
  374. data/app/models/decidim/participatory_space_role_config/base.rb +31 -0
  375. data/app/models/decidim/participatory_space_role_config/collaborator.rb +8 -0
  376. data/app/models/decidim/participatory_space_role_config/moderator.rb +11 -0
  377. data/app/models/decidim/participatory_space_role_config/null_object.rb +11 -0
  378. data/app/models/decidim/participatory_space_role_config/participatory_space_admin.rb +8 -0
  379. data/app/models/decidim/participatory_space_role_config/valuator.rb +11 -0
  380. data/app/models/decidim/scope.rb +8 -3
  381. data/app/models/decidim/scope_type.rb +3 -0
  382. data/app/models/decidim/share_token.rb +49 -0
  383. data/app/models/decidim/static_page.rb +4 -1
  384. data/app/models/decidim/static_page_topic.rb +3 -0
  385. data/app/models/decidim/user.rb +60 -5
  386. data/app/models/decidim/user_base_entity.rb +6 -2
  387. data/app/models/decidim/user_group.rb +30 -0
  388. data/app/permissions/decidim/permissions.rb +28 -6
  389. data/app/presenters/decidim/admin_log/user_presenter.rb +1 -1
  390. data/app/presenters/decidim/attachment_presenter.rb +21 -0
  391. data/app/presenters/decidim/home_stats_presenter.rb +5 -2
  392. data/app/presenters/decidim/log/base_presenter.rb +1 -1
  393. data/app/presenters/decidim/log/value_types/default_presenter.rb +1 -1
  394. data/app/presenters/decidim/metric_charts_presenter.rb +33 -13
  395. data/app/presenters/decidim/nil_presenter.rb +29 -0
  396. data/app/presenters/decidim/official_author_presenter.rb +36 -0
  397. data/app/presenters/decidim/resource_locator_presenter.rb +71 -10
  398. data/app/presenters/decidim/user_group_presenter.rb +1 -1
  399. data/app/presenters/decidim/user_presenter.rb +6 -0
  400. data/app/queries/decidim/metric_manage.rb +5 -0
  401. data/app/queries/decidim/metrics/followers_metric_manage.rb +1 -6
  402. data/app/queries/decidim/similar_emendations.rb +4 -4
  403. data/app/queries/decidim/user_groups/admin_memberships.rb +3 -3
  404. data/app/scrubbers/decidim/user_input_scrubber.rb +2 -2
  405. data/app/serializers/decidim/exporters/participatory_space_components_serializer.rb +46 -0
  406. data/{lib → app/serializers}/decidim/exporters/serializer.rb +0 -0
  407. data/app/serializers/decidim/importers/importer.rb +25 -0
  408. data/app/serializers/decidim/importers/participatory_space_components_importer.rb +76 -0
  409. data/app/services/decidim/activity_search.rb +1 -0
  410. data/app/services/decidim/base_diff_renderer.rb +42 -3
  411. data/app/services/decidim/data_portability_exporter.rb +72 -0
  412. data/app/services/decidim/events_manager.rb +4 -1
  413. data/app/services/decidim/open_data_exporter.rb +3 -1
  414. data/app/services/decidim/resource_search.rb +122 -17
  415. data/app/services/decidim/static_map_generator.rb +10 -21
  416. data/app/services/decidim/zip_stream/zip_stream_writer.rb +56 -0
  417. data/app/types/decidim/core/amendment_type.rb +26 -0
  418. data/app/types/decidim/core/area_api_type.rb +16 -0
  419. data/app/types/decidim/core/area_type_type.rb +14 -0
  420. data/app/types/decidim/core/base_input_filter.rb +8 -0
  421. data/app/types/decidim/core/base_input_sort.rb +22 -0
  422. data/app/types/decidim/core/component_input_filter.rb +50 -0
  423. data/app/types/decidim/core/component_input_sort.rb +32 -0
  424. data/app/types/decidim/core/decidim_type.rb +0 -4
  425. data/app/types/decidim/core/fingerprint_type.rb +15 -0
  426. data/app/types/decidim/core/has_endorsable_input_sort.rb +17 -0
  427. data/app/types/decidim/core/has_hastaggable_input_filter.rb +15 -0
  428. data/app/types/decidim/core/has_localized_input_filter.rb +21 -0
  429. data/app/types/decidim/core/has_localized_input_sort.rb +21 -0
  430. data/app/types/decidim/core/has_publishable_input_filter.rb +34 -0
  431. data/app/types/decidim/core/has_publishable_input_sort.rb +13 -0
  432. data/app/types/decidim/core/has_timestamp_input_filter.rb +52 -0
  433. data/app/types/decidim/core/has_timestamp_input_sort.rb +12 -0
  434. data/app/types/decidim/core/participatory_space_input_filter.rb +26 -0
  435. data/app/types/decidim/core/participatory_space_input_sort.rb +14 -0
  436. data/app/types/decidim/core/participatory_space_link_type.rb +24 -0
  437. data/app/types/decidim/core/trace_version_type.rb +29 -0
  438. data/app/types/decidim/core/user_entity_input_filter.rb +81 -0
  439. data/app/types/decidim/core/user_entity_input_sort.rb +24 -0
  440. data/app/types/decidim/core/user_group_type.rb +17 -5
  441. data/app/types/decidim/core/user_type.rb +17 -6
  442. data/app/uploaders/decidim/application_uploader.rb +15 -1
  443. data/app/uploaders/decidim/attachment_uploader.rb +23 -17
  444. data/app/uploaders/decidim/avatar_uploader.rb +4 -0
  445. data/app/uploaders/decidim/banner_image_uploader.rb +1 -2
  446. data/app/uploaders/decidim/data_portability_uploader.rb +2 -7
  447. data/app/uploaders/decidim/hero_image_uploader.rb +1 -1
  448. data/app/uploaders/decidim/homepage_image_uploader.rb +1 -1
  449. data/app/uploaders/decidim/image_uploader.rb +34 -6
  450. data/app/uploaders/decidim/newsletter_template_image_uploader.rb +36 -0
  451. data/app/uploaders/decidim/oauth_application_logo_uploader.rb +1 -1
  452. data/app/uploaders/decidim/official_image_footer_uploader.rb +1 -1
  453. data/app/uploaders/decidim/official_image_header_uploader.rb +1 -1
  454. data/app/uploaders/decidim/organization_logo_uploader.rb +1 -1
  455. data/app/uploaders/decidim/record_image_uploader.rb +15 -0
  456. data/app/validators/etiquette_validator.rb +0 -7
  457. data/app/validators/geocoding_validator.rb +9 -4
  458. data/app/validators/passthru_validator.rb +111 -0
  459. data/app/validators/scope_belongs_to_component_validator.rb +16 -0
  460. data/app/validators/time_zone_validator.rb +10 -0
  461. data/app/validators/uploader_content_type_validator.rb +44 -0
  462. data/app/views/decidim/account/delete.html.erb +6 -3
  463. data/app/views/decidim/account/show.html.erb +17 -10
  464. data/app/views/decidim/amendments/_edit_form_fields.html.erb +7 -13
  465. data/app/views/decidim/amendments/_similar_emendation.html.erb +4 -4
  466. data/app/views/decidim/amendments/compare_draft.html.erb +2 -2
  467. data/app/views/decidim/amendments/edit_draft.html.erb +2 -2
  468. data/app/views/decidim/amendments/new.html.erb +2 -2
  469. data/app/views/decidim/amendments/preview_draft.html.erb +3 -3
  470. data/app/views/decidim/amendments/review.html.erb +3 -3
  471. data/app/views/decidim/application/_collection.html.erb +2 -2
  472. data/app/views/decidim/application/_document.html.erb +4 -4
  473. data/app/views/decidim/application/_documents.html.erb +1 -1
  474. data/app/views/decidim/application/_photos.html.erb +1 -1
  475. data/app/views/decidim/authorization_modals/_content.html.erb +2 -2
  476. data/app/views/decidim/authorization_modals/show.html.erb +1 -1
  477. data/app/views/decidim/data_portability/show.html.erb +3 -0
  478. data/app/views/decidim/devise/confirmations/new.html.erb +3 -3
  479. data/app/views/decidim/devise/invitations/edit.html.erb +17 -15
  480. data/app/views/decidim/devise/omniauth_registrations/new.html.erb +5 -3
  481. data/app/views/decidim/devise/passwords/edit.html.erb +5 -3
  482. data/app/views/decidim/devise/passwords/new.html.erb +3 -3
  483. data/app/views/decidim/devise/registrations/edit.html.erb +2 -1
  484. data/app/views/decidim/devise/registrations/new.html.erb +12 -11
  485. data/app/views/decidim/devise/sessions/new.html.erb +7 -7
  486. data/app/views/decidim/devise/shared/_newsletter_modal.html.erb +3 -3
  487. data/app/views/decidim/devise/shared/_omniauth_buttons.html.erb +11 -11
  488. data/app/views/decidim/devise/shared/_omniauth_buttons_mini.html.erb +9 -8
  489. data/app/views/decidim/devise/unlocks/new.html.erb +33 -0
  490. data/app/views/decidim/doorkeeper/authorizations/new.html.erb +2 -2
  491. data/app/views/decidim/endorsements/_identity.html.erb +9 -0
  492. data/app/views/decidim/endorsements/identities.html.erb +12 -0
  493. data/app/views/decidim/endorsements/update_buttons_and_counters.js.erb +20 -0
  494. data/app/views/decidim/errors/internal_server_error.html.erb +2 -2
  495. data/app/views/decidim/errors/not_found.html.erb +2 -2
  496. data/app/views/decidim/export_mailer/data_portability_export.html.erb +2 -2
  497. data/app/views/decidim/gamification/badges/index.html.erb +4 -4
  498. data/app/views/decidim/group_admins/index.html.erb +6 -4
  499. data/app/views/decidim/group_invites/index.html.erb +5 -2
  500. data/app/views/decidim/group_members/index.html.erb +6 -4
  501. data/app/views/decidim/groups/_form.html.erb +2 -0
  502. data/app/views/decidim/groups/edit.html.erb +4 -2
  503. data/app/views/decidim/groups/new.html.erb +2 -2
  504. data/app/views/decidim/last_activities/index.html.erb +2 -0
  505. data/app/views/decidim/messaging/conversation_mailer/comanagers_new_conversation.html.erb +17 -0
  506. data/app/views/decidim/messaging/conversation_mailer/comanagers_new_message.html.erb +17 -0
  507. data/app/views/decidim/messaging/conversation_mailer/new_conversation.html.erb +2 -2
  508. data/app/views/decidim/messaging/conversation_mailer/new_group_conversation.html.erb +17 -0
  509. data/app/views/decidim/messaging/conversation_mailer/new_group_message.html.erb +17 -0
  510. data/app/views/decidim/messaging/conversation_mailer/new_message.html.erb +2 -2
  511. data/app/views/decidim/messaging/conversations/_add_conversation_users.html.erb +24 -0
  512. data/app/views/decidim/messaging/conversations/_conversation.html.erb +54 -0
  513. data/app/views/decidim/messaging/conversations/_error_modal.html.erb +21 -0
  514. data/app/views/decidim/messaging/conversations/_messages.html.erb +15 -0
  515. data/app/views/decidim/messaging/conversations/_new_conversation_button.html.erb +33 -0
  516. data/app/views/decidim/messaging/conversations/_reply.html.erb +3 -3
  517. data/app/views/decidim/messaging/conversations/_show.html.erb +34 -15
  518. data/app/views/decidim/messaging/conversations/_start.html.erb +7 -1
  519. data/app/views/decidim/messaging/conversations/create.js.erb +1 -1
  520. data/app/views/decidim/messaging/conversations/error.js.erb +10 -0
  521. data/app/views/decidim/messaging/conversations/index.html.erb +34 -29
  522. data/app/views/decidim/messaging/conversations/new.html.erb +1 -1
  523. data/app/views/decidim/messaging/conversations/show.html.erb +8 -4
  524. data/app/views/decidim/messaging/conversations/update.js.erb +1 -1
  525. data/app/views/decidim/newsletter_mailer/newsletter.html.erb +2 -2
  526. data/app/views/decidim/newsletters/show.html.erb +8 -1
  527. data/app/views/decidim/notification_mailer/event_received.html.erb +2 -2
  528. data/app/views/decidim/notifications/index.html.erb +4 -2
  529. data/app/views/decidim/notifications_settings/show.html.erb +14 -1
  530. data/app/views/decidim/own_user_groups/index.html.erb +4 -0
  531. data/app/views/decidim/pages/_standalone.html.erb +1 -1
  532. data/app/views/decidim/pages/_tabbed.html.erb +5 -5
  533. data/app/views/decidim/pages/index.html.erb +22 -13
  534. data/app/views/decidim/profiles/_user_follow.erb +3 -3
  535. data/app/views/decidim/profiles/show.html.erb +2 -0
  536. data/app/views/decidim/reported_mailer/report.html.erb +49 -3
  537. data/app/views/decidim/scopes/_scopes_picker_input.html.erb +15 -7
  538. data/app/views/decidim/scopes/picker.html.erb +31 -17
  539. data/app/views/decidim/searches/_count.html.erb +14 -11
  540. data/app/views/decidim/searches/_filters.html.erb +6 -21
  541. data/app/views/decidim/searches/_resources_filter_block.html.erb +20 -0
  542. data/app/views/decidim/searches/index.html.erb +5 -3
  543. data/app/views/decidim/shared/_check_boxes_tree.html.erb +56 -0
  544. data/app/views/decidim/shared/_confirm_modal.html.erb +18 -0
  545. data/app/views/decidim/shared/_embed_modal.html.erb +4 -1
  546. data/app/views/decidim/shared/_extended_navigation_bar.html.erb +3 -3
  547. data/app/views/decidim/shared/_filter_form_help.erb +8 -0
  548. data/app/views/decidim/shared/_floating_help.html.erb +7 -7
  549. data/app/views/decidim/shared/_login_modal.html.erb +17 -6
  550. data/app/views/decidim/shared/_orders.html.erb +16 -5
  551. data/app/views/decidim/shared/_results_per_page.html.erb +16 -6
  552. data/app/views/decidim/shared/_share_modal.html.erb +8 -4
  553. data/app/views/decidim/shared/_static_map.html.erb +2 -2
  554. data/app/views/decidim/shared/participatory_space_filters/_filters.html.erb +1 -1
  555. data/app/views/decidim/user_activities/index.html.erb +4 -0
  556. data/app/views/decidim/user_activities/index.js.erb +14 -0
  557. data/app/views/decidim/user_conversations/index.html.erb +4 -0
  558. data/app/views/decidim/user_conversations/show.html.erb +4 -0
  559. data/app/views/decidim/user_conversations/update.js.erb +8 -0
  560. data/app/views/decidim/user_interests/_scopes.html.erb +12 -10
  561. data/app/views/decidim/user_interests/show.html.erb +4 -1
  562. data/app/views/decidim/user_timeline/index.html.erb +5 -1
  563. data/app/views/decidim/user_timeline/index.js.erb +14 -0
  564. data/app/views/decidim/widgets/show.html.erb +4 -0
  565. data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
  566. data/app/views/kaminari/decidim/_first_page.html.erb +5 -1
  567. data/app/views/kaminari/decidim/_last_page.html.erb +5 -1
  568. data/app/views/kaminari/decidim/_next_page.html.erb +6 -1
  569. data/app/views/kaminari/decidim/_page.html.erb +2 -2
  570. data/app/views/kaminari/decidim/_paginator.html.erb +16 -14
  571. data/app/views/kaminari/decidim/_prev_page.html.erb +6 -1
  572. data/app/views/layouts/decidim/_admin_links.html.erb +2 -0
  573. data/app/views/layouts/decidim/_application.html.erb +4 -2
  574. data/app/views/layouts/decidim/_cookie_warning.html.erb +1 -1
  575. data/app/views/layouts/decidim/_edit_link.html.erb +0 -8
  576. data/app/views/layouts/decidim/_head.html.erb +4 -0
  577. data/app/views/layouts/decidim/_js_configuration.html.erb +34 -0
  578. data/app/views/layouts/decidim/_language_chooser.html.erb +10 -5
  579. data/app/views/layouts/decidim/_logo.html.erb +2 -22
  580. data/app/views/layouts/decidim/_mailer_logo.html.erb +2 -22
  581. data/app/views/layouts/decidim/_main_footer.html.erb +28 -0
  582. data/app/views/layouts/decidim/_mini_footer.html.erb +21 -0
  583. data/app/views/layouts/decidim/_omnipresent_banner.html.erb +1 -1
  584. data/app/views/layouts/decidim/_organization_colors.html.erb +4 -3
  585. data/app/views/layouts/decidim/_social_media_links.html.erb +15 -10
  586. data/app/views/layouts/decidim/_topbar_search.html.erb +12 -2
  587. data/app/views/layouts/decidim/_user_menu.html.erb +6 -6
  588. data/app/views/layouts/decidim/_wrapper.html.erb +28 -65
  589. data/app/views/layouts/decidim/newsletter_base.html.erb +46 -0
  590. data/app/views/layouts/decidim/user_profile.html.erb +8 -3
  591. data/app/views/layouts/decidim/widget.html.erb +2 -43
  592. data/config/initializers/browser.rb +5 -0
  593. data/config/initializers/devise.rb +17 -31
  594. data/config/initializers/invisible_captcha.rb +1 -0
  595. data/config/initializers/omniauth.rb +56 -0
  596. data/config/initializers/rack_attack.rb +25 -16
  597. data/config/locales/am-ET.yml +1 -0
  598. data/config/locales/ar.yml +44 -22
  599. data/config/locales/bg-BG.yml +1512 -0
  600. data/config/locales/bg.yml +1508 -0
  601. data/config/locales/ca.yml +302 -24
  602. data/config/locales/cs.yml +346 -55
  603. data/config/locales/da-DK.yml +9 -0
  604. data/config/locales/da.yml +1 -0
  605. data/config/locales/de.yml +311 -26
  606. data/config/locales/el-GR.yml +151 -0
  607. data/config/locales/el.yml +1587 -0
  608. data/config/locales/en.yml +308 -30
  609. data/config/locales/eo-UY.yml +2 -6
  610. data/config/locales/eo.yml +92 -0
  611. data/config/locales/es-MX.yml +297 -19
  612. data/config/locales/es-PY.yml +297 -19
  613. data/config/locales/es.yml +301 -23
  614. data/config/locales/et-EE.yml +9 -0
  615. data/config/locales/et.yml +1 -0
  616. data/config/locales/eu.yml +14 -19
  617. data/config/locales/fi-plain.yml +297 -19
  618. data/config/locales/fi.yml +361 -83
  619. data/config/locales/fr-CA.yml +1613 -0
  620. data/config/locales/fr.yml +304 -26
  621. data/config/locales/ga-IE.yml +1 -0
  622. data/config/locales/gl.yml +14 -19
  623. data/config/locales/hr-HR.yml +9 -0
  624. data/config/locales/hr.yml +1 -0
  625. data/config/locales/hu.yml +123 -39
  626. data/config/locales/id-ID.yml +14 -19
  627. data/config/locales/is-IS.yml +457 -0
  628. data/config/locales/is.yml +463 -0
  629. data/config/locales/it.yml +332 -54
  630. data/config/locales/ja-JP.yml +1587 -0
  631. data/config/locales/ja.yml +1605 -0
  632. data/config/locales/ko-KR.yml +1 -0
  633. data/config/locales/ko.yml +1 -0
  634. data/config/locales/lt-LT.yml +9 -0
  635. data/config/locales/lt.yml +1 -0
  636. data/config/locales/lv.yml +1481 -0
  637. data/config/locales/mt-MT.yml +9 -0
  638. data/config/locales/mt.yml +1 -0
  639. data/config/locales/nl.yml +292 -20
  640. data/config/locales/no.yml +951 -41
  641. data/config/locales/om-ET.yml +1 -0
  642. data/config/locales/pl.yml +801 -444
  643. data/config/locales/pt-BR.yml +15 -21
  644. data/config/locales/pt.yml +887 -551
  645. data/config/locales/ro-RO.yml +1609 -0
  646. data/config/locales/ru.yml +14 -14
  647. data/config/locales/sk-SK.yml +1426 -0
  648. data/config/locales/sk.yml +1440 -0
  649. data/config/locales/sl.yml +72 -0
  650. data/config/locales/so-SO.yml +1 -0
  651. data/config/locales/sr-CS.yml +122 -0
  652. data/config/locales/sv.yml +342 -40
  653. data/config/locales/ti-ER.yml +1 -0
  654. data/config/locales/tr-TR.yml +14 -19
  655. data/config/locales/uk.yml +10 -15
  656. data/config/locales/vi-VN.yml +1 -0
  657. data/config/locales/vi.yml +1 -0
  658. data/config/locales/zh-CN.yml +1584 -0
  659. data/config/locales/zh-TW.yml +1 -0
  660. data/config/routes.rb +6 -0
  661. data/db/migrate/20180810092428_move_organization_fields_to_hero_content_block.rb +2 -2
  662. data/db/migrate/20191028135718_add_lockable_to_users.rb +10 -0
  663. data/db/migrate/20191113092826_add_omniauth_settings_to_decidim_organization.rb +7 -0
  664. data/db/migrate/20191113144432_add_rich_text_editor_in_public_views_to_organizations.rb +10 -0
  665. data/db/migrate/20191118120529_add_weight_to_categories.rb +7 -0
  666. data/db/migrate/20191118123154_add_admin_terms_of_use_body_field_to_organization.rb +9 -0
  667. data/db/migrate/20191130151925_create_decidim_endorsements.rb +13 -0
  668. data/db/migrate/20191204075509_add_session_token_to_users.rb +7 -0
  669. data/db/migrate/20191212102051_remove_continuity_badges.rb +13 -0
  670. data/db/migrate/20200107142226_add_organization_timezone.rb +7 -0
  671. data/db/migrate/20200211173227_add_direct_message_types_to_users.rb +12 -0
  672. data/db/migrate/20200320105904_index_foreign_keys_in_decidim_action_logs.rb +9 -0
  673. data/db/migrate/20200320105905_index_foreign_keys_in_decidim_amendments.rb +7 -0
  674. data/db/migrate/20200320105909_index_foreign_keys_in_decidim_authorizations.rb +7 -0
  675. data/db/migrate/20200320105917_index_foreign_keys_in_decidim_contextual_help_sections.rb +7 -0
  676. data/db/migrate/20200320105919_index_foreign_keys_in_decidim_endorsements.rb +7 -0
  677. data/db/migrate/20200320105923_index_foreign_keys_in_decidim_notifications.rb +7 -0
  678. data/db/migrate/20200320105927_index_foreign_keys_in_oauth_access_grants.rb +7 -0
  679. data/db/migrate/20200323094443_add_id_to_content_blocks_scope.rb +7 -0
  680. data/db/migrate/20200326102407_rename_scope_column.rb +7 -0
  681. data/db/migrate/20200327082257_migrate_newsletters_to_templates.rb +33 -0
  682. data/db/migrate/20200327082954_remove_newsletter_body.rb +7 -0
  683. data/db/migrate/20200401073419_add_index_on_content_block_scope_id.rb +11 -0
  684. data/db/migrate/20200525184143_add_enable_machine_translation_to_decidim_organizations.rb +7 -0
  685. data/db/migrate/20200702073419_create_decidim_share_tokens.rb +16 -0
  686. data/db/migrate/20200707132401_add_comments_max_length_to_decidim_organization.rb +7 -0
  687. data/db/migrate/20200730142511_add_file_upload_settings_to_decidim_organizations.rb +36 -0
  688. data/db/migrate/20200806092109_add_machine_translation_display_priority_to_organizations.rb +17 -0
  689. data/db/migrate/20201004160335_remove_notifications_with_continuity_badge.rb +9 -0
  690. data/db/seeds.rb +26 -6
  691. data/{app/controllers/concerns → lib}/decidim/action_authorization.rb +0 -0
  692. data/lib/decidim/acts_as_author.rb +21 -0
  693. data/lib/decidim/amendable.rb +7 -4
  694. data/lib/decidim/api/amendable_entity_interface.rb +18 -0
  695. data/lib/decidim/api/amendable_interface.rb +18 -0
  696. data/lib/decidim/api/attachable_interface.rb +1 -1
  697. data/lib/decidim/api/author_interface.rb +4 -0
  698. data/lib/decidim/api/categorizable_interface.rb +1 -1
  699. data/lib/decidim/api/coauthorable_interface.rb +29 -0
  700. data/lib/decidim/api/endorsable_interface.rb +22 -0
  701. data/lib/decidim/api/fingerprint_interface.rb +13 -0
  702. data/lib/decidim/api/participatory_space_interface.rb +11 -9
  703. data/lib/decidim/api/participatory_space_resourceable_interface.rb +21 -0
  704. data/lib/decidim/api/scopable_interface.rb +1 -1
  705. data/lib/decidim/api/timestamps_interface.rb +21 -0
  706. data/lib/decidim/api/traceable_interface.rb +14 -0
  707. data/lib/decidim/authorable.rb +22 -1
  708. data/lib/decidim/authorization_form_builder.rb +7 -0
  709. data/lib/decidim/coauthorable.rb +32 -3
  710. data/lib/decidim/component_manifest.rb +61 -6
  711. data/lib/decidim/content_parsers.rb +1 -0
  712. data/lib/decidim/content_parsers/user_group_parser.rb +61 -0
  713. data/lib/decidim/content_parsers/user_parser.rb +3 -5
  714. data/lib/decidim/content_processor.rb +54 -29
  715. data/lib/decidim/content_renderers.rb +1 -0
  716. data/lib/decidim/content_renderers/base_renderer.rb +1 -1
  717. data/lib/decidim/content_renderers/hashtag_renderer.rb +2 -0
  718. data/lib/decidim/content_renderers/link_renderer.rb +4 -1
  719. data/lib/decidim/content_renderers/user_group_renderer.rb +32 -0
  720. data/lib/decidim/content_renderers/user_renderer.rb +3 -1
  721. data/lib/decidim/core.rb +134 -34
  722. data/lib/decidim/core/api.rb +8 -0
  723. data/lib/decidim/core/engine.rb +149 -27
  724. data/lib/decidim/core/test.rb +18 -0
  725. data/lib/decidim/core/test/factories.rb +157 -10
  726. data/lib/decidim/core/test/shared_examples/acts_as_author_examples.rb +12 -0
  727. data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +79 -0
  728. data/lib/decidim/core/test/shared_examples/amendable/accept_amendment_examples.rb +4 -4
  729. data/lib/decidim/core/test/shared_examples/amendable_interface_examples.rb +14 -0
  730. data/lib/decidim/core/test/shared_examples/amendable_proposals_interface_examples.rb +50 -0
  731. data/lib/decidim/core/test/shared_examples/authorable_interface_examples.rb +3 -0
  732. data/lib/decidim/core/test/shared_examples/back_to_list_button_examples.rb +17 -0
  733. data/lib/decidim/core/test/shared_examples/coauthorable_interface_examples.rb +60 -0
  734. data/lib/decidim/core/test/shared_examples/comments_examples.rb +118 -13
  735. data/lib/decidim/core/test/shared_examples/edit_link_shared_examples.rb +5 -1
  736. data/lib/decidim/core/test/shared_examples/embed_resource_examples.rb +49 -0
  737. data/lib/decidim/core/test/shared_examples/endorsable_interface_examples.rb +22 -0
  738. data/lib/decidim/core/test/shared_examples/endorsements_controller_shared_context.rb +22 -0
  739. data/lib/decidim/core/test/shared_examples/fingerprintable_interface_examples.rb +17 -0
  740. data/lib/decidim/core/test/shared_examples/follows_examples.rb +18 -2
  741. data/lib/decidim/core/test/shared_examples/input_filter_examples.rb +118 -0
  742. data/lib/decidim/core/test/shared_examples/input_sort_examples.rb +126 -0
  743. data/lib/decidim/core/test/shared_examples/logo_email.rb +20 -0
  744. data/lib/decidim/core/test/shared_examples/manage_component_share_tokens.rb +83 -0
  745. data/lib/decidim/core/test/shared_examples/map_examples.rb +186 -0
  746. data/lib/decidim/core/test/shared_examples/metric_manage_shared_context.rb +9 -0
  747. data/lib/decidim/core/test/shared_examples/participatory_space_resourcable_interface_examples.rb +43 -0
  748. data/lib/decidim/core/test/shared_examples/permissions.rb +143 -0
  749. data/lib/decidim/core/test/shared_examples/preview_component_with_share_token_examples.rb +55 -0
  750. data/lib/decidim/core/test/shared_examples/reports_examples.rb +4 -4
  751. data/lib/decidim/core/test/shared_examples/resource_search_examples.rb +200 -0
  752. data/lib/decidim/core/test/shared_examples/rich_text_editor_examples.rb +59 -0
  753. data/lib/decidim/core/test/shared_examples/scopable_resource_examples.rb +43 -0
  754. data/lib/decidim/core/test/shared_examples/scope_helper_examples.rb +12 -1
  755. data/lib/decidim/core/test/shared_examples/searchable_participatory_space_examples.rb +144 -0
  756. data/lib/decidim/core/test/shared_examples/searchable_resources_shared_context.rb +12 -0
  757. data/lib/decidim/core/test/shared_examples/searchable_results_examples.rb +15 -2
  758. data/lib/decidim/core/test/shared_examples/simple_event.rb +8 -0
  759. data/lib/decidim/core/test/shared_examples/system_endorse_resource_examples.rb +166 -0
  760. data/lib/decidim/core/test/shared_examples/timestamps_interface_examples.rb +21 -0
  761. data/lib/decidim/core/test/shared_examples/traceable_interface_examples.rb +47 -0
  762. data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +1 -1
  763. data/lib/decidim/core/test/shared_examples/with_endorsable_permissions_examples.rb +89 -0
  764. data/lib/decidim/core/version.rb +1 -1
  765. data/lib/decidim/deprecations.rb +19 -0
  766. data/lib/decidim/diffy_extension.rb +47 -0
  767. data/lib/decidim/endorsable.rb +25 -0
  768. data/lib/decidim/events.rb +1 -0
  769. data/lib/decidim/events/base_event.rb +11 -9
  770. data/lib/decidim/events/user_group_event.rb +45 -0
  771. data/lib/decidim/exporters.rb +7 -1
  772. data/lib/decidim/exporters/csv.rb +16 -2
  773. data/lib/decidim/exporters/excel.rb +1 -1
  774. data/lib/decidim/exporters/export_manifest.rb +105 -0
  775. data/lib/decidim/exporters/pdf.rb +56 -0
  776. data/lib/decidim/faker/localized.rb +10 -0
  777. data/lib/decidim/file_validator_humanizer.rb +98 -0
  778. data/lib/decidim/filter_form_builder.rb +38 -11
  779. data/lib/decidim/form_builder.rb +240 -44
  780. data/lib/decidim/geocodable.rb +79 -0
  781. data/lib/decidim/has_attachments.rb +11 -1
  782. data/lib/decidim/has_settings.rb +10 -4
  783. data/lib/decidim/has_upload_validations.rb +36 -0
  784. data/lib/decidim/map.rb +214 -0
  785. data/lib/decidim/map/autocomplete.rb +67 -0
  786. data/lib/decidim/map/dynamic_map.rb +89 -0
  787. data/lib/decidim/map/frontend.rb +97 -0
  788. data/lib/decidim/map/geocoding.rb +115 -0
  789. data/lib/decidim/map/provider.rb +12 -0
  790. data/lib/decidim/map/provider/autocomplete/here.rb +20 -0
  791. data/lib/decidim/map/provider/autocomplete/osm.rb +20 -0
  792. data/lib/decidim/map/provider/dynamic_map/here.rb +51 -0
  793. data/lib/decidim/map/provider/dynamic_map/osm.rb +13 -0
  794. data/lib/decidim/map/provider/geocoding/here.rb +58 -0
  795. data/lib/decidim/map/provider/geocoding/osm.rb +30 -0
  796. data/lib/decidim/map/provider/here.rb +21 -0
  797. data/lib/decidim/map/provider/osm.rb +22 -0
  798. data/lib/decidim/map/provider/static_map/here.rb +35 -0
  799. data/lib/decidim/map/provider/static_map/osm.rb +29 -0
  800. data/lib/decidim/map/static_map.rb +133 -0
  801. data/lib/decidim/map/utility.rb +38 -0
  802. data/lib/decidim/organization_settings.rb +267 -0
  803. data/lib/decidim/participable.rb +6 -0
  804. data/lib/decidim/participatory_space_manifest.rb +68 -0
  805. data/lib/decidim/participatory_space_resourceable.rb +43 -1
  806. data/lib/decidim/query_extensions.rb +19 -23
  807. data/lib/decidim/resource_manifest.rb +1 -1
  808. data/lib/decidim/resourceable.rb +1 -1
  809. data/lib/decidim/scopable.rb +19 -6
  810. data/lib/decidim/scopable_component.rb +29 -1
  811. data/lib/decidim/scopable_participatory_space.rb +19 -0
  812. data/lib/decidim/scopable_resource.rb +21 -0
  813. data/lib/decidim/search_resource_fields_mapper.rb +15 -2
  814. data/lib/decidim/searchable.rb +23 -1
  815. data/lib/decidim/settings_manifest.rb +16 -1
  816. data/lib/decidim/shareable_with_token.rb +27 -0
  817. data/lib/decidim/snippets.rb +30 -0
  818. data/lib/decidim/translatable_attributes.rb +42 -4
  819. data/lib/decidim/translatable_resource.rb +78 -0
  820. data/lib/decidim/view_model.rb +5 -0
  821. data/lib/tasks/decidim_data_portability_tasks.rake +66 -5
  822. data/lib/tasks/decidim_locales_tasks.rake +35 -0
  823. data/lib/tasks/decidim_metrics_tasks.rake +18 -7
  824. data/lib/tasks/decidim_tasks.rake +2 -0
  825. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.bg.js +14 -0
  826. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.da.js +14 -0
  827. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.el.js +14 -0
  828. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.eo.js +17 -0
  829. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.et.js +18 -0
  830. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.fr-CA.js +16 -0
  831. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ga.js +15 -0
  832. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.hr.js +13 -0
  833. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.is.js +14 -0
  834. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ja.js +16 -0
  835. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.lt.js +16 -0
  836. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.lv.js +17 -0
  837. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.mt.js +15 -0
  838. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ro.js +15 -0
  839. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.sk.js +14 -0
  840. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.sl.js +14 -0
  841. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.sr.js +16 -0
  842. data/vendor/assets/javascripts/leaflet-tilelayer-here.js +200 -155
  843. data/vendor/assets/javascripts/svg4everybody.min.js +1 -2
  844. data/vendor/assets/javascripts/tribute.js +1690 -1621
  845. metadata +458 -46
  846. data/app/assets/images/decidim/gamification/badges/continuity.svg +0 -73
  847. data/app/assets/javascripts/decidim/vizzs/orgchart.js.es6 +0 -699
  848. data/app/assets/stylesheets/decidim/email.css +0 -1403
  849. data/app/assets/stylesheets/decidim/modules/_input-hashtags.scss +0 -124
  850. data/app/helpers/decidim/multi_translation_helper.rb +0 -0
  851. data/app/models/decidim/continuity_badge_status.rb +0 -9
  852. data/app/models/decidim/participatory_process_user_role.rb +0 -32
  853. data/app/services/decidim/continuity_badge_tracker.rb +0 -64
  854. data/app/views/decidim/messaging/conversations/_message.html.erb +0 -14
  855. data/lib/decidim/components/export_manifest.rb +0 -63
  856. data/lib/decidim/data_portability_file_reader.rb +0 -56
  857. data/lib/decidim/data_portability_file_zipper.rb +0 -67
  858. data/lib/decidim/hashtaggable.rb +0 -24
@@ -1,1403 +0,0 @@
1
- /* Index:
2
- 1 - Foundation settings
3
- 2 - Custom styles
4
- */
5
-
6
-
7
- /* 1 - Foundation settings ---------*/
8
-
9
- .wrapper {
10
- width: 100%; }
11
-
12
- #outlook a {
13
- padding: 0; }
14
-
15
- body {
16
- width: 100% !important;
17
- min-width: 100%;
18
- -webkit-text-size-adjust: 100%;
19
- -ms-text-size-adjust: 100%;
20
- margin: 0;
21
- Margin: 0;
22
- padding: 0;
23
- -moz-box-sizing: border-box;
24
- -webkit-box-sizing: border-box;
25
- box-sizing: border-box; }
26
-
27
- .ExternalClass {
28
- width: 100%; }
29
- .ExternalClass,
30
- .ExternalClass p,
31
- .ExternalClass span,
32
- .ExternalClass font,
33
- .ExternalClass td,
34
- .ExternalClass div {
35
- line-height: 100%; }
36
-
37
- #backgroundTable {
38
- margin: 0;
39
- Margin: 0;
40
- padding: 0;
41
- width: 100% !important;
42
- line-height: 100% !important; }
43
-
44
- img {
45
- outline: none;
46
- text-decoration: none;
47
- -ms-interpolation-mode: bicubic;
48
- width: auto;
49
- max-width: 100%;
50
- clear: both;
51
- display: block; }
52
-
53
- center {
54
- width: 100%;
55
- min-width: 580px; }
56
-
57
- a img {
58
- border: none; }
59
-
60
- p {
61
- margin: 0 0 0 10px;
62
- Margin: 0 0 0 10px; }
63
-
64
- table {
65
- border-spacing: 0;
66
- border-collapse: collapse; }
67
-
68
- td {
69
- word-wrap: break-word;
70
- -webkit-hyphens: auto;
71
- -moz-hyphens: auto;
72
- hyphens: auto;
73
- border-collapse: collapse !important; }
74
-
75
- table, tr, td {
76
- padding: 0;
77
- vertical-align: top;
78
- text-align: left; }
79
-
80
- @media only screen {
81
- html {
82
- min-height: 100%;
83
- background: #f3f3f3; } }
84
-
85
- table.body {
86
- background: #f3f3f3;
87
- height: 100%;
88
- width: 100%; }
89
-
90
- table.container {
91
- width: 580px;
92
- margin: 0 auto;
93
- Margin: 0 auto;
94
- text-align: inherit; }
95
-
96
- table.row {
97
- padding: 0;
98
- width: 100%;
99
- position: relative; }
100
-
101
- table.spacer {
102
- width: 100%; }
103
- table.spacer td {
104
- mso-line-height-rule: exactly; }
105
-
106
- table.container table.row {
107
- display: table; }
108
-
109
- td.columns,
110
- td.column,
111
- th.columns,
112
- th.column {
113
- margin: 0 auto;
114
- Margin: 0 auto;
115
- padding-left: 16px;
116
- padding-bottom: 16px; }
117
- td.columns .column,
118
- td.columns .columns,
119
- td.column .column,
120
- td.column .columns,
121
- th.columns .column,
122
- th.columns .columns,
123
- th.column .column,
124
- th.column .columns {
125
- padding-left: 0 !important;
126
- padding-right: 0 !important; }
127
- td.columns .column center,
128
- td.columns .columns center,
129
- td.column .column center,
130
- td.column .columns center,
131
- th.columns .column center,
132
- th.columns .columns center,
133
- th.column .column center,
134
- th.column .columns center {
135
- min-width: none !important; }
136
-
137
- td.columns.last,
138
- td.column.last,
139
- th.columns.last,
140
- th.column.last {
141
- padding-right: 16px; }
142
-
143
- td.columns table:not(.button),
144
- td.column table:not(.button),
145
- th.columns table:not(.button),
146
- th.column table:not(.button) {
147
- width: 100%; }
148
-
149
- td.large-1,
150
- th.large-1 {
151
- width: 32.33333px;
152
- padding-left: 8px;
153
- padding-right: 8px; }
154
-
155
- td.large-1.first,
156
- th.large-1.first {
157
- padding-left: 16px; }
158
-
159
- td.large-1.last,
160
- th.large-1.last {
161
- padding-right: 16px; }
162
-
163
- .collapse > tbody > tr > td.large-1,
164
- .collapse > tbody > tr > th.large-1 {
165
- padding-right: 0;
166
- padding-left: 0;
167
- width: 48.33333px; }
168
-
169
- .collapse td.large-1.first,
170
- .collapse th.large-1.first,
171
- .collapse td.large-1.last,
172
- .collapse th.large-1.last {
173
- width: 56.33333px; }
174
-
175
- td.large-1 center,
176
- th.large-1 center {
177
- min-width: 0.33333px; }
178
-
179
- .body .columns td.large-1,
180
- .body .column td.large-1,
181
- .body .columns th.large-1,
182
- .body .column th.large-1 {
183
- width: 8.33333%; }
184
-
185
- td.large-2,
186
- th.large-2 {
187
- width: 80.66667px;
188
- padding-left: 8px;
189
- padding-right: 8px; }
190
-
191
- td.large-2.first,
192
- th.large-2.first {
193
- padding-left: 16px; }
194
-
195
- td.large-2.last,
196
- th.large-2.last {
197
- padding-right: 16px; }
198
-
199
- .collapse > tbody > tr > td.large-2,
200
- .collapse > tbody > tr > th.large-2 {
201
- padding-right: 0;
202
- padding-left: 0;
203
- width: 96.66667px; }
204
-
205
- .collapse td.large-2.first,
206
- .collapse th.large-2.first,
207
- .collapse td.large-2.last,
208
- .collapse th.large-2.last {
209
- width: 104.66667px; }
210
-
211
- td.large-2 center,
212
- th.large-2 center {
213
- min-width: 48.66667px; }
214
-
215
- .body .columns td.large-2,
216
- .body .column td.large-2,
217
- .body .columns th.large-2,
218
- .body .column th.large-2 {
219
- width: 16.66667%; }
220
-
221
- td.large-3,
222
- th.large-3 {
223
- width: 129px;
224
- padding-left: 8px;
225
- padding-right: 8px; }
226
-
227
- td.large-3.first,
228
- th.large-3.first {
229
- padding-left: 16px; }
230
-
231
- td.large-3.last,
232
- th.large-3.last {
233
- padding-right: 16px; }
234
-
235
- .collapse > tbody > tr > td.large-3,
236
- .collapse > tbody > tr > th.large-3 {
237
- padding-right: 0;
238
- padding-left: 0;
239
- width: 145px; }
240
-
241
- .collapse td.large-3.first,
242
- .collapse th.large-3.first,
243
- .collapse td.large-3.last,
244
- .collapse th.large-3.last {
245
- width: 153px; }
246
-
247
- td.large-3 center,
248
- th.large-3 center {
249
- min-width: 97px; }
250
-
251
- .body .columns td.large-3,
252
- .body .column td.large-3,
253
- .body .columns th.large-3,
254
- .body .column th.large-3 {
255
- width: 25%; }
256
-
257
- td.large-4,
258
- th.large-4 {
259
- width: 177.33333px;
260
- padding-left: 8px;
261
- padding-right: 8px; }
262
-
263
- td.large-4.first,
264
- th.large-4.first {
265
- padding-left: 16px; }
266
-
267
- td.large-4.last,
268
- th.large-4.last {
269
- padding-right: 16px; }
270
-
271
- .collapse > tbody > tr > td.large-4,
272
- .collapse > tbody > tr > th.large-4 {
273
- padding-right: 0;
274
- padding-left: 0;
275
- width: 193.33333px; }
276
-
277
- .collapse td.large-4.first,
278
- .collapse th.large-4.first,
279
- .collapse td.large-4.last,
280
- .collapse th.large-4.last {
281
- width: 201.33333px; }
282
-
283
- td.large-4 center,
284
- th.large-4 center {
285
- min-width: 145.33333px; }
286
-
287
- .body .columns td.large-4,
288
- .body .column td.large-4,
289
- .body .columns th.large-4,
290
- .body .column th.large-4 {
291
- width: 33.33333%; }
292
-
293
- td.large-5,
294
- th.large-5 {
295
- width: 225.66667px;
296
- padding-left: 8px;
297
- padding-right: 8px; }
298
-
299
- td.large-5.first,
300
- th.large-5.first {
301
- padding-left: 16px; }
302
-
303
- td.large-5.last,
304
- th.large-5.last {
305
- padding-right: 16px; }
306
-
307
- .collapse > tbody > tr > td.large-5,
308
- .collapse > tbody > tr > th.large-5 {
309
- padding-right: 0;
310
- padding-left: 0;
311
- width: 241.66667px; }
312
-
313
- .collapse td.large-5.first,
314
- .collapse th.large-5.first,
315
- .collapse td.large-5.last,
316
- .collapse th.large-5.last {
317
- width: 249.66667px; }
318
-
319
- td.large-5 center,
320
- th.large-5 center {
321
- min-width: 193.66667px; }
322
-
323
- .body .columns td.large-5,
324
- .body .column td.large-5,
325
- .body .columns th.large-5,
326
- .body .column th.large-5 {
327
- width: 41.66667%; }
328
-
329
- td.large-6,
330
- th.large-6 {
331
- width: 274px;
332
- padding-left: 8px;
333
- padding-right: 8px; }
334
-
335
- td.large-6.first,
336
- th.large-6.first {
337
- padding-left: 16px; }
338
-
339
- td.large-6.last,
340
- th.large-6.last {
341
- padding-right: 16px; }
342
-
343
- .collapse > tbody > tr > td.large-6,
344
- .collapse > tbody > tr > th.large-6 {
345
- padding-right: 0;
346
- padding-left: 0;
347
- width: 290px; }
348
-
349
- .collapse td.large-6.first,
350
- .collapse th.large-6.first,
351
- .collapse td.large-6.last,
352
- .collapse th.large-6.last {
353
- width: 298px; }
354
-
355
- td.large-6 center,
356
- th.large-6 center {
357
- min-width: 242px; }
358
-
359
- .body .columns td.large-6,
360
- .body .column td.large-6,
361
- .body .columns th.large-6,
362
- .body .column th.large-6 {
363
- width: 50%; }
364
-
365
- td.large-7,
366
- th.large-7 {
367
- width: 322.33333px;
368
- padding-left: 8px;
369
- padding-right: 8px; }
370
-
371
- td.large-7.first,
372
- th.large-7.first {
373
- padding-left: 16px; }
374
-
375
- td.large-7.last,
376
- th.large-7.last {
377
- padding-right: 16px; }
378
-
379
- .collapse > tbody > tr > td.large-7,
380
- .collapse > tbody > tr > th.large-7 {
381
- padding-right: 0;
382
- padding-left: 0;
383
- width: 338.33333px; }
384
-
385
- .collapse td.large-7.first,
386
- .collapse th.large-7.first,
387
- .collapse td.large-7.last,
388
- .collapse th.large-7.last {
389
- width: 346.33333px; }
390
-
391
- td.large-7 center,
392
- th.large-7 center {
393
- min-width: 290.33333px; }
394
-
395
- .body .columns td.large-7,
396
- .body .column td.large-7,
397
- .body .columns th.large-7,
398
- .body .column th.large-7 {
399
- width: 58.33333%; }
400
-
401
- td.large-8,
402
- th.large-8 {
403
- width: 370.66667px;
404
- padding-left: 8px;
405
- padding-right: 8px; }
406
-
407
- td.large-8.first,
408
- th.large-8.first {
409
- padding-left: 16px; }
410
-
411
- td.large-8.last,
412
- th.large-8.last {
413
- padding-right: 16px; }
414
-
415
- .collapse > tbody > tr > td.large-8,
416
- .collapse > tbody > tr > th.large-8 {
417
- padding-right: 0;
418
- padding-left: 0;
419
- width: 386.66667px; }
420
-
421
- .collapse td.large-8.first,
422
- .collapse th.large-8.first,
423
- .collapse td.large-8.last,
424
- .collapse th.large-8.last {
425
- width: 394.66667px; }
426
-
427
- td.large-8 center,
428
- th.large-8 center {
429
- min-width: 338.66667px; }
430
-
431
- .body .columns td.large-8,
432
- .body .column td.large-8,
433
- .body .columns th.large-8,
434
- .body .column th.large-8 {
435
- width: 66.66667%; }
436
-
437
- td.large-9,
438
- th.large-9 {
439
- width: 419px;
440
- padding-left: 8px;
441
- padding-right: 8px; }
442
-
443
- td.large-9.first,
444
- th.large-9.first {
445
- padding-left: 16px; }
446
-
447
- td.large-9.last,
448
- th.large-9.last {
449
- padding-right: 16px; }
450
-
451
- .collapse > tbody > tr > td.large-9,
452
- .collapse > tbody > tr > th.large-9 {
453
- padding-right: 0;
454
- padding-left: 0;
455
- width: 435px; }
456
-
457
- .collapse td.large-9.first,
458
- .collapse th.large-9.first,
459
- .collapse td.large-9.last,
460
- .collapse th.large-9.last {
461
- width: 443px; }
462
-
463
- td.large-9 center,
464
- th.large-9 center {
465
- min-width: 387px; }
466
-
467
- .body .columns td.large-9,
468
- .body .column td.large-9,
469
- .body .columns th.large-9,
470
- .body .column th.large-9 {
471
- width: 75%; }
472
-
473
- td.large-10,
474
- th.large-10 {
475
- width: 467.33333px;
476
- padding-left: 8px;
477
- padding-right: 8px; }
478
-
479
- td.large-10.first,
480
- th.large-10.first {
481
- padding-left: 16px; }
482
-
483
- td.large-10.last,
484
- th.large-10.last {
485
- padding-right: 16px; }
486
-
487
- .collapse > tbody > tr > td.large-10,
488
- .collapse > tbody > tr > th.large-10 {
489
- padding-right: 0;
490
- padding-left: 0;
491
- width: 483.33333px; }
492
-
493
- .collapse td.large-10.first,
494
- .collapse th.large-10.first,
495
- .collapse td.large-10.last,
496
- .collapse th.large-10.last {
497
- width: 491.33333px; }
498
-
499
- td.large-10 center,
500
- th.large-10 center {
501
- min-width: 435.33333px; }
502
-
503
- .body .columns td.large-10,
504
- .body .column td.large-10,
505
- .body .columns th.large-10,
506
- .body .column th.large-10 {
507
- width: 83.33333%; }
508
-
509
- td.large-11,
510
- th.large-11 {
511
- width: 515.66667px;
512
- padding-left: 8px;
513
- padding-right: 8px; }
514
-
515
- td.large-11.first,
516
- th.large-11.first {
517
- padding-left: 16px; }
518
-
519
- td.large-11.last,
520
- th.large-11.last {
521
- padding-right: 16px; }
522
-
523
- .collapse > tbody > tr > td.large-11,
524
- .collapse > tbody > tr > th.large-11 {
525
- padding-right: 0;
526
- padding-left: 0;
527
- width: 531.66667px; }
528
-
529
- .collapse td.large-11.first,
530
- .collapse th.large-11.first,
531
- .collapse td.large-11.last,
532
- .collapse th.large-11.last {
533
- width: 539.66667px; }
534
-
535
- td.large-11 center,
536
- th.large-11 center {
537
- min-width: 483.66667px; }
538
-
539
- .body .columns td.large-11,
540
- .body .column td.large-11,
541
- .body .columns th.large-11,
542
- .body .column th.large-11 {
543
- width: 91.66667%; }
544
-
545
- td.large-12,
546
- th.large-12 {
547
- width: 564px;
548
- padding-left: 8px;
549
- padding-right: 8px; }
550
-
551
- td.large-12.first,
552
- th.large-12.first {
553
- padding-left: 16px; }
554
-
555
- td.large-12.last,
556
- th.large-12.last {
557
- padding-right: 16px; }
558
-
559
- .collapse > tbody > tr > td.large-12,
560
- .collapse > tbody > tr > th.large-12 {
561
- padding-right: 0;
562
- padding-left: 0;
563
- width: 580px; }
564
-
565
- .collapse td.large-12.first,
566
- .collapse th.large-12.first,
567
- .collapse td.large-12.last,
568
- .collapse th.large-12.last {
569
- width: 588px; }
570
-
571
- td.large-12 center,
572
- th.large-12 center {
573
- min-width: 532px; }
574
-
575
- .body .columns td.large-12,
576
- .body .column td.large-12,
577
- .body .columns th.large-12,
578
- .body .column th.large-12 {
579
- width: 100%; }
580
-
581
- td.large-offset-1,
582
- td.large-offset-1.first,
583
- td.large-offset-1.last,
584
- th.large-offset-1,
585
- th.large-offset-1.first,
586
- th.large-offset-1.last {
587
- padding-left: 64.33333px; }
588
-
589
- td.large-offset-2,
590
- td.large-offset-2.first,
591
- td.large-offset-2.last,
592
- th.large-offset-2,
593
- th.large-offset-2.first,
594
- th.large-offset-2.last {
595
- padding-left: 112.66667px; }
596
-
597
- td.large-offset-3,
598
- td.large-offset-3.first,
599
- td.large-offset-3.last,
600
- th.large-offset-3,
601
- th.large-offset-3.first,
602
- th.large-offset-3.last {
603
- padding-left: 161px; }
604
-
605
- td.large-offset-4,
606
- td.large-offset-4.first,
607
- td.large-offset-4.last,
608
- th.large-offset-4,
609
- th.large-offset-4.first,
610
- th.large-offset-4.last {
611
- padding-left: 209.33333px; }
612
-
613
- td.large-offset-5,
614
- td.large-offset-5.first,
615
- td.large-offset-5.last,
616
- th.large-offset-5,
617
- th.large-offset-5.first,
618
- th.large-offset-5.last {
619
- padding-left: 257.66667px; }
620
-
621
- td.large-offset-6,
622
- td.large-offset-6.first,
623
- td.large-offset-6.last,
624
- th.large-offset-6,
625
- th.large-offset-6.first,
626
- th.large-offset-6.last {
627
- padding-left: 306px; }
628
-
629
- td.large-offset-7,
630
- td.large-offset-7.first,
631
- td.large-offset-7.last,
632
- th.large-offset-7,
633
- th.large-offset-7.first,
634
- th.large-offset-7.last {
635
- padding-left: 354.33333px; }
636
-
637
- td.large-offset-8,
638
- td.large-offset-8.first,
639
- td.large-offset-8.last,
640
- th.large-offset-8,
641
- th.large-offset-8.first,
642
- th.large-offset-8.last {
643
- padding-left: 402.66667px; }
644
-
645
- td.large-offset-9,
646
- td.large-offset-9.first,
647
- td.large-offset-9.last,
648
- th.large-offset-9,
649
- th.large-offset-9.first,
650
- th.large-offset-9.last {
651
- padding-left: 451px; }
652
-
653
- td.large-offset-10,
654
- td.large-offset-10.first,
655
- td.large-offset-10.last,
656
- th.large-offset-10,
657
- th.large-offset-10.first,
658
- th.large-offset-10.last {
659
- padding-left: 499.33333px; }
660
-
661
- td.large-offset-11,
662
- td.large-offset-11.first,
663
- td.large-offset-11.last,
664
- th.large-offset-11,
665
- th.large-offset-11.first,
666
- th.large-offset-11.last {
667
- padding-left: 547.66667px; }
668
-
669
- td.expander,
670
- th.expander {
671
- visibility: hidden;
672
- width: 0;
673
- padding: 0 !important; }
674
-
675
- table.container.radius {
676
- border-radius: 0;
677
- border-collapse: separate; }
678
-
679
- .block-grid {
680
- width: 100%;
681
- max-width: 580px; }
682
- .block-grid td {
683
- display: inline-block;
684
- padding: 8px; }
685
-
686
- .up-2 td {
687
- width: 274px !important; }
688
-
689
- .up-3 td {
690
- width: 177px !important; }
691
-
692
- .up-4 td {
693
- width: 129px !important; }
694
-
695
- .up-5 td {
696
- width: 100px !important; }
697
-
698
- .up-6 td {
699
- width: 80px !important; }
700
-
701
- .up-7 td {
702
- width: 66px !important; }
703
-
704
- .up-8 td {
705
- width: 56px !important; }
706
-
707
- table.text-center,
708
- th.text-center,
709
- td.text-center,
710
- h1.text-center,
711
- h2.text-center,
712
- h3.text-center,
713
- h4.text-center,
714
- h5.text-center,
715
- h6.text-center,
716
- p.text-center,
717
- span.text-center {
718
- text-align: center; }
719
-
720
- table.text-left,
721
- th.text-left,
722
- td.text-left,
723
- h1.text-left,
724
- h2.text-left,
725
- h3.text-left,
726
- h4.text-left,
727
- h5.text-left,
728
- h6.text-left,
729
- p.text-left,
730
- span.text-left {
731
- text-align: left; }
732
-
733
- table.text-right,
734
- th.text-right,
735
- td.text-right,
736
- h1.text-right,
737
- h2.text-right,
738
- h3.text-right,
739
- h4.text-right,
740
- h5.text-right,
741
- h6.text-right,
742
- p.text-right,
743
- span.text-right {
744
- text-align: right; }
745
-
746
- span.text-center {
747
- display: block;
748
- width: 100%;
749
- text-align: center; }
750
-
751
- @media only screen and (max-width: 596px) {
752
- .small-float-center {
753
- margin: 0 auto !important;
754
- float: none !important;
755
- text-align: center !important; }
756
- .small-text-center {
757
- text-align: center !important; }
758
- .small-text-left {
759
- text-align: left !important; }
760
- .small-text-right {
761
- text-align: right !important; } }
762
-
763
- img.float-left {
764
- float: left;
765
- text-align: left; }
766
-
767
- img.float-right {
768
- float: right;
769
- text-align: right; }
770
-
771
- img.float-center,
772
- img.text-center {
773
- margin: 0 auto;
774
- Margin: 0 auto;
775
- float: none;
776
- text-align: center; }
777
-
778
- table.float-center,
779
- td.float-center,
780
- th.float-center {
781
- margin: 0 auto;
782
- Margin: 0 auto;
783
- float: none;
784
- text-align: center; }
785
-
786
- th.float-right {
787
- margin: 0 auto;
788
- Margin: 0 auto;
789
- float: right;
790
- text-align: center; }
791
-
792
- .hide-for-large {
793
- display: none !important;
794
- mso-hide: all;
795
- overflow: hidden;
796
- max-height: 0;
797
- font-size: 0;
798
- width: 0;
799
- line-height: 0; }
800
- @media only screen and (max-width: 596px) {
801
- .hide-for-large {
802
- display: block !important;
803
- width: auto !important;
804
- overflow: visible !important;
805
- max-height: none !important;
806
- font-size: inherit !important;
807
- line-height: inherit !important; } }
808
-
809
- table.body table.container .hide-for-large * {
810
- mso-hide: all; }
811
-
812
- @media only screen and (max-width: 596px) {
813
- table.body table.container .hide-for-large,
814
- table.body table.container .row.hide-for-large {
815
- display: table !important;
816
- width: 100% !important; } }
817
-
818
- @media only screen and (max-width: 596px) {
819
- table.body table.container .callout-inner.hide-for-large {
820
- display: table-cell !important;
821
- width: 100% !important; } }
822
-
823
- @media only screen and (max-width: 596px) {
824
- table.body table.container .show-for-large {
825
- display: none !important;
826
- width: 0;
827
- mso-hide: all;
828
- overflow: hidden; } }
829
-
830
- body,
831
- table.body,
832
- h1,
833
- h2,
834
- h3,
835
- h4,
836
- h5,
837
- h6,
838
- p,
839
- td,
840
- th,
841
- a {
842
- color: #0a0a0a;
843
- font-family: Helvetica, Arial, sans-serif;
844
- font-weight: normal;
845
- padding: 0;
846
- margin: 0;
847
- Margin: 0;
848
- text-align: left;
849
- line-height: 1.3; }
850
-
851
- h1,
852
- h2,
853
- h3,
854
- h4,
855
- h5,
856
- h6 {
857
- color: inherit;
858
- word-wrap: normal;
859
- font-family: Helvetica, Arial, sans-serif;
860
- font-weight: normal;
861
- margin-bottom: 10px;
862
- Margin-bottom: 10px; }
863
-
864
- h1 {
865
- font-size: 34px; }
866
-
867
- h2 {
868
- font-size: 30px; }
869
-
870
- h3 {
871
- font-size: 28px; }
872
-
873
- h4 {
874
- font-size: 24px; }
875
-
876
- h5 {
877
- font-size: 20px; }
878
-
879
- h6 {
880
- font-size: 18px; }
881
-
882
- body,
883
- table.body,
884
- p,
885
- td,
886
- th {
887
- font-size: 16px;
888
- line-height: 1.3; }
889
-
890
- p {
891
- margin-bottom: 10px;
892
- Margin-bottom: 10px; }
893
- p.lead {
894
- font-size: 20px;
895
- line-height: 1.6; }
896
- p.subheader {
897
- margin-top: 4px;
898
- margin-bottom: 8px;
899
- Margin-top: 4px;
900
- Margin-bottom: 8px;
901
- font-weight: normal;
902
- line-height: 1.4;
903
- color: #8a8a8a; }
904
-
905
- small {
906
- font-size: 80%;
907
- color: #cacaca; }
908
-
909
- a {
910
- color: #5295ad;
911
- text-decoration: none; }
912
- a:hover {
913
- color: #147dc2; }
914
- a:active {
915
- color: #147dc2; }
916
- a:visited {
917
- color: #5295ad; }
918
-
919
- h1 a,
920
- h1 a:visited,
921
- h2 a,
922
- h2 a:visited,
923
- h3 a,
924
- h3 a:visited,
925
- h4 a,
926
- h4 a:visited,
927
- h5 a,
928
- h5 a:visited,
929
- h6 a,
930
- h6 a:visited {
931
- color: #5295ad; }
932
-
933
- pre {
934
- background: #f3f3f3;
935
- margin: 30px 0;
936
- Margin: 30px 0; }
937
- pre code {
938
- color: #cacaca; }
939
- pre code span.callout {
940
- color: #8a8a8a;
941
- font-weight: bold; }
942
- pre code span.callout-strong {
943
- color: #ff6908;
944
- font-weight: bold; }
945
-
946
- table.hr {
947
- width: 100%; }
948
- table.hr th {
949
- height: 0;
950
- max-width: 580px;
951
- border-top: 0;
952
- border-right: 0;
953
- border-bottom: 1px solid #0a0a0a;
954
- border-left: 0;
955
- margin: 20px auto;
956
- Margin: 20px auto;
957
- clear: both; }
958
-
959
- .stat {
960
- font-size: 40px;
961
- line-height: 1; }
962
- p + .stat {
963
- margin-top: -16px;
964
- Margin-top: -16px; }
965
-
966
- span.preheader {
967
- display: none !important;
968
- visibility: hidden;
969
- mso-hide: all !important;
970
- font-size: 1px;
971
- color: #f3f3f3;
972
- line-height: 1px;
973
- max-height: 0px;
974
- max-width: 0px;
975
- opacity: 0;
976
- overflow: hidden; }
977
-
978
- table.button {
979
- width: auto;
980
- margin: 0 0 16px 0;
981
- Margin: 0 0 16px 0; }
982
- table.button table td {
983
- text-align: left;
984
- color: #fefefe;
985
- background: #c24b29;
986
- border: 2px solid #c24b29; }
987
- table.button table td a {
988
- font-family: Helvetica, Arial, sans-serif;
989
- font-size: 16px;
990
- font-weight: bold;
991
- color: #fefefe;
992
- text-decoration: none;
993
- display: inline-block;
994
- padding: 8px 16px 8px 16px;
995
- border: 0 solid #c24b29;
996
- border-radius: 3px; }
997
- table.button.radius table td {
998
- border-radius: 3px;
999
- border: none; }
1000
- table.button.rounded table td {
1001
- border-radius: 500px;
1002
- border: none; }
1003
-
1004
- table.button:hover table tr td a,
1005
- table.button:active table tr td a,
1006
- table.button table tr td a:visited,
1007
- table.button.tiny:hover table tr td a,
1008
- table.button.tiny:active table tr td a,
1009
- table.button.tiny table tr td a:visited,
1010
- table.button.small:hover table tr td a,
1011
- table.button.small:active table tr td a,
1012
- table.button.small table tr td a:visited,
1013
- table.button.large:hover table tr td a,
1014
- table.button.large:active table tr td a,
1015
- table.button.large table tr td a:visited {
1016
- color: #fefefe; }
1017
-
1018
- table.button.tiny table td,
1019
- table.button.tiny table a {
1020
- padding: 4px 8px 4px 8px; }
1021
-
1022
- table.button.tiny table a {
1023
- font-size: 10px;
1024
- font-weight: normal; }
1025
-
1026
- table.button.small table td,
1027
- table.button.small table a {
1028
- padding: 5px 10px 5px 10px;
1029
- font-size: 12px; }
1030
-
1031
- table.button.large table a {
1032
- padding: 10px 20px 10px 20px;
1033
- font-size: 20px; }
1034
-
1035
- table.button.expand,
1036
- table.button.expanded {
1037
- width: 100% !important; }
1038
- table.button.expand table,
1039
- table.button.expanded table {
1040
- width: 100%; }
1041
- table.button.expand table a,
1042
- table.button.expanded table a {
1043
- text-align: center;
1044
- width: 100%;
1045
- padding-left: 0;
1046
- padding-right: 0; }
1047
- table.button.expand center,
1048
- table.button.expanded center {
1049
- min-width: 0; }
1050
-
1051
- table.button:hover table td,
1052
- table.button:visited table td,
1053
- table.button:active table td {
1054
- background: #147dc2;
1055
- color: #fefefe; }
1056
-
1057
- table.button:hover table a,
1058
- table.button:visited table a,
1059
- table.button:active table a {
1060
- border: 0 solid #147dc2; }
1061
-
1062
- table.button.secondary table td {
1063
- background: #777777;
1064
- color: #fefefe;
1065
- border: 0px solid #777777; }
1066
-
1067
- table.button.secondary table a {
1068
- color: #fefefe;
1069
- border: 0 solid #777777; }
1070
-
1071
- table.button.secondary:hover table td {
1072
- background: #919191;
1073
- color: #fefefe; }
1074
-
1075
- table.button.secondary:hover table a {
1076
- border: 0 solid #919191; }
1077
-
1078
- table.button.secondary:hover table td a {
1079
- color: #fefefe; }
1080
-
1081
- table.button.secondary:active table td a {
1082
- color: #fefefe; }
1083
-
1084
- table.button.secondary table td a:visited {
1085
- color: #fefefe; }
1086
-
1087
- table.button.success table td {
1088
- background: #3adb76;
1089
- border: 0px solid #3adb76; }
1090
-
1091
- table.button.success table a {
1092
- border: 0 solid #3adb76; }
1093
-
1094
- table.button.success:hover table td {
1095
- background: #23bf5d; }
1096
-
1097
- table.button.success:hover table a {
1098
- border: 0 solid #23bf5d; }
1099
-
1100
- table.button.alert table td {
1101
- background: #ec5840;
1102
- border: 0px solid #ec5840; }
1103
-
1104
- table.button.alert table a {
1105
- border: 0 solid #ec5840; }
1106
-
1107
- table.button.alert:hover table td {
1108
- background: #e23317; }
1109
-
1110
- table.button.alert:hover table a {
1111
- border: 0 solid #e23317; }
1112
-
1113
- table.button.warning table td {
1114
- background: #ffae00;
1115
- border: 0px solid #ffae00; }
1116
-
1117
- table.button.warning table a {
1118
- border: 0px solid #ffae00; }
1119
-
1120
- table.button.warning:hover table td {
1121
- background: #cc8b00; }
1122
-
1123
- table.button.warning:hover table a {
1124
- border: 0px solid #cc8b00; }
1125
-
1126
- table.callout {
1127
- margin-bottom: 16px;
1128
- Margin-bottom: 16px; }
1129
-
1130
- th.callout-inner {
1131
- width: 100%;
1132
- border: 1px solid #cbcbcb;
1133
- padding: 10px;
1134
- background: #fefefe; }
1135
- th.callout-inner.primary {
1136
- background: #def0fc;
1137
- border: 1px solid #444444;
1138
- color: #0a0a0a; }
1139
- th.callout-inner.secondary {
1140
- background: #ebebeb;
1141
- border: 1px solid #444444;
1142
- color: #0a0a0a; }
1143
- th.callout-inner.success {
1144
- background: #e1faea;
1145
- border: 1px solid #1b9448;
1146
- color: #fefefe; }
1147
- th.callout-inner.warning {
1148
- background: #fff3d9;
1149
- border: 1px solid #996800;
1150
- color: #fefefe; }
1151
- th.callout-inner.alert {
1152
- background: #fce6e2;
1153
- border: 1px solid #b42912;
1154
- color: #fefefe; }
1155
-
1156
- .thumbnail {
1157
- border: solid 4px #fefefe;
1158
- box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
1159
- display: inline-block;
1160
- line-height: 0;
1161
- max-width: 100%;
1162
- transition: box-shadow 200ms ease-out;
1163
- border-radius: 3px;
1164
- margin-bottom: 16px; }
1165
- .thumbnail:hover, .thumbnail:focus {
1166
- box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5); }
1167
-
1168
- table.menu {
1169
- width: 580px; }
1170
- table.menu td.menu-item,
1171
- table.menu th.menu-item {
1172
- padding: 10px;
1173
- padding-right: 10px; }
1174
- table.menu td.menu-item a,
1175
- table.menu th.menu-item a {
1176
- color: #5295ad; }
1177
-
1178
- table.menu.vertical td.menu-item,
1179
- table.menu.vertical th.menu-item {
1180
- padding: 10px;
1181
- padding-right: 0;
1182
- display: block; }
1183
- table.menu.vertical td.menu-item a,
1184
- table.menu.vertical th.menu-item a {
1185
- width: 100%; }
1186
-
1187
- table.menu.vertical td.menu-item table.menu.vertical td.menu-item,
1188
- table.menu.vertical td.menu-item table.menu.vertical th.menu-item,
1189
- table.menu.vertical th.menu-item table.menu.vertical td.menu-item,
1190
- table.menu.vertical th.menu-item table.menu.vertical th.menu-item {
1191
- padding-left: 10px; }
1192
-
1193
- table.menu.text-center a {
1194
- text-align: center; }
1195
-
1196
- .menu[align="center"] {
1197
- width: auto !important; }
1198
-
1199
- body.outlook p {
1200
- display: inline !important; }
1201
-
1202
- @media only screen and (max-width: 596px) {
1203
- table.body img {
1204
- width: auto;
1205
- height: auto; }
1206
- table.body center {
1207
- min-width: 0 !important; }
1208
- table.body .container {
1209
- width: 95% !important; }
1210
- table.body .columns,
1211
- table.body .column {
1212
- height: auto !important;
1213
- -moz-box-sizing: border-box;
1214
- -webkit-box-sizing: border-box;
1215
- box-sizing: border-box;
1216
- padding-left: 16px !important;
1217
- padding-right: 16px !important; }
1218
- table.body .columns .column,
1219
- table.body .columns .columns,
1220
- table.body .column .column,
1221
- table.body .column .columns {
1222
- padding-left: 0 !important;
1223
- padding-right: 0 !important; }
1224
- table.body .collapse .columns,
1225
- table.body .collapse .column {
1226
- padding-left: 0 !important;
1227
- padding-right: 0 !important; }
1228
- td.small-1,
1229
- th.small-1 {
1230
- display: inline-block !important;
1231
- width: 8.33333% !important; }
1232
- td.small-2,
1233
- th.small-2 {
1234
- display: inline-block !important;
1235
- width: 16.66667% !important; }
1236
- td.small-3,
1237
- th.small-3 {
1238
- display: inline-block !important;
1239
- width: 25% !important; }
1240
- td.small-4,
1241
- th.small-4 {
1242
- display: inline-block !important;
1243
- width: 33.33333% !important; }
1244
- td.small-5,
1245
- th.small-5 {
1246
- display: inline-block !important;
1247
- width: 41.66667% !important; }
1248
- td.small-6,
1249
- th.small-6 {
1250
- display: inline-block !important;
1251
- width: 50% !important; }
1252
- td.small-7,
1253
- th.small-7 {
1254
- display: inline-block !important;
1255
- width: 58.33333% !important; }
1256
- td.small-8,
1257
- th.small-8 {
1258
- display: inline-block !important;
1259
- width: 66.66667% !important; }
1260
- td.small-9,
1261
- th.small-9 {
1262
- display: inline-block !important;
1263
- width: 75% !important; }
1264
- td.small-10,
1265
- th.small-10 {
1266
- display: inline-block !important;
1267
- width: 83.33333% !important; }
1268
- td.small-11,
1269
- th.small-11 {
1270
- display: inline-block !important;
1271
- width: 91.66667% !important; }
1272
- td.small-12,
1273
- th.small-12 {
1274
- display: inline-block !important;
1275
- width: 100% !important; }
1276
- .columns td.small-12,
1277
- .column td.small-12,
1278
- .columns th.small-12,
1279
- .column th.small-12 {
1280
- display: block !important;
1281
- width: 100% !important; }
1282
- table.body td.small-offset-1,
1283
- table.body th.small-offset-1 {
1284
- margin-left: 8.33333% !important;
1285
- Margin-left: 8.33333% !important; }
1286
- table.body td.small-offset-2,
1287
- table.body th.small-offset-2 {
1288
- margin-left: 16.66667% !important;
1289
- Margin-left: 16.66667% !important; }
1290
- table.body td.small-offset-3,
1291
- table.body th.small-offset-3 {
1292
- margin-left: 25% !important;
1293
- Margin-left: 25% !important; }
1294
- table.body td.small-offset-4,
1295
- table.body th.small-offset-4 {
1296
- margin-left: 33.33333% !important;
1297
- Margin-left: 33.33333% !important; }
1298
- table.body td.small-offset-5,
1299
- table.body th.small-offset-5 {
1300
- margin-left: 41.66667% !important;
1301
- Margin-left: 41.66667% !important; }
1302
- table.body td.small-offset-6,
1303
- table.body th.small-offset-6 {
1304
- margin-left: 50% !important;
1305
- Margin-left: 50% !important; }
1306
- table.body td.small-offset-7,
1307
- table.body th.small-offset-7 {
1308
- margin-left: 58.33333% !important;
1309
- Margin-left: 58.33333% !important; }
1310
- table.body td.small-offset-8,
1311
- table.body th.small-offset-8 {
1312
- margin-left: 66.66667% !important;
1313
- Margin-left: 66.66667% !important; }
1314
- table.body td.small-offset-9,
1315
- table.body th.small-offset-9 {
1316
- margin-left: 75% !important;
1317
- Margin-left: 75% !important; }
1318
- table.body td.small-offset-10,
1319
- table.body th.small-offset-10 {
1320
- margin-left: 83.33333% !important;
1321
- Margin-left: 83.33333% !important; }
1322
- table.body td.small-offset-11,
1323
- table.body th.small-offset-11 {
1324
- margin-left: 91.66667% !important;
1325
- Margin-left: 91.66667% !important; }
1326
- table.body table.columns td.expander,
1327
- table.body table.columns th.expander {
1328
- display: none !important; }
1329
- table.body .right-text-pad,
1330
- table.body .text-pad-right {
1331
- padding-left: 10px !important; }
1332
- table.body .left-text-pad,
1333
- table.body .text-pad-left {
1334
- padding-right: 10px !important; }
1335
- table.menu {
1336
- width: 100% !important; }
1337
- table.menu td,
1338
- table.menu th {
1339
- width: auto !important;
1340
- display: inline-block !important; }
1341
- table.menu.vertical td,
1342
- table.menu.vertical th, table.menu.small-vertical td,
1343
- table.menu.small-vertical th {
1344
- display: block !important; }
1345
- table.menu[align="center"] {
1346
- width: auto !important; }
1347
- table.button.small-expand,
1348
- table.button.small-expanded {
1349
- width: 100% !important; }
1350
- table.button.small-expand table,
1351
- table.button.small-expanded table {
1352
- width: 100%; }
1353
- table.button.small-expand table a,
1354
- table.button.small-expanded table a {
1355
- text-align: center !important;
1356
- width: 100% !important;
1357
- padding-left: 0 !important;
1358
- padding-right: 0 !important; }
1359
- table.button.small-expand center,
1360
- table.button.small-expanded center {
1361
- min-width: 0; } }
1362
-
1363
-
1364
- /* 2 - Custom styles ---------*/
1365
-
1366
- table.body th.decidim-bar, table.body td.decidim-bar{
1367
- padding: 10px 0;
1368
- background-color: #1a181d;
1369
- }
1370
-
1371
- table.body{
1372
- background-color: #f3f3f3;
1373
- margin: 20px 0;
1374
- }
1375
-
1376
- .decidim-logo{
1377
- margin-top: 16px;
1378
- }
1379
-
1380
- .decidim-logo a{
1381
- display: inline-block;
1382
- height: 30px;
1383
- }
1384
-
1385
- .cityhall-bar{
1386
- background-color: #2c2930;
1387
- }
1388
-
1389
- .cityhall-logo{
1390
- width: 150px;
1391
- margin-top: 16px;
1392
- }
1393
-
1394
- .footnote, .headnote {
1395
- padding-top: 10px;
1396
- color: #666;
1397
- font-size: 12px;
1398
- }
1399
-
1400
-
1401
- table.container.main {
1402
- background: #fefefe;
1403
- }