decidim-core 0.21.0 → 0.22.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 (544) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/decidim_core_manifest.js +3 -0
  3. data/app/assets/fonts/decidim/Roboto-Regular.svg +1 -10520
  4. data/app/assets/fonts/decidim/Source_Sans_Pro_400.svg +1 -345
  5. data/app/assets/fonts/decidim/Source_Sans_Pro_600.svg +1 -339
  6. data/app/assets/fonts/decidim/Source_Sans_Pro_900.svg +1 -342
  7. data/app/assets/images/decidim/avatar-multiuser.png +0 -0
  8. data/app/assets/images/decidim/brands/google.svg +1 -1
  9. data/app/assets/images/decidim/decidim-logo.svg +1 -71
  10. data/app/assets/images/decidim/default-avatar.svg +1 -14
  11. data/app/assets/images/decidim/gamification/badges/followers.svg +1 -115
  12. data/app/assets/images/decidim/gamification/badges/invitations.svg +1 -117
  13. data/app/assets/images/decidim/icons.svg +1 -259
  14. data/app/assets/images/decidim/placeholder.jpg +0 -0
  15. data/app/assets/javascripts/decidim.js.es6 +23 -1
  16. data/app/assets/javascripts/decidim/ajax_modals.js.es6 +3 -0
  17. data/app/assets/javascripts/decidim/assets.js.erb +5 -0
  18. data/app/assets/javascripts/decidim/callout.js.es6 +18 -0
  19. data/app/assets/javascripts/decidim/configuration.js.es6 +23 -0
  20. data/app/assets/javascripts/decidim/confirm.js.es6 +178 -0
  21. data/app/assets/javascripts/decidim/conversations.js.es6 +17 -0
  22. data/app/assets/javascripts/decidim/core/bundle.js +1 -1
  23. data/app/assets/javascripts/decidim/core/bundle.js.map +1 -1
  24. data/app/assets/javascripts/decidim/core/extrapoly.js +6 -0
  25. data/app/assets/javascripts/decidim/data_picker.js.es6 +128 -50
  26. data/app/assets/javascripts/decidim/diff_mode_dropdown.js.es6 +5 -7
  27. data/app/assets/javascripts/decidim/dropdowns_menus.js.es6 +32 -0
  28. data/app/assets/javascripts/decidim/external_link.js.es6 +69 -0
  29. data/app/assets/javascripts/decidim/floating_help.js.es6 +7 -0
  30. data/app/assets/javascripts/decidim/form_filter.component.js.es6 +1 -1
  31. data/app/assets/javascripts/decidim/form_filter.component.test.js +4 -4
  32. data/app/assets/javascripts/decidim/form_validator.es6 +61 -0
  33. data/app/assets/javascripts/decidim/foundation.js.es6 +28 -28
  34. data/app/assets/javascripts/decidim/icon.js.es6 +42 -0
  35. data/app/assets/javascripts/decidim/identity_selector_dialog.js.es6 +61 -0
  36. data/app/assets/javascripts/decidim/input_character_counter.js.es6 +115 -0
  37. data/app/assets/javascripts/decidim/input_mentions.js.es6 +34 -9
  38. data/app/assets/javascripts/decidim/input_multiple_mentions.js.es6 +195 -0
  39. data/app/assets/javascripts/decidim/map.js.es6 +40 -3
  40. data/app/assets/javascripts/decidim/orders.js.es6 +9 -28
  41. data/app/assets/javascripts/decidim/responsive_horizontal_tabs.js.es6 +12 -0
  42. data/app/assets/javascripts/decidim/results_listing.js.es6 +44 -0
  43. data/app/assets/javascripts/decidim/start_conversation_dialog.js +13 -0
  44. data/app/assets/javascripts/decidim/vizzs.js.es6 +1 -0
  45. data/app/assets/stylesheets/decidim/_decidim-settings.scss +5 -0
  46. data/app/assets/stylesheets/decidim/_decidim.scss +13 -11
  47. data/app/assets/stylesheets/decidim/_properties.scss +25 -0
  48. data/app/assets/stylesheets/decidim/_variables.scss +6 -24
  49. data/app/assets/stylesheets/decidim/application.scss.erb +2 -2
  50. data/app/assets/stylesheets/decidim/editor.scss +2 -2
  51. data/app/assets/stylesheets/decidim/email.scss +1771 -0
  52. data/app/assets/stylesheets/decidim/extras/_external-links.scss +29 -0
  53. data/app/assets/stylesheets/decidim/extras/_extras.scss +17 -0
  54. data/app/assets/stylesheets/decidim/extras/_label-required.scss +9 -0
  55. data/app/assets/stylesheets/decidim/extras/_process_stats.scss +1 -1
  56. data/app/assets/stylesheets/decidim/extras/_quill.scss +5 -0
  57. data/app/assets/stylesheets/decidim/extras/_results-per-page.scss +8 -0
  58. data/app/assets/stylesheets/decidim/layouts/_home.scss +31 -7
  59. data/app/assets/stylesheets/decidim/layouts/_layouts.scss +5 -0
  60. data/app/assets/stylesheets/decidim/layouts/_logo.scss +26 -0
  61. data/app/assets/stylesheets/decidim/layouts/_user.scss +4 -0
  62. data/app/assets/stylesheets/decidim/modules/_author-avatar.scss +9 -13
  63. data/app/assets/stylesheets/decidim/modules/_buttons.scss +198 -26
  64. data/app/assets/stylesheets/decidim/modules/_cards.scss +174 -23
  65. data/app/assets/stylesheets/decidim/modules/_collapsible-list.scss +21 -0
  66. data/app/assets/stylesheets/decidim/modules/_comments.scss +25 -1
  67. data/app/assets/stylesheets/decidim/modules/_conference-programme.scss +0 -1
  68. data/app/assets/stylesheets/decidim/modules/_confirm.scss +5 -0
  69. data/app/assets/stylesheets/decidim/modules/_conversation.scss +50 -0
  70. data/app/assets/stylesheets/decidim/modules/_data-picker.scss +9 -11
  71. data/app/assets/stylesheets/decidim/modules/_definition-data.scss +6 -1
  72. data/app/assets/stylesheets/decidim/modules/_docs-manager.scss +0 -1
  73. data/app/assets/stylesheets/decidim/modules/_extra.scss +0 -2
  74. data/app/assets/stylesheets/decidim/modules/_filters.scss +25 -1
  75. data/app/assets/stylesheets/decidim/modules/_floating-helper.scss +20 -8
  76. data/app/assets/stylesheets/decidim/modules/_footer.scss +8 -4
  77. data/app/assets/stylesheets/decidim/modules/_forms.scss +63 -4
  78. data/app/assets/stylesheets/decidim/modules/_horizontal-tabs.scss +64 -1
  79. data/app/assets/stylesheets/decidim/modules/_inline-filters.scss +6 -3
  80. data/app/assets/stylesheets/decidim/modules/_input-gallery.scss +10 -0
  81. data/app/assets/stylesheets/decidim/modules/_input-mentions.scss +25 -7
  82. data/app/assets/stylesheets/decidim/modules/_input-multiple-mentions.scss +5 -0
  83. data/app/assets/stylesheets/decidim/modules/_map.scss +11 -0
  84. data/app/assets/stylesheets/decidim/modules/_margins.scss +8 -7
  85. data/app/assets/stylesheets/decidim/modules/_messages.scss +18 -18
  86. data/app/assets/stylesheets/decidim/modules/_modules.scss +75 -72
  87. data/app/assets/stylesheets/decidim/modules/_navbar.scss +176 -26
  88. data/app/assets/stylesheets/decidim/modules/_notification.scss +5 -0
  89. data/app/assets/stylesheets/decidim/modules/_order-by.scss +5 -0
  90. data/app/assets/stylesheets/decidim/modules/_process-nav.scss +5 -2
  91. data/app/assets/stylesheets/decidim/modules/_process-phase.scss +2 -4
  92. data/app/assets/stylesheets/decidim/modules/_process-stats.scss +2 -2
  93. data/app/assets/stylesheets/decidim/modules/_progress-bar.scss +1 -1
  94. data/app/assets/stylesheets/decidim/modules/_reveal.scss +6 -0
  95. data/app/assets/stylesheets/decidim/modules/_signup.scss +6 -5
  96. data/app/assets/stylesheets/decidim/modules/_static-pages.scss +0 -1
  97. data/app/assets/stylesheets/decidim/modules/_sticky.scss +5 -0
  98. data/app/assets/stylesheets/decidim/modules/_tags.scss +4 -0
  99. data/app/assets/stylesheets/decidim/modules/_timeline.scss +1 -2
  100. data/app/assets/stylesheets/decidim/modules/_typography.scss +47 -8
  101. data/app/assets/stylesheets/decidim/modules/_versions.scss +0 -1
  102. data/app/assets/stylesheets/decidim/utils/_helpers.scss +8 -0
  103. data/app/assets/stylesheets/decidim/utils/_mixins.scss +86 -7
  104. data/app/assets/stylesheets/decidim/utils/_settings.scss +81 -69
  105. data/app/assets/stylesheets/decidim/vizzs.scss +8 -0
  106. data/app/assets/stylesheets/decidim/vizzs/_areachart.scss +0 -1
  107. data/app/assets/stylesheets/decidim/vizzs/_linechart.scss +0 -1
  108. data/app/assets/stylesheets/decidim/vizzs/_rowchart.scss +0 -1
  109. data/app/assets/stylesheets/decidim/vizzs/_vizzs.scss +5 -0
  110. data/app/assets/stylesheets/foundation-overrides/components/_button-group.scss +319 -0
  111. data/app/cells/decidim/activity/show.erb +24 -21
  112. data/app/cells/decidim/activity_cell.rb +2 -0
  113. data/app/cells/decidim/address_cell.rb +1 -1
  114. data/app/cells/decidim/amendable/amend_button_card_cell.rb +1 -5
  115. data/app/cells/decidim/amendable/promote_button_card_cell.rb +1 -1
  116. data/app/cells/decidim/announcement/show.erb +1 -1
  117. data/app/cells/decidim/author/comments.erb +1 -1
  118. data/app/cells/decidim/author/endorsements.erb +6 -0
  119. data/app/cells/decidim/author/flag.erb +5 -2
  120. data/app/cells/decidim/author/profile_inline.erb +0 -1
  121. data/app/cells/decidim/author/show.erb +2 -0
  122. data/app/cells/decidim/author/withdraw.erb +2 -2
  123. data/app/cells/decidim/author_cell.rb +9 -13
  124. data/app/cells/decidim/badge/show.erb +6 -6
  125. data/app/cells/decidim/badge/small.erb +2 -1
  126. data/app/cells/decidim/card/show.erb +4 -4
  127. data/app/cells/decidim/card_m/comments_counter.erb +1 -1
  128. data/app/cells/decidim/card_m/header.erb +4 -4
  129. data/app/cells/decidim/card_m/image.erb +1 -1
  130. data/app/cells/decidim/card_m/show.erb +2 -2
  131. data/app/cells/decidim/card_m_cell.rb +3 -2
  132. data/app/cells/decidim/collapsible_list/show.erb +3 -3
  133. data/app/cells/decidim/content_blocks/footer_sub_hero/show.erb +4 -4
  134. data/app/cells/decidim/content_blocks/hero_settings_form/show.erb +2 -2
  135. data/app/cells/decidim/content_blocks/how_to_participate/show.erb +8 -8
  136. data/app/cells/decidim/content_blocks/last_activity_cell.rb +1 -1
  137. data/app/cells/decidim/content_blocks/stats/show.erb +1 -1
  138. data/app/cells/decidim/content_blocks/sub_hero/show.erb +3 -3
  139. data/app/cells/decidim/diff/attribute.erb +10 -10
  140. data/app/cells/decidim/diff_cell.rb +11 -1
  141. data/app/cells/decidim/endorsement_buttons/select_identity_button.erb +10 -0
  142. data/app/cells/decidim/endorsement_buttons/show.erb +4 -0
  143. data/app/cells/decidim/endorsement_buttons_cell.rb +208 -0
  144. data/app/cells/decidim/endorsers_list/show.erb +16 -0
  145. data/app/cells/decidim/endorsers_list_cell.rb +29 -0
  146. data/app/cells/decidim/fingerprint_cell.rb +1 -0
  147. data/app/cells/decidim/follow_button/show.erb +13 -5
  148. data/app/cells/decidim/follow_button_cell.rb +29 -5
  149. data/app/cells/decidim/navbar_admin_link/show.erb +1 -1
  150. data/app/cells/decidim/navbar_admin_link_cell.rb +6 -0
  151. data/app/cells/decidim/newsletter_templates/base_cell.rb +30 -0
  152. data/app/cells/decidim/newsletter_templates/base_settings_form_cell.rb +13 -0
  153. data/app/cells/decidim/newsletter_templates/basic_only_text/show.erb +86 -0
  154. data/app/cells/decidim/newsletter_templates/basic_only_text_cell.rb +21 -0
  155. data/app/cells/decidim/newsletter_templates/basic_only_text_settings_form/show.erb +7 -0
  156. data/app/cells/decidim/newsletter_templates/basic_only_text_settings_form_cell.rb +8 -0
  157. data/app/cells/decidim/newsletter_templates/image_text_cta/show.erb +125 -0
  158. data/app/cells/decidim/newsletter_templates/image_text_cta_cell.rb +61 -0
  159. data/app/cells/decidim/newsletter_templates/image_text_cta_settings_form/show.erb +17 -0
  160. data/app/cells/decidim/newsletter_templates/image_text_cta_settings_form_cell.rb +8 -0
  161. data/app/cells/decidim/notifications/show.erb +1 -1
  162. data/app/cells/decidim/profile/show.erb +2 -2
  163. data/app/cells/decidim/profile/user_group_tabs.erb +10 -5
  164. data/app/cells/decidim/profile/user_tabs.erb +16 -14
  165. data/app/cells/decidim/profile_cell.rb +18 -0
  166. data/app/cells/decidim/profile_sidebar/show.erb +16 -16
  167. data/app/cells/decidim/profile_sidebar_cell.rb +1 -0
  168. data/app/cells/decidim/search_results_section/show.erb +1 -1
  169. data/app/cells/decidim/tags_cell.rb +32 -2
  170. data/app/cells/decidim/user_activity/show.erb +19 -1
  171. data/app/cells/decidim/user_activity_cell.rb +6 -0
  172. data/app/cells/decidim/user_conversation/conversation_header.erb +14 -0
  173. data/app/cells/decidim/user_conversation/messages.erb +15 -0
  174. data/app/cells/decidim/user_conversation/new.erb +15 -0
  175. data/app/cells/decidim/user_conversation/reply.erb +17 -0
  176. data/app/cells/decidim/user_conversation/show.erb +20 -0
  177. data/app/cells/decidim/user_conversation_cell.rb +75 -0
  178. data/app/cells/decidim/user_conversations/add_conversation_users.erb +25 -0
  179. data/app/cells/decidim/user_conversations/conversation_item.erb +38 -0
  180. data/app/cells/decidim/user_conversations/show.erb +58 -0
  181. data/app/cells/decidim/user_conversations_cell.rb +40 -0
  182. data/app/cells/decidim/user_group_admin_membership_profile/footer.erb +3 -3
  183. data/app/cells/decidim/user_profile/footer.erb +1 -1
  184. data/app/cells/decidim/user_profile/unlinked_user_data.erb +16 -0
  185. data/app/cells/decidim/user_profile/user_data.erb +1 -1
  186. data/app/cells/decidim/user_profile_cell.rb +7 -1
  187. data/app/cells/decidim/user_timeline_cell.rb +4 -0
  188. data/app/cells/decidim/version/show.erb +31 -0
  189. data/app/{views/decidim/shared/_version_author.html.erb → cells/decidim/version_author/show.erb} +1 -1
  190. data/app/cells/decidim/version_author_cell.rb +9 -0
  191. data/app/cells/decidim/version_cell.rb +83 -0
  192. data/app/cells/decidim/versions_list/show.erb +32 -0
  193. data/app/cells/decidim/versions_list_cell.rb +64 -0
  194. data/app/cells/decidim/versions_list_item/show.erb +20 -0
  195. data/app/cells/decidim/versions_list_item_cell.rb +51 -0
  196. data/app/cells/decidim/wizard_step_form/wizard_aside.erb +1 -1
  197. data/app/cells/decidim/wizard_step_form/wizard_header.erb +2 -2
  198. data/app/cells/decidim/wizard_step_form_cell.rb +4 -1
  199. data/app/commands/decidim/attachment_methods.rb +40 -0
  200. data/app/commands/decidim/create_registration.rb +2 -1
  201. data/app/commands/decidim/create_user_group.rb +12 -0
  202. data/app/commands/decidim/destroy_account.rb +12 -0
  203. data/app/commands/decidim/endorse_resource.rb +64 -0
  204. data/app/commands/decidim/gallery_methods.rb +64 -0
  205. data/app/commands/decidim/invite_user_again.rb +2 -4
  206. data/app/commands/decidim/messaging/reply_to_conversation.rb +34 -3
  207. data/app/commands/decidim/messaging/start_conversation.rb +36 -5
  208. data/app/commands/decidim/unendorse_resource.rb +38 -0
  209. data/app/commands/decidim/update_notifications_settings.rb +1 -0
  210. data/app/commands/decidim/update_user_group.rb +14 -1
  211. data/app/controllers/concerns/decidim/impersonate_users.rb +13 -0
  212. data/app/controllers/concerns/decidim/resource_versions_concern.rb +28 -0
  213. data/app/controllers/decidim/devise/registrations_controller.rb +2 -4
  214. data/app/controllers/decidim/devise/sessions_controller.rb +5 -0
  215. data/app/controllers/decidim/endorsements_controller.rb +71 -0
  216. data/app/controllers/decidim/messaging/conversations_controller.rb +52 -12
  217. data/app/controllers/decidim/newsletters_controller.rb +2 -2
  218. data/app/controllers/decidim/profiles_controller.rb +6 -0
  219. data/app/controllers/decidim/scopes_controller.rb +1 -0
  220. data/app/controllers/decidim/user_activities_controller.rb +19 -2
  221. data/app/controllers/decidim/user_conversations_controller.rb +142 -0
  222. data/app/controllers/decidim/user_timeline_controller.rb +19 -2
  223. data/app/events/decidim/resource_endorsed_event.rb +35 -0
  224. data/app/events/decidim/user_group_admin_event.rb +37 -0
  225. data/app/events/decidim/user_group_created_event.rb +6 -0
  226. data/app/events/decidim/user_group_updated_event.rb +6 -0
  227. data/app/forms/decidim/attachment_form.rb +1 -0
  228. data/app/forms/decidim/messaging/conversation_form.rb +10 -4
  229. data/app/forms/decidim/notifications_settings_form.rb +6 -0
  230. data/app/forms/decidim/registration_form.rb +1 -0
  231. data/app/functions/decidim/core/component_finder_base.rb +10 -3
  232. data/app/functions/decidim/core/component_list_base.rb +8 -2
  233. data/app/functions/decidim/core/user_entity_finder.rb +33 -0
  234. data/app/functions/decidim/core/user_entity_list.rb +31 -0
  235. data/app/helpers/concerns/decidim/flash_helper_extensions.rb +47 -0
  236. data/app/helpers/decidim/action_authorization_helper.rb +24 -2
  237. data/app/helpers/decidim/amendments_helper.rb +5 -3
  238. data/app/helpers/decidim/application_helper.rb +7 -1
  239. data/app/helpers/decidim/check_boxes_tree_helper.rb +4 -5
  240. data/app/helpers/decidim/cta_button_helper.rb +1 -1
  241. data/app/helpers/decidim/decidim_form_helper.rb +23 -0
  242. data/app/helpers/decidim/endorsable_helper.rb +93 -0
  243. data/app/helpers/decidim/filters_helper.rb +15 -5
  244. data/app/helpers/decidim/followable_helper.rb +11 -0
  245. data/app/helpers/decidim/layout_helper.rb +23 -5
  246. data/app/helpers/decidim/map_helper.rb +15 -2
  247. data/app/helpers/decidim/markup_helper.rb +9 -0
  248. data/app/helpers/decidim/messaging/conversation_helper.rb +61 -7
  249. data/app/helpers/decidim/orders_helper.rb +10 -1
  250. data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
  251. data/app/helpers/decidim/resource_versions_helper.rb +24 -7
  252. data/app/helpers/decidim/rich_text_editor_helper.rb +1 -0
  253. data/app/helpers/decidim/sanitize_helper.rb +10 -2
  254. data/app/helpers/decidim/tooltip_helper.rb +1 -1
  255. data/app/helpers/decidim/traceability_helper.rb +2 -8
  256. data/app/helpers/decidim/user_profile_helper.rb +1 -1
  257. data/app/helpers/decidim/widget_urls_helper.rb +4 -2
  258. data/app/jobs/decidim/event_publisher_job.rb +1 -1
  259. data/app/mailers/concerns/decidim/multitenant_asset_host.rb +33 -0
  260. data/app/mailers/decidim/application_mailer.rb +1 -0
  261. data/app/mailers/decidim/messaging/conversation_mailer.rb +53 -4
  262. data/app/mailers/decidim/newsletter_mailer.rb +22 -4
  263. data/app/middleware/decidim/strip_x_forwarded_host.rb +14 -0
  264. data/app/models/decidim/action_log.rb +1 -1
  265. data/app/models/decidim/amendment.rb +0 -18
  266. data/app/models/decidim/authorization.rb +24 -0
  267. data/app/models/decidim/component.rb +7 -0
  268. data/app/models/decidim/content_block.rb +5 -3
  269. data/app/models/decidim/endorsement.rb +30 -0
  270. data/app/models/decidim/messaging/conversation.rb +39 -11
  271. data/app/models/decidim/messaging/message.rb +31 -5
  272. data/app/models/decidim/messaging/participation.rb +1 -1
  273. data/app/models/decidim/messaging/receipt.rb +8 -0
  274. data/app/models/decidim/newsletter.rb +7 -1
  275. data/app/models/decidim/organization.rb +16 -7
  276. data/app/models/decidim/user.rb +32 -0
  277. data/app/models/decidim/user_group.rb +23 -0
  278. data/app/permissions/decidim/permissions.rb +19 -6
  279. data/app/presenters/decidim/admin_log/user_presenter.rb +1 -1
  280. data/app/presenters/decidim/metric_charts_presenter.rb +33 -13
  281. data/app/presenters/decidim/nil_presenter.rb +29 -0
  282. data/app/presenters/decidim/resource_locator_presenter.rb +2 -1
  283. data/app/presenters/decidim/user_group_presenter.rb +1 -1
  284. data/app/presenters/decidim/user_presenter.rb +6 -0
  285. data/app/queries/decidim/metric_manage.rb +5 -0
  286. data/app/queries/decidim/metrics/followers_metric_manage.rb +1 -6
  287. data/app/queries/decidim/user_groups/admin_memberships.rb +3 -3
  288. data/app/services/decidim/activity_search.rb +1 -0
  289. data/app/services/decidim/base_diff_renderer.rb +25 -3
  290. data/app/services/decidim/events_manager.rb +4 -1
  291. data/app/types/decidim/core/decidim_type.rb +0 -4
  292. data/app/types/decidim/core/has_endorsable_input_sort.rb +17 -0
  293. data/app/types/decidim/core/has_timestamp_input_filter.rb +52 -0
  294. data/app/types/decidim/core/has_timestamp_input_sort.rb +12 -0
  295. data/app/types/decidim/core/user_entity_input_filter.rb +81 -0
  296. data/app/types/decidim/core/user_entity_input_sort.rb +24 -0
  297. data/app/types/decidim/core/user_group_type.rb +17 -5
  298. data/app/types/decidim/core/user_type.rb +17 -6
  299. data/app/uploaders/decidim/attachment_uploader.rb +1 -1
  300. data/app/uploaders/decidim/avatar_uploader.rb +4 -0
  301. data/app/uploaders/decidim/image_uploader.rb +28 -4
  302. data/app/uploaders/decidim/newsletter_template_image_uploader.rb +36 -0
  303. data/app/views/decidim/account/delete.html.erb +6 -3
  304. data/app/views/decidim/account/show.html.erb +17 -10
  305. data/app/views/decidim/amendments/_edit_form_fields.html.erb +2 -0
  306. data/app/views/decidim/amendments/_similar_emendation.html.erb +4 -4
  307. data/app/views/decidim/amendments/compare_draft.html.erb +2 -2
  308. data/app/views/decidim/amendments/edit_draft.html.erb +2 -2
  309. data/app/views/decidim/amendments/new.html.erb +2 -2
  310. data/app/views/decidim/amendments/preview_draft.html.erb +2 -2
  311. data/app/views/decidim/amendments/review.html.erb +3 -3
  312. data/app/views/decidim/application/_collection.html.erb +2 -2
  313. data/app/views/decidim/application/_document.html.erb +4 -4
  314. data/app/views/decidim/application/_documents.html.erb +1 -1
  315. data/app/views/decidim/application/_photos.html.erb +1 -1
  316. data/app/views/decidim/authorization_modals/show.html.erb +1 -1
  317. data/app/views/decidim/data_portability/show.html.erb +3 -0
  318. data/app/views/decidim/devise/confirmations/new.html.erb +3 -3
  319. data/app/views/decidim/devise/invitations/edit.html.erb +13 -13
  320. data/app/views/decidim/devise/omniauth_registrations/new.html.erb +5 -3
  321. data/app/views/decidim/devise/passwords/edit.html.erb +5 -3
  322. data/app/views/decidim/devise/passwords/new.html.erb +3 -3
  323. data/app/views/decidim/devise/registrations/edit.html.erb +2 -1
  324. data/app/views/decidim/devise/registrations/new.html.erb +7 -8
  325. data/app/views/decidim/devise/sessions/new.html.erb +4 -6
  326. data/app/views/decidim/devise/shared/_newsletter_modal.html.erb +3 -3
  327. data/app/views/decidim/devise/shared/_omniauth_buttons.html.erb +3 -1
  328. data/app/views/decidim/devise/shared/_omniauth_buttons_mini.html.erb +4 -1
  329. data/app/views/decidim/devise/unlocks/new.html.erb +3 -3
  330. data/app/views/decidim/doorkeeper/authorizations/new.html.erb +2 -2
  331. data/app/views/decidim/endorsements/_identity.html.erb +9 -0
  332. data/app/views/decidim/endorsements/identities.html.erb +12 -0
  333. data/app/views/decidim/endorsements/update_buttons_and_counters.js.erb +20 -0
  334. data/app/views/decidim/errors/internal_server_error.html.erb +2 -2
  335. data/app/views/decidim/errors/not_found.html.erb +2 -2
  336. data/app/views/decidim/gamification/badges/index.html.erb +4 -4
  337. data/app/views/decidim/group_admins/index.html.erb +6 -4
  338. data/app/views/decidim/group_invites/index.html.erb +5 -2
  339. data/app/views/decidim/group_members/index.html.erb +6 -4
  340. data/app/views/decidim/groups/_form.html.erb +2 -0
  341. data/app/views/decidim/groups/edit.html.erb +4 -2
  342. data/app/views/decidim/groups/new.html.erb +2 -2
  343. data/app/views/decidim/last_activities/index.html.erb +2 -0
  344. data/app/views/decidim/messaging/conversation_mailer/comanagers_new_conversation.html.erb +17 -0
  345. data/app/views/decidim/messaging/conversation_mailer/comanagers_new_message.html.erb +17 -0
  346. data/app/views/decidim/messaging/conversation_mailer/new_conversation.html.erb +2 -2
  347. data/app/views/decidim/messaging/conversation_mailer/new_group_conversation.html.erb +17 -0
  348. data/app/views/decidim/messaging/conversation_mailer/new_group_message.html.erb +17 -0
  349. data/app/views/decidim/messaging/conversation_mailer/new_message.html.erb +2 -2
  350. data/app/views/decidim/messaging/conversations/_add_conversation_users.html.erb +24 -0
  351. data/app/views/decidim/messaging/conversations/_conversation.html.erb +54 -0
  352. data/app/views/decidim/messaging/conversations/_messages.html.erb +15 -0
  353. data/app/views/decidim/messaging/conversations/_new_conversation_button.html.erb +33 -0
  354. data/app/views/decidim/messaging/conversations/_reply.html.erb +3 -3
  355. data/app/views/decidim/messaging/conversations/_show.html.erb +34 -15
  356. data/app/views/decidim/messaging/conversations/_start.html.erb +7 -1
  357. data/app/views/decidim/messaging/conversations/create.js.erb +1 -1
  358. data/app/views/decidim/messaging/conversations/index.html.erb +34 -29
  359. data/app/views/decidim/messaging/conversations/new.html.erb +1 -1
  360. data/app/views/decidim/messaging/conversations/show.html.erb +8 -4
  361. data/app/views/decidim/messaging/conversations/update.js.erb +1 -1
  362. data/app/views/decidim/newsletter_mailer/newsletter.html.erb +2 -2
  363. data/app/views/decidim/newsletters/show.html.erb +8 -1
  364. data/app/views/decidim/notifications/index.html.erb +4 -2
  365. data/app/views/decidim/notifications_settings/show.html.erb +14 -1
  366. data/app/views/decidim/own_user_groups/index.html.erb +4 -0
  367. data/app/views/decidim/pages/_standalone.html.erb +1 -1
  368. data/app/views/decidim/pages/_tabbed.html.erb +5 -5
  369. data/app/views/decidim/pages/index.html.erb +22 -13
  370. data/app/views/decidim/profiles/_user_follow.erb +3 -3
  371. data/app/views/decidim/profiles/show.html.erb +2 -0
  372. data/app/views/decidim/scopes/_scopes_picker_input.html.erb +11 -4
  373. data/app/views/decidim/scopes/picker.html.erb +26 -16
  374. data/app/views/decidim/searches/_count.html.erb +14 -11
  375. data/app/views/decidim/searches/_filters.html.erb +2 -2
  376. data/app/views/decidim/searches/index.html.erb +5 -3
  377. data/app/views/decidim/shared/_check_boxes_tree.html.erb +5 -3
  378. data/app/views/decidim/shared/_confirm_modal.html.erb +18 -0
  379. data/app/views/decidim/shared/_embed_modal.html.erb +4 -1
  380. data/app/views/decidim/shared/_extended_navigation_bar.html.erb +2 -2
  381. data/app/views/decidim/shared/_filter_form_help.erb +8 -0
  382. data/app/views/decidim/shared/_floating_help.html.erb +7 -7
  383. data/app/views/decidim/shared/_login_modal.html.erb +4 -4
  384. data/app/views/decidim/shared/_orders.html.erb +16 -5
  385. data/app/views/decidim/shared/_results_per_page.html.erb +16 -6
  386. data/app/views/decidim/shared/_share_modal.html.erb +8 -4
  387. data/app/views/decidim/shared/_static_map.html.erb +1 -1
  388. data/app/views/decidim/shared/participatory_space_filters/_filters.html.erb +1 -1
  389. data/app/views/decidim/user_activities/index.html.erb +4 -0
  390. data/app/views/decidim/user_activities/index.js.erb +14 -0
  391. data/app/views/decidim/user_conversations/index.html.erb +4 -0
  392. data/app/views/decidim/user_conversations/show.html.erb +4 -0
  393. data/app/views/decidim/user_conversations/update.js.erb +8 -0
  394. data/app/views/decidim/user_interests/_scopes.html.erb +12 -10
  395. data/app/views/decidim/user_interests/show.html.erb +4 -1
  396. data/app/views/decidim/user_timeline/index.html.erb +5 -1
  397. data/app/views/decidim/user_timeline/index.js.erb +14 -0
  398. data/app/views/kaminari/decidim/_first_page.html.erb +5 -1
  399. data/app/views/kaminari/decidim/_last_page.html.erb +5 -1
  400. data/app/views/kaminari/decidim/_next_page.html.erb +6 -1
  401. data/app/views/kaminari/decidim/_page.html.erb +2 -2
  402. data/app/views/kaminari/decidim/_paginator.html.erb +16 -14
  403. data/app/views/kaminari/decidim/_prev_page.html.erb +6 -1
  404. data/app/views/layouts/decidim/_application.html.erb +4 -2
  405. data/app/views/layouts/decidim/_cookie_warning.html.erb +1 -1
  406. data/app/views/layouts/decidim/_edit_link.html.erb +0 -0
  407. data/app/views/layouts/decidim/_head.html.erb +2 -0
  408. data/app/views/layouts/decidim/_js_configuration.html.erb +28 -0
  409. data/app/views/layouts/decidim/_language_chooser.html.erb +10 -5
  410. data/app/views/layouts/decidim/_logo.html.erb +2 -22
  411. data/app/views/layouts/decidim/_mailer_logo.html.erb +2 -22
  412. data/app/views/layouts/decidim/_main_footer.html.erb +3 -1
  413. data/app/views/layouts/decidim/_mini_footer.html.erb +7 -7
  414. data/app/views/layouts/decidim/_omnipresent_banner.html.erb +1 -1
  415. data/app/views/layouts/decidim/_organization_colors.html.erb +4 -3
  416. data/app/views/layouts/decidim/_social_media_links.html.erb +15 -10
  417. data/app/views/layouts/decidim/_topbar_search.html.erb +12 -2
  418. data/app/views/layouts/decidim/_user_menu.html.erb +6 -6
  419. data/app/views/layouts/decidim/_wrapper.html.erb +21 -16
  420. data/app/views/layouts/decidim/newsletter_base.html.erb +46 -0
  421. data/app/views/layouts/decidim/user_profile.html.erb +8 -3
  422. data/app/views/layouts/decidim/widget.html.erb +1 -0
  423. data/config/initializers/devise.rb +11 -3
  424. data/config/initializers/invisible_captcha.rb +1 -0
  425. data/config/initializers/omniauth.rb +7 -1
  426. data/config/initializers/rack_attack.rb +25 -16
  427. data/config/locales/ar.yml +7 -5
  428. data/config/locales/bg-BG.yml +1512 -0
  429. data/config/locales/ca.yml +258 -6
  430. data/config/locales/cs.yml +297 -37
  431. data/config/locales/da-DK.yml +9 -0
  432. data/config/locales/de.yml +279 -5
  433. data/config/locales/el.yml +1443 -5
  434. data/config/locales/en.yml +263 -11
  435. data/config/locales/es-MX.yml +257 -5
  436. data/config/locales/es-PY.yml +257 -5
  437. data/config/locales/es.yml +257 -5
  438. data/config/locales/et-EE.yml +9 -0
  439. data/config/locales/eu.yml +7 -2
  440. data/config/locales/fi-plain.yml +258 -6
  441. data/config/locales/fi.yml +319 -67
  442. data/config/locales/fr-CA.yml +1585 -0
  443. data/config/locales/fr.yml +263 -5
  444. data/config/locales/ga-IE.yml +9 -0
  445. data/config/locales/gl.yml +7 -2
  446. data/config/locales/hr-HR.yml +9 -0
  447. data/config/locales/hu.yml +87 -5
  448. data/config/locales/id-ID.yml +7 -2
  449. data/config/locales/is-IS.yml +1 -0
  450. data/config/locales/it.yml +279 -27
  451. data/config/locales/ja-JP.yml +1578 -0
  452. data/config/locales/lt-LT.yml +9 -0
  453. data/config/locales/lv-LV.yml +1485 -0
  454. data/config/locales/mt-MT.yml +9 -0
  455. data/config/locales/nl.yml +261 -6
  456. data/config/locales/no.yml +117 -41
  457. data/config/locales/pl.yml +755 -406
  458. data/config/locales/pt-BR.yml +8 -4
  459. data/config/locales/pt.yml +875 -536
  460. data/config/locales/ro-RO.yml +1603 -0
  461. data/config/locales/ru.yml +6 -1
  462. data/config/locales/sk-SK.yml +1426 -0
  463. data/config/locales/sk.yml +1441 -0
  464. data/config/locales/sl.yml +71 -0
  465. data/config/locales/sr-CS.yml +129 -0
  466. data/config/locales/sv.yml +323 -24
  467. data/config/locales/tr-TR.yml +7 -2
  468. data/config/locales/uk.yml +6 -1
  469. data/config/routes.rb +5 -0
  470. data/db/migrate/20180810092428_move_organization_fields_to_hero_content_block.rb +2 -2
  471. data/db/migrate/20191130151925_create_decidim_endorsements.rb +13 -0
  472. data/db/migrate/20191204075509_add_session_token_to_users.rb +7 -0
  473. data/db/migrate/20200211173227_add_direct_message_types_to_users.rb +12 -0
  474. data/db/migrate/20200320105904_index_foreign_keys_in_decidim_action_logs.rb +9 -0
  475. data/db/migrate/20200320105905_index_foreign_keys_in_decidim_amendments.rb +7 -0
  476. data/db/migrate/20200320105909_index_foreign_keys_in_decidim_authorizations.rb +7 -0
  477. data/db/migrate/20200320105917_index_foreign_keys_in_decidim_contextual_help_sections.rb +7 -0
  478. data/db/migrate/20200320105919_index_foreign_keys_in_decidim_endorsements.rb +7 -0
  479. data/db/migrate/20200320105923_index_foreign_keys_in_decidim_notifications.rb +7 -0
  480. data/db/migrate/20200320105927_index_foreign_keys_in_oauth_access_grants.rb +7 -0
  481. data/db/migrate/20200323094443_add_id_to_content_blocks_scope.rb +7 -0
  482. data/db/migrate/20200326102407_rename_scope_column.rb +7 -0
  483. data/db/migrate/20200327082257_migrate_newsletters_to_templates.rb +33 -0
  484. data/db/migrate/20200327082954_remove_newsletter_body.rb +7 -0
  485. data/db/migrate/20200401073419_add_index_on_content_block_scope_id.rb +11 -0
  486. data/db/seeds.rb +1 -1
  487. data/{app/controllers/concerns → lib}/decidim/action_authorization.rb +0 -0
  488. data/lib/decidim/api/author_interface.rb +4 -0
  489. data/lib/decidim/api/endorsable_interface.rb +22 -0
  490. data/lib/decidim/api/participatory_space_interface.rb +2 -0
  491. data/lib/decidim/api/timestamps_interface.rb +2 -2
  492. data/lib/decidim/coauthorable.rb +1 -1
  493. data/lib/decidim/component_manifest.rb +14 -0
  494. data/lib/decidim/content_parsers.rb +1 -0
  495. data/lib/decidim/content_parsers/user_group_parser.rb +61 -0
  496. data/lib/decidim/content_parsers/user_parser.rb +3 -5
  497. data/lib/decidim/content_renderers.rb +1 -0
  498. data/lib/decidim/content_renderers/user_group_renderer.rb +30 -0
  499. data/lib/decidim/core.rb +65 -21
  500. data/lib/decidim/core/api.rb +1 -0
  501. data/lib/decidim/core/engine.rb +88 -6
  502. data/lib/decidim/core/test.rb +8 -0
  503. data/lib/decidim/core/test/factories.rb +103 -3
  504. data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +79 -0
  505. data/lib/decidim/core/test/shared_examples/back_to_list_button_examples.rb +17 -0
  506. data/lib/decidim/core/test/shared_examples/comments_examples.rb +17 -2
  507. data/lib/decidim/core/test/shared_examples/edit_link_shared_examples.rb +5 -1
  508. data/lib/decidim/core/test/shared_examples/endorsable_interface_examples.rb +22 -0
  509. data/lib/decidim/core/test/shared_examples/endorsements_controller_shared_context.rb +22 -0
  510. data/lib/decidim/core/test/shared_examples/follows_examples.rb +1 -1
  511. data/lib/decidim/core/test/shared_examples/input_sort_examples.rb +21 -0
  512. data/lib/decidim/core/test/shared_examples/logo_email.rb +20 -0
  513. data/lib/decidim/core/test/shared_examples/metric_manage_shared_context.rb +9 -0
  514. data/lib/decidim/core/test/shared_examples/permissions.rb +143 -0
  515. data/lib/decidim/core/test/shared_examples/reports_examples.rb +4 -4
  516. data/lib/decidim/core/test/shared_examples/rich_text_editor_examples.rb +3 -3
  517. data/lib/decidim/core/test/shared_examples/simple_event.rb +1 -0
  518. data/lib/decidim/core/test/shared_examples/system_endorse_resource_examples.rb +165 -0
  519. data/lib/decidim/core/test/shared_examples/traceable_interface_examples.rb +3 -3
  520. data/lib/decidim/core/test/shared_examples/with_endorsable_permissions_examples.rb +89 -0
  521. data/lib/decidim/core/version.rb +1 -1
  522. data/lib/decidim/endorsable.rb +25 -0
  523. data/lib/decidim/events.rb +1 -0
  524. data/lib/decidim/events/user_group_event.rb +45 -0
  525. data/lib/decidim/exporters/csv.rb +1 -1
  526. data/lib/decidim/filter_form_builder.rb +15 -6
  527. data/lib/decidim/form_builder.rb +209 -23
  528. data/lib/decidim/has_attachments.rb +1 -1
  529. data/lib/decidim/participable.rb +6 -0
  530. data/lib/decidim/participatory_space_manifest.rb +15 -0
  531. data/lib/decidim/query_extensions.rb +9 -15
  532. data/lib/decidim/settings_manifest.rb +15 -1
  533. data/lib/decidim/view_model.rb +4 -0
  534. data/lib/tasks/decidim_tasks.rake +1 -0
  535. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ro.js +15 -0
  536. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.sk.js +14 -0
  537. data/vendor/assets/javascripts/svg4everybody.min.js +1 -2
  538. data/vendor/assets/javascripts/tribute.js +11 -4
  539. metadata +187 -31
  540. data/app/assets/javascripts/decidim/vizzs/orgchart.js.es6 +0 -699
  541. data/app/assets/stylesheets/decidim/email.css +0 -1403
  542. data/app/assets/stylesheets/decidim/modules/_input-hashtags.scss +0 -124
  543. data/app/resolvers/decidim/core/user_resolver.rb +0 -61
  544. data/app/views/decidim/messaging/conversations/_message.html.erb +0 -14
@@ -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
- }