imio.smartweb.core 1.2.38__py3-none-any.whl → 1.2.80__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (223) hide show
  1. imio/smartweb/core/behaviors/categorization.py +24 -0
  2. imio/smartweb/core/behaviors/configure.zcml +7 -0
  3. imio/smartweb/core/browser/controlpanel.py +43 -0
  4. imio/smartweb/core/browser/faceted/block_view.pt +4 -4
  5. imio/smartweb/core/browser/faceted/summary_view.pt +4 -4
  6. imio/smartweb/core/browser/sitemap.py +10 -3
  7. imio/smartweb/core/browser/static/icons/action-delete.svg +3 -0
  8. imio/smartweb/core/browser/static/icons/action-engagement-2.svg +4 -0
  9. imio/smartweb/core/browser/static/icons/action-panneaux.svg +3 -0
  10. imio/smartweb/core/browser/static/icons/action-vote.svg +3 -0
  11. imio/smartweb/core/browser/static/icons/categorie-attention.svg +3 -0
  12. imio/smartweb/core/browser/static/icons/categorie-infos-travaux-2.svg +4 -0
  13. imio/smartweb/core/browser/static/icons/categorie-mon-dossier.svg +1 -1
  14. imio/smartweb/core/browser/static/icons/categorie-nature.svg +3 -0
  15. imio/smartweb/core/browser/static/icons/categorie-parcs-a-conteneurs.svg +4 -0
  16. imio/smartweb/core/browser/static/icons/categorie-plus.svg +3 -0
  17. imio/smartweb/core/browser/static/icons/categorie-primes-2.svg +5 -0
  18. imio/smartweb/core/browser/static/icons/categorie-sport-natation.svg +4 -0
  19. imio/smartweb/core/browser/static/icons/organisation-ecole-sac.svg +4 -0
  20. imio/smartweb/core/browser/static/icons/organisation-scout.svg +3 -0
  21. imio/smartweb/core/browser/static/icons/reseausocial-behance.svg +3 -0
  22. imio/smartweb/core/browser/static/icons/reseausocial-linkedin.svg +3 -0
  23. imio/smartweb/core/browser/static/smartweb-edit-compiled.css +1 -1
  24. imio/smartweb/core/browser/static/smartweb-view-compiled.css +1 -1
  25. imio/smartweb/core/browser/static/src/edit.less +42 -0
  26. imio/smartweb/core/browser/static/src/view.less +109 -56
  27. imio/smartweb/core/browser/vocabulary.py +8 -3
  28. imio/smartweb/core/contents/__init__.py +2 -0
  29. imio/smartweb/core/contents/configure.zcml +1 -0
  30. imio/smartweb/core/contents/folder/block_view.pt +8 -8
  31. imio/smartweb/core/contents/folder/summary_view.pt +4 -4
  32. imio/smartweb/core/contents/pages/cirkwi/content.py +5 -0
  33. imio/smartweb/core/contents/pages/cirkwi/view.py +2 -1
  34. imio/smartweb/core/contents/pages/configure.zcml +1 -0
  35. imio/smartweb/core/contents/pages/portal_page/view.py +3 -0
  36. imio/smartweb/core/contents/pages/views.py +47 -1
  37. imio/smartweb/core/contents/publication/__init__.py +0 -0
  38. imio/smartweb/core/contents/publication/configure.zcml +5 -0
  39. imio/smartweb/core/contents/publication/content.py +23 -0
  40. imio/smartweb/core/contents/rest/base.py +9 -7
  41. imio/smartweb/core/contents/rest/directory/endpoint.py +2 -2
  42. imio/smartweb/core/contents/rest/directory/view.pt +2 -1
  43. imio/smartweb/core/contents/rest/events/content.py +13 -0
  44. imio/smartweb/core/contents/rest/events/endpoint.py +5 -3
  45. imio/smartweb/core/contents/rest/events/view.pt +5 -1
  46. imio/smartweb/core/contents/rest/events/view.py +12 -0
  47. imio/smartweb/core/contents/rest/news/content.py +6 -0
  48. imio/smartweb/core/contents/rest/news/endpoint.py +4 -2
  49. imio/smartweb/core/contents/rest/news/view.pt +4 -1
  50. imio/smartweb/core/contents/rest/news/view.py +8 -0
  51. imio/smartweb/core/contents/rest/utils.py +0 -1
  52. imio/smartweb/core/contents/rest/view.py +4 -0
  53. imio/smartweb/core/contents/sections/common_templates/carousel.pt +5 -1
  54. imio/smartweb/core/contents/sections/common_templates/table.pt +18 -4
  55. imio/smartweb/core/contents/sections/configure.zcml +18 -0
  56. imio/smartweb/core/contents/sections/contact/content.py +2 -2
  57. imio/smartweb/core/contents/sections/contact/macros.pt +28 -3
  58. imio/smartweb/core/contents/sections/contact/utils.py +2 -0
  59. imio/smartweb/core/contents/sections/contact/view.py +28 -12
  60. imio/smartweb/core/contents/sections/events/content.py +12 -4
  61. imio/smartweb/core/contents/sections/events/view.py +20 -2
  62. imio/smartweb/core/contents/sections/external_content/view.pt +4 -4
  63. imio/smartweb/core/contents/sections/external_content/views.py +6 -4
  64. imio/smartweb/core/contents/sections/files/content.py +7 -1
  65. imio/smartweb/core/contents/sections/files/view.py +43 -12
  66. imio/smartweb/core/contents/sections/links/view.py +5 -0
  67. imio/smartweb/core/contents/sections/macros.pt +26 -0
  68. imio/smartweb/core/contents/sections/news/content.py +11 -3
  69. imio/smartweb/core/contents/sections/news/view.py +20 -2
  70. imio/smartweb/core/contents/sections/text/views.py +2 -0
  71. imio/smartweb/core/contents/sections/views.py +73 -10
  72. imio/smartweb/core/interfaces.py +4 -0
  73. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  74. imio/smartweb/core/profiles/default/taxonomies/page_category.xml +16 -0
  75. imio/smartweb/core/profiles/default/taxonomies/procedure_category.xml +26 -0
  76. imio/smartweb/core/profiles/default/types/imio.smartweb.EventsView.xml +1 -0
  77. imio/smartweb/core/profiles/default/types/imio.smartweb.NewsView.xml +1 -0
  78. imio/smartweb/core/profiles/default/types/imio.smartweb.Publication.xml +38 -0
  79. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml +1 -0
  80. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml +2 -0
  81. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml +1 -0
  82. imio/smartweb/core/profiles/default/types.xml +1 -0
  83. imio/smartweb/core/profiles/icons/basic/registry.xml +120 -0
  84. imio/smartweb/core/rest/authentic_sources.py +17 -2
  85. imio/smartweb/core/subscribers.py +48 -0
  86. imio/smartweb/core/subscribers.zcml +12 -0
  87. imio/smartweb/core/tests/resources/json_iadeliberations_institutions.json +60 -0
  88. imio/smartweb/core/tests/resources/json_iadeliberations_publication.json +105 -0
  89. imio/smartweb/core/tests/resources/json_iadeliberations_publications.json +270 -0
  90. imio/smartweb/core/tests/resources/json_rest_events.json +6 -2
  91. imio/smartweb/core/tests/resources/json_rest_news.json +2 -2
  92. imio/smartweb/core/tests/resources/json_rest_specific_events.json +1 -1
  93. imio/smartweb/core/tests/test_htmx_in_sections.py +131 -0
  94. imio/smartweb/core/tests/test_iadeliberations.py +136 -0
  95. imio/smartweb/core/tests/test_icons.py +1 -1
  96. imio/smartweb/core/tests/test_rest.py +58 -17
  97. imio/smartweb/core/tests/test_section_contact.py +42 -10
  98. imio/smartweb/core/tests/test_section_events.py +28 -5
  99. imio/smartweb/core/tests/test_section_external_content.py +28 -2
  100. imio/smartweb/core/tests/test_section_news.py +30 -8
  101. imio/smartweb/core/tests/test_sections.py +17 -0
  102. imio/smartweb/core/tests/test_vocabularies.py +60 -3
  103. imio/smartweb/core/tests/test_vocabulary.py +43 -0
  104. imio/smartweb/core/upgrades/configure.zcml +108 -0
  105. imio/smartweb/core/upgrades/profiles/1055_to_1056/types/imio.smartweb.SectionFiles.xml +12 -0
  106. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.EventsView.xml +11 -0
  107. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.NewsView.xml +11 -0
  108. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionEvents.xml +11 -0
  109. imio/smartweb/core/upgrades/profiles/1056_to_1057/types/imio.smartweb.SectionNews.xml +11 -0
  110. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.cfg +9 -0
  111. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/page_category.xml +73 -0
  112. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.cfg +9 -0
  113. imio/smartweb/core/upgrades/profiles/1057_to_1058/taxonomies/procedure_category.xml +118 -0
  114. imio/smartweb/core/upgrades/profiles/1058_to_1059/registry/linkedin-icon.xml +126 -0
  115. imio/smartweb/core/upgrades/profiles/1059_to_1060/registry/iadeliberation.xml +9 -0
  116. imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.Publication.xml +38 -0
  117. imio/smartweb/core/upgrades/profiles/1060_to_1061/types/imio.smartweb.SectionFiles.xml +11 -0
  118. imio/smartweb/core/upgrades/profiles/1060_to_1061/types.xml +4 -0
  119. imio/smartweb/core/upgrades/profiles/1060_to_1061/workflows.xml +6 -0
  120. imio/smartweb/core/utils.py +33 -2
  121. imio/smartweb/core/viewlets/configure.zcml +23 -1
  122. imio/smartweb/core/viewlets/footer.pt +5 -0
  123. imio/smartweb/core/viewlets/footer.py +5 -0
  124. imio/smartweb/core/viewlets/htmx.py +15 -0
  125. imio/smartweb/core/viewlets/htmx_js_header.pt +64 -0
  126. imio/smartweb/core/viewlets/ogptags.py +4 -3
  127. imio/smartweb/core/viewlets/social.py +23 -0
  128. imio/smartweb/core/vocabularies.py +65 -3
  129. imio/smartweb/core/vocabularies.zcml +18 -0
  130. imio/smartweb/core/webcomponents/build/1c1605a5fe9a2b10a88f.png +1 -0
  131. imio/smartweb/core/webcomponents/build/524db40e119aa11f4478.png +1 -0
  132. imio/smartweb/core/webcomponents/build/57d3b7cb1ab874660b39.svg +1 -0
  133. imio/smartweb/core/webcomponents/build/6cf03871df23ed2ee8b3.png +1 -0
  134. imio/smartweb/core/webcomponents/build/css/373.smartweb-webcomponents-compiled.css +1 -1
  135. imio/smartweb/core/webcomponents/build/css/486.smartweb-webcomponents-compiled.css +1 -1
  136. imio/smartweb/core/webcomponents/build/css/884.smartweb-webcomponents-compiled.css +1 -0
  137. imio/smartweb/core/webcomponents/build/css/919.smartweb-webcomponents-compiled.css +1 -1
  138. imio/smartweb/core/webcomponents/build/css/smartweb-webcomponents-compiled.css +1 -1
  139. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js +1 -1
  140. imio/smartweb/core/webcomponents/build/js/218.smartweb-webcomponents-compiled.js.LICENSE.txt +10 -8
  141. imio/smartweb/core/webcomponents/build/js/373.smartweb-webcomponents-compiled.js +2 -1
  142. imio/smartweb/core/webcomponents/build/js/{568.smartweb-webcomponents-compiled.js.LICENSE.txt → 373.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -4
  143. imio/smartweb/core/webcomponents/build/js/486.smartweb-webcomponents-compiled.js +1 -1
  144. imio/smartweb/core/webcomponents/build/js/499.smartweb-webcomponents-compiled.js +2 -0
  145. imio/smartweb/core/webcomponents/build/js/{674.smartweb-webcomponents-compiled.js.LICENSE.txt → 499.smartweb-webcomponents-compiled.js.LICENSE.txt} +1 -8
  146. imio/smartweb/core/webcomponents/build/js/799.smartweb-webcomponents-compiled.js +1 -1
  147. imio/smartweb/core/webcomponents/build/js/824.smartweb-webcomponents-compiled.js +2 -0
  148. imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js +2 -0
  149. imio/smartweb/core/webcomponents/build/js/828.smartweb-webcomponents-compiled.js.LICENSE.txt +32 -0
  150. imio/smartweb/core/webcomponents/build/js/884.smartweb-webcomponents-compiled.js +1 -0
  151. imio/smartweb/core/webcomponents/build/js/919.smartweb-webcomponents-compiled.js +1 -1
  152. imio/smartweb/core/webcomponents/build/js/{568.smartweb-webcomponents-compiled.js → 963.smartweb-webcomponents-compiled.js} +2 -2
  153. imio/smartweb/core/webcomponents/build/js/963.smartweb-webcomponents-compiled.js.LICENSE.txt +3 -0
  154. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  155. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js.LICENSE.txt +11 -14
  156. imio/smartweb/core/webcomponents/package.json +42 -40
  157. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.jsx +146 -79
  158. imio/smartweb/core/webcomponents/src/components/Annuaire/Annuaire.scss +415 -351
  159. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +95 -62
  160. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/ContactContent.jsx +328 -168
  161. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactList/ContactList.jsx +21 -4
  162. imio/smartweb/core/webcomponents/src/components/Annuaire/Filters/Filter.jsx +213 -100
  163. imio/smartweb/core/webcomponents/src/components/Annuaire/index.js +1 -1
  164. imio/smartweb/core/webcomponents/src/components/Events/EventCard/EventCard.jsx +76 -33
  165. imio/smartweb/core/webcomponents/src/components/Events/EventContent/EventContent.jsx +604 -377
  166. imio/smartweb/core/webcomponents/src/components/Events/EventList/EventList.jsx +29 -4
  167. imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +162 -88
  168. imio/smartweb/core/webcomponents/src/components/Events/Events.scss +496 -378
  169. imio/smartweb/core/webcomponents/src/components/Events/Filters/Filter.jsx +259 -91
  170. imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.jsx +62 -55
  171. imio/smartweb/core/webcomponents/src/components/Filters/DateFilter.scss +68 -17
  172. imio/smartweb/core/webcomponents/src/components/Filters/IamData.jsx +42 -0
  173. imio/smartweb/core/webcomponents/src/components/Filters/MainFilter.scss +229 -0
  174. imio/smartweb/core/webcomponents/src/components/Filters/PublicTargetData.jsx +94 -0
  175. imio/smartweb/core/webcomponents/src/components/Filters/SelectStyles.js +58 -0
  176. imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.jsx +149 -0
  177. imio/smartweb/core/webcomponents/src/components/Filters/TaxonomyFilter.scss +70 -0
  178. imio/smartweb/core/webcomponents/src/components/News/Filters/Filter.jsx +139 -83
  179. imio/smartweb/core/webcomponents/src/components/News/News.jsx +133 -67
  180. imio/smartweb/core/webcomponents/src/components/News/News.scss +170 -127
  181. imio/smartweb/core/webcomponents/src/components/News/NewsCard/NewsCard.jsx +76 -44
  182. imio/smartweb/core/webcomponents/src/components/News/NewsContent/NewsContent.jsx +261 -188
  183. imio/smartweb/core/webcomponents/src/components/News/NewsList/NewsList.jsx +48 -9
  184. imio/smartweb/core/webcomponents/src/components/Search/ContactResult/ContactResult.jsx +21 -10
  185. imio/smartweb/core/webcomponents/src/components/Search/EventsResult/EventsResult.jsx +21 -10
  186. imio/smartweb/core/webcomponents/src/components/Search/Filters/Filter.jsx +8 -9
  187. imio/smartweb/core/webcomponents/src/components/Search/NewsResult/NewsResult.jsx +23 -12
  188. imio/smartweb/core/webcomponents/src/components/Search/Search.jsx +7 -6
  189. imio/smartweb/core/webcomponents/src/components/Search/Search.scss +115 -96
  190. imio/smartweb/core/webcomponents/src/components/Search/WebResult/WebResult.jsx +12 -3
  191. imio/smartweb/core/webcomponents/src/components/Search/index.js +1 -1
  192. imio/smartweb/core/webcomponents/src/hooks/ScrollContext.jsx +3 -0
  193. imio/smartweb/core/webcomponents/src/hooks/useAxios.js +3 -3
  194. imio/smartweb/core/webcomponents/src/hooks/useFilterQuery.js +1 -2
  195. imio/smartweb/core/webcomponents/src/index.scss +255 -211
  196. imio/smartweb/core/webcomponents/src/utils/Map.jsx +26 -19
  197. imio/smartweb/core/webcomponents/src/utils/Map.scss +2 -2
  198. imio/smartweb/core/webcomponents/src/utils/translation.js +129 -9
  199. imio.smartweb.core-1.2.80-py3.8-nspkg.pth +2 -0
  200. {imio.smartweb.core-1.2.38.dist-info → imio.smartweb.core-1.2.80.dist-info}/METADATA +410 -10
  201. {imio.smartweb.core-1.2.38.dist-info → imio.smartweb.core-1.2.80.dist-info}/RECORD +207 -161
  202. {imio.smartweb.core-1.2.38.dist-info → imio.smartweb.core-1.2.80.dist-info}/WHEEL +1 -1
  203. imio/smartweb/core/webcomponents/build/assets/location-bla.1423bcce16ddcb21141430cac1428dc1.svg +0 -1
  204. imio/smartweb/core/webcomponents/build/assets/next-react-white.819cb069ac8eec300a9db6a7707712d6.svg +0 -1
  205. imio/smartweb/core/webcomponents/build/assets/next-react.17bc43ff4a6a86f4520f5782f6a89a72.svg +0 -1
  206. imio/smartweb/core/webcomponents/build/assets/search.57bdbf5b191499cd77514097d1c4972c.svg +0 -1
  207. imio/smartweb/core/webcomponents/build/css/686.smartweb-webcomponents-compiled.css +0 -1
  208. imio/smartweb/core/webcomponents/build/js/209.smartweb-webcomponents-compiled.js +0 -2
  209. imio/smartweb/core/webcomponents/build/js/40.smartweb-webcomponents-compiled.js +0 -1
  210. imio/smartweb/core/webcomponents/build/js/674.smartweb-webcomponents-compiled.js +0 -2
  211. imio/smartweb/core/webcomponents/build/js/686.smartweb-webcomponents-compiled.js +0 -1
  212. imio/smartweb/core/webcomponents/src/assets/facebook-news.svg +0 -1
  213. imio/smartweb/core/webcomponents/src/assets/location-bla.svg +0 -1
  214. imio/smartweb/core/webcomponents/src/assets/next-react.svg +0 -1
  215. imio/smartweb/core/webcomponents/src/assets/search.svg +0 -1
  216. imio/smartweb/core/webcomponents/src/assets/skeleton.svg +0 -1
  217. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactContent/download.svg +0 -1
  218. imio.smartweb.core-1.2.38-py3.8-nspkg.pth +0 -3
  219. /imio/smartweb/core/webcomponents/build/js/{209.smartweb-webcomponents-compiled.js.LICENSE.txt → 824.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  220. {imio.smartweb.core-1.2.38.dist-info → imio.smartweb.core-1.2.80.dist-info}/LICENSE.GPL +0 -0
  221. {imio.smartweb.core-1.2.38.dist-info → imio.smartweb.core-1.2.80.dist-info}/LICENSE.rst +0 -0
  222. {imio.smartweb.core-1.2.38.dist-info → imio.smartweb.core-1.2.80.dist-info}/namespace_packages.txt +0 -0
  223. {imio.smartweb.core-1.2.38.dist-info → imio.smartweb.core-1.2.80.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,24 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ from imio.smartweb.locales import SmartwebMessageFactory as _
4
+ from plone.autoform import directives
5
+ from plone.autoform.interfaces import IFormFieldProvider
6
+ from plone.supermodel import model
7
+ from zope import schema
8
+ from zope.interface import provider
9
+
10
+
11
+ @provider(IFormFieldProvider)
12
+ class ICategoryDisplay(model.Schema):
13
+ directives.order_before(show_categories_or_topics="IOrientation.orientation")
14
+
15
+ model.fieldset("layout", fields=["show_categories_or_topics"])
16
+ show_categories_or_topics = schema.Choice(
17
+ title=_("Show category or topic"),
18
+ description=_(
19
+ "Select if you want (specific) category or (first) topic displayed on items"
20
+ ),
21
+ source="imio.smartweb.vocabulary.CategoriesDisplay",
22
+ required=True,
23
+ default="category",
24
+ )
@@ -5,6 +5,13 @@
5
5
 
6
6
  <include package="plone.behavior" file="meta.zcml"/>
7
7
 
8
+ <plone:behavior
9
+ name="imio.smartweb.category_display"
10
+ title="Categories / Topics display"
11
+ description="Allow to choose to display categories or topics"
12
+ provides=".categorization.ICategoryDisplay"
13
+ />
14
+
8
15
  <plone:behavior
9
16
  name="imio.smartweb.orientation"
10
17
  title="Image orientation"
@@ -3,6 +3,7 @@
3
3
  from collective.z3cform.datagridfield.datagridfield import DataGridFieldFactory
4
4
  from collective.z3cform.datagridfield.registry import DictRow
5
5
  from imio.smartweb.locales import SmartwebMessageFactory as _
6
+ from plone import api
6
7
  from plone.app.registry.browser.controlpanel import ControlPanelFormWrapper
7
8
  from plone.app.registry.browser.controlpanel import RegistryEditForm
8
9
  from plone.autoform import directives
@@ -165,12 +166,54 @@ class ISmartwebControlPanel(Interface):
165
166
  required=False,
166
167
  )
167
168
 
169
+ iadeliberations_url = schema.TextLine(
170
+ title=_("I.A. Deliberations' url"),
171
+ description=_(
172
+ "For staging : https://conseil.staging.imio.be | for production : https://www.deliberations.be"
173
+ ),
174
+ default="https://www.deliberations.be",
175
+ required=False,
176
+ )
177
+
178
+ iadeliberations_api_username = schema.TextLine(
179
+ title=_("Username to consume I.A. Deliberations API"),
180
+ default="wsviewersmartweb",
181
+ required=False,
182
+ )
183
+
184
+ iadeliberation_api_password = schema.Password(
185
+ title=_("Password to consume I.A. Deliberations API"),
186
+ required=False,
187
+ )
188
+
189
+ iadeliberations_institution = schema.Choice(
190
+ title=_("I.A. Deliberations : Institutions"),
191
+ source="imio.smartweb.vocabulary.IADeliberationsInstitutions",
192
+ required=False,
193
+ )
194
+
168
195
 
169
196
  class SmartwebControlPanelForm(RegistryEditForm):
170
197
  schema = ISmartwebControlPanel
171
198
  schema_prefix = "smartweb"
172
199
  label = _("Smartweb Settings")
173
200
 
201
+ def applyChanges(self, data):
202
+ # Get current registry value for (controlpanel) passwords
203
+ iadeliberation_pwd = api.portal.get_registry_record(
204
+ "smartweb.iadeliberation_api_password"
205
+ )
206
+ secret_key_api = api.portal.get_registry_record("smartweb.secret_key_api")
207
+
208
+ # if data is None when we apply changes for password fields we keep password from registry
209
+ if not data.get("iadeliberation_api_password"):
210
+ data["iadeliberation_api_password"] = iadeliberation_pwd
211
+
212
+ if not data.get("secret_key_api"):
213
+ data["secret_key_api"] = secret_key_api
214
+
215
+ return super().applyChanges(data)
216
+
174
217
 
175
218
  SmartwebControlPanelView = layout.wrap_form(
176
219
  SmartwebControlPanelForm, ControlPanelFormWrapper
@@ -22,12 +22,12 @@
22
22
  orientation_class python:images_orientation and f'display-{images_orientation}' or '';
23
23
  thumb_scale faceted_view/get_thumb_scale_summary">
24
24
 
25
- <div class="" id="block-menu"
25
+ <ul class="" id="block-menu"
26
26
  tal:attributes="class string:row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-xl-4 g-4 ${orientation_class}">
27
- <div class="block-menu-element col" tal:repeat="item batch">
27
+ <li class="block-menu-element col" tal:repeat="item batch">
28
28
  <metal:macro use-macro="context/@@faceted-macros/block" />
29
- </div>
30
- </div>
29
+ </li>
30
+ </ul>
31
31
 
32
32
  </tal:def>
33
33
 
@@ -22,12 +22,12 @@
22
22
  orientation_class python:images_orientation and f'display-{images_orientation}' or '';
23
23
  thumb_scale faceted_view/get_thumb_scale_list">
24
24
 
25
- <div class="" id="block-menu"
25
+ <ul class="" id="block-menu"
26
26
  tal:attributes="class string:row ${orientation_class}">
27
- <div class="list-menu-element col-12" tal:repeat="item batch">
27
+ <li class="list-menu-element col-12" tal:repeat="item batch">
28
28
  <metal:macro use-macro="context/@@faceted-macros/summary" />
29
- </div>
30
- </div>
29
+ </li>
30
+ </ul>
31
31
 
32
32
  </tal:def>
33
33
 
@@ -4,7 +4,6 @@ from imio.smartweb.core.config import EVENTS_URL
4
4
  from imio.smartweb.core.config import NEWS_URL
5
5
  from imio.smartweb.core.contents.rest.utils import get_auth_sources_response
6
6
  from imio.smartweb.core.contents.rest.utils import get_entity_id
7
- from imio.smartweb.core.utils import get_json
8
7
  from plone import api
9
8
  from plone.base.interfaces import IPloneSiteRoot
10
9
  from plone.app.layout.sitemap.sitemap import SiteMapView
@@ -13,6 +12,10 @@ from Products.CMFCore.utils import getToolByName
13
12
  from Products.CMFPlone.utils import normalizeString
14
13
  from zope.component import getUtility
15
14
 
15
+ import logging
16
+
17
+ logger = logging.getLogger("imio.smartweb.core")
18
+
16
19
 
17
20
  class CustomSiteMapView(SiteMapView):
18
21
 
@@ -122,8 +125,12 @@ class CustomSiteMapView(SiteMapView):
122
125
  return self.request.response.setStatus(
123
126
  404, "No default authentic source found"
124
127
  )
125
- brains = api.content.find(UID=auth_source_uid)
126
- obj = brains[0].getObject()
128
+ obj = api.content.get(UID=auth_source_uid)
129
+ if obj is None:
130
+ logger.warning(
131
+ f"Seems that a main authentic view (for {auth_source_key}) is not found"
132
+ )
133
+ continue
127
134
  auth_source_view_url = obj.absolute_url()
128
135
  results = get_auth_sources_response(
129
136
  auth_source_key, normalizeString(entity_id), (60 * 60 * 24)
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 15" viewBox="0 0 14 16">
2
+ <path d="M5.5 1h3c.28 0 .5.22.5.5v1H5v-1c0-.28.22-.5.5-.5M10 2.5v-1C10 .67 9.33 0 8.5 0h-3C4.67 0 4 .67 4 1.5v1H.5c-.28 0-.5.22-.5.5s.22.5.5.5h.54l.85 10.66C1.97 15.2 2.84 16 3.88 16h6.23c1.04 0 1.91-.8 1.99-1.84l.85-10.66h.54c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-3.5Zm1.96 1-.85 10.58c-.04.52-.48.92-1 .92H3.89c-.52 0-.96-.4-1-.92L2.04 3.5h9.92Zm-7.49 1c.28-.02.51.19.53.47l.5 8.5c.01.28-.2.51-.48.52-.27.01-.5-.19-.52-.46L4 5.03c-.02-.28.19-.51.47-.53Zm5.06 0c.28.02.49.25.47.53l-.5 8.5c-.01.28-.24.49-.52.48s-.49-.24-.48-.52v-.02l.5-8.5c.02-.28.25-.49.53-.47M7 4.5c.28 0 .5.22.5.5v8.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5V5c0-.28.22-.5.5-.5"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 6" viewBox="0 0 15.85 14.02">
2
+ <path d="M0 3.76c.05-.14.08-.29.14-.42.31-.65.83-.96 1.54-.97h2.75v-.45c.01-.26 0-.52.06-.77C4.65.51 5.24.03 5.91.01c.92-.02 1.84-.02 2.75 0 .89.02 1.53.69 1.55 1.6v.77h2.76c.82 0 1.48.5 1.63 1.27.06.33.04.69.04 1.03 0 .14.04.24.13.34 1.45 1.51 1.44 3.84-.02 5.36-.08.08-.11.16-.11.27 0 .28.01.57-.05.85-.16.76-.79 1.26-1.6 1.26H9.43c-.05 0-.12 0-.15-.02-.06-.06-.14-.15-.14-.23 0-.07.1-.15.17-.2.04-.03.12-.01.18-.01h3.45c.59 0 1.04-.31 1.18-.84.05-.18.05-.37.07-.6-1.48.89-2.93.89-4.39 0-.14.14-.29.29-.43.44-.03.03-.03.08-.03.12.01.17-.04.31-.16.43-.63.63-1.25 1.26-1.88 1.88-.38.38-.98.37-1.35 0-.38-.38-.38-.97 0-1.36.62-.63 1.25-1.25 1.87-1.87.12-.12.26-.17.43-.16.05 0 .11-.02.15-.05.15-.13.28-.27.43-.42-.45-.66-.67-1.39-.68-2.19H4.27v.85c0 .38-.25.71-.62.82-.53.16-1.08-.2-1.12-.75-.02-.3 0-.61 0-.92C1.67 7.59.99 7.2.47 6.5c0 .07-.01.11-.01.15v4.44c0 .72.48 1.21 1.2 1.21H4.9c.19 0 .3.09.3.23 0 .15-.11.23-.31.23H1.66c-.85 0-1.44-.5-1.63-1.34 0-.02-.02-.05-.03-.07V3.76Zm4.29 3.43h3.78c.1 0 .12-.04.13-.13.42-2.69 3.45-4.1 5.79-2.69.05.03.11.07.18.11 0-.21.01-.4 0-.58-.01-.14-.04-.28-.1-.4-.22-.46-.6-.67-1.11-.67H1.57C.93 2.87.47 3.35.47 4v.9c0 .76.3 1.37.9 1.83.34.26.72.41 1.16.45-.01-.28.02-.54.21-.75.19-.21.42-.31.7-.31.5.01.76.33.86 1.05ZM12.1 4.3c-1.88-.05-3.42 1.43-3.48 3.29-.06 1.81 1.39 3.39 3.22 3.48 1.86.09 3.46-1.35 3.55-3.2.09-1.9-1.36-3.48-3.28-3.56ZM5.39 2.37v-.71c0-.46.24-.69.7-.69h2.46c.47 0 .7.23.7.7v.7h.51c-.02-.36 0-.72-.06-1.07-.08-.47-.5-.81-.96-.82C7.8.47 6.85.47 5.91.48c-.47 0-.91.38-.97.85-.05.34 0 .69 0 1.04h.47Zm3.39 0v-.7c0-.21-.03-.24-.24-.24H6.16c-.06 0-.12-.01-.17 0-.05.02-.13.08-.13.12-.01.27 0 .53 0 .81h2.93Zm-1.19 9.02c-.45.45-.89.88-1.32 1.32-.2.2-.19.5 0 .69.19.19.49.2.7 0 .12-.11.23-.23.35-.35l.96-.96c-.03-.03-.04-.06-.07-.08-.2-.21-.41-.42-.63-.64Zm-3.78-3.6v-.8c0-.21-.18-.37-.38-.37s-.4.12-.42.31c-.02.28 0 .57 0 .87h.81Zm-.01.48h-.81c0 .22-.04.43.16.57.14.1.29.11.44.03.23-.13.22-.35.21-.6Zm4.14 2.78.67.67c.09-.07.18-.15.3-.25-.17-.16-.32-.3-.46-.44q-.27-.26-.51.02Zm1.19-.8c-.14.13-.27.26-.39.38.11.11.22.21.3.3.13-.12.26-.25.39-.38-.09-.1-.2-.2-.3-.3Z"/>
3
+ <path d="M12 4.89c1.29.01 2.41.9 2.71 2.15.04.16-.02.28-.16.32-.14.03-.24-.04-.29-.2-.27-.98-.9-1.58-1.9-1.76-1.31-.24-2.61.8-2.68 2.13-.07 1.33.86 2.39 2.19 2.49 1.05.08 2.08-.66 2.36-1.7.01-.04.02-.09.04-.13.05-.14.16-.2.29-.17.12.03.19.15.16.29-.19.8-.63 1.42-1.36 1.81-1.05.56-2.1.5-3.05-.22-.95-.73-1.29-1.73-1-2.89.29-1.15 1.07-1.84 2.24-2.07.15-.03.31-.03.46-.05Z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 13" viewBox="0 0 15.75 15.59">
2
+ <path d="M6.88 6.59V1c0-.55.45-1 1-1s1 .45 1 1v.59h5c.31 0 .61.15.8.4l.98 1.3c.13.18.13.42 0 .6l-.98 1.3c-.19.25-.49.4-.8.4h-5v10h-2v-5h-5c-.31 0-.61-.15-.8-.4L.1 8.89c-.13-.18-.13-.42 0-.6l.98-1.3c.19-.25.49-.4.8-.4h5Zm1 3v-2h-6l-.75 1 .75 1h6Zm0-5h6l.75-1-.75-1h-6v2Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 8" viewBox="0 0 15.69 15.69">
2
+ <path d="M15.69 4.78c-.08.3-.26.52-.48.73-.15.14-.29.29-.43.43-.45.45-.81.51-1.39.21-.03.04-.06.09-.09.13-.49.76-1 1.52-1.48 2.29-.34.55-.72 1.06-1.21 1.49-.1.09-.13.19-.13.32v4.66h1c.17.02.29.15.3.31 0 .16-.12.31-.28.33H.35c-.19-.01-.33-.15-.33-.33 0-.18.14-.31.33-.31h.98V8.3c0-.36.09-.46.45-.46h1.69c-.03-.22-.07-.42-.09-.62-.19-2 1.09-3.82 3.05-4.31.98-.25 1.96-.5 2.94-.74.04 0 .08-.03.1-.03-.02-.17-.06-.34-.06-.5 0-.24.11-.45.28-.63.24-.24.46-.49.72-.71.12-.13.32-.2.5-.3h.34c.3.08.52.28.73.49 1.07 1.08 2.15 2.15 3.22 3.22.21.21.41.43.48.72v.34ZM4.15 7.84c.45 0 .88-.01 1.32 0 .22 0 .34-.04.47-.24.78-1.18 2.47-1.18 3.32-.02.2.28.19.38-.04.62-.79.79-1.58 1.58-2.37 2.38-.1.1-.2.23-.25.36-.22.5.06 1.02.6 1.11.3.05.56-.04.78-.26.87-.88 1.73-1.76 2.6-2.64.09-.09.19-.19.26-.3l1.56-2.4.51-.78c-.02-.03-.04-.05-.06-.06-.94-.95-1.87-1.89-2.81-2.84-.06-.06-.12-.07-.2-.05-1.09.28-2.17.55-3.26.83-1.92.51-2.98 2.37-2.42 4.3Zm5.66 3.07s-.03-.02-.05-.03c-.04.05-.07.1-.11.15-.44.44-.86.9-1.32 1.33-.71.67-1.87.45-2.31-.43-.29-.57-.16-1.26.33-1.76.51-.51 1.02-1.02 1.52-1.53.04-.04.07-.08.12-.13H1.97v6.51h7.84v-4.1ZM11.08.63c-.09.04-.18.07-.24.12-.24.23-.48.47-.72.71-.14.15-.14.32 0 .48.07.07.14.14.2.21 1.12 1.14 2.24 2.27 3.37 3.41.16.16.35.16.51 0l.69-.69c.16-.16.16-.34 0-.5-1.2-1.2-2.39-2.4-3.6-3.59-.06-.06-.15-.09-.24-.14Zm-4.49 7.2H8.6c-.46-.6-1.49-.61-2.01 0Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 5" viewBox="0 0 15.98 14.21">
2
+ <path d="M14.52 14.21H1.46c-.52 0-.99-.27-1.26-.73-.27-.48-.27-1.05 0-1.52L6.74.73c.13-.22.31-.41.53-.54.33-.19.72-.24 1.1-.14.37.1.69.34.88.68l6.53 11.22c.28.48.28 1.04 0 1.52-.26.46-.74.74-1.26.74ZM7.99.75c-.12 0-.24.03-.35.09-.11.06-.2.15-.26.26L.85 12.32c-.14.24-.14.53 0 .78.13.23.36.36.61.36h13.05c.26 0 .48-.13.61-.36.14-.24.14-.53 0-.78L8.6 1.1C8.51.93 8.35.82 8.17.77 8.11.75 8.05.75 7.99.75Zm0 11.53c-.73 0-1.32-.6-1.32-1.33s.59-1.33 1.32-1.33 1.32.6 1.32 1.33-.59 1.33-1.32 1.33Zm0-1.92c-.32 0-.58.26-.58.59s.26.59.58.59.58-.26.58-.59-.26-.59-.58-.59Zm0-.95h-.08c-.44-.04-.78-.38-.82-.82l-.33-3.37c-.07-.68.43-1.29 1.1-1.36h.12c.35 0 .68.14.91.4.24.26.35.61.32.96l-.33 3.37c-.02.24-.13.45-.32.61-.16.14-.36.21-.57.21Zm0-5.19-.05.37c-.27.03-.47.27-.44.55l.33 3.37c0 .08.07.14.14.15.06.01.09-.02.11-.03.02-.02.05-.05.06-.11l.33-3.38c.01-.14-.03-.28-.13-.39-.09-.1-.22-.16-.36-.16v-.37Z"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 17" viewBox="0 0 15.98 13.43">
2
+ <path d="M15.81 11.79c-.86-1.12-1.72-2.23-2.59-3.34l-.17-.22c-.31-.4-.75-.64-1.22-.65-.47-.02-.92.18-1.26.57-.26.29-.52.59-.77.89l-.2.24c-.04.05-.09.08-.13.12-.04-.04-.08-.07-.11-.1-.7-.57-1.39-1.15-2.09-1.71v-.1s0-.2.02-.39c.03-.37.05-.75.07-1.12l.05-.94c.03-.63.07-1.26.09-1.89 0-.33-.11-.65-.34-.89-.23-.24-.53-.38-.86-.38-.97-.02-1.77-.02-2.51 0-.25 0-.6.16-.74.39-.31.52-.61 1.09-.91 1.74-.13.28-.13.6 0 .89.12.27.34.48.59.57l.19.06.35-.65c.12.1.25.2.38.3l-.45.85 2.16 1.13.55-1.08-.03 1.54c-.01.26.11.53.33.72.19.17.43.26.67.26.05 0 .1 0 .15-.01l.18-.03.05-.4c.63.51 1.24 1.02 1.85 1.52-.08.04-.16.09-.25.11-.12.03-.24.1-.32.2-.54.61-1.07 1.23-1.6 1.86-.11.13-.19.37-.12.57.08.23.4.28.52.28h8.08s.49 0 .57-.3c.05-.2-.04-.44-.15-.58ZM3.48 4.45l.16-.29c.15-.29.31-.58.46-.86h.52l-.77 1.46c-.13-.1-.25-.2-.37-.3Zm3.43.54-.05.94c-.02.37-.04.74-.07 1.11-.02.2-.03.4-.03.42v.43l-.02.2c-.08-.02-.17-.07-.24-.13-.11-.1-.17-.22-.16-.35V6.57l.08-1.49-.04-.19-.36-.15-.89 1.74-1.3-.68 1.58-3H4c-.16 0-.27.13-.31.21-.16.3-.32.6-.49.91l-.51.96c-.06-.05-.1-.12-.14-.2-.07-.16-.07-.35 0-.5.29-.64.58-1.19.88-1.69.04-.06.22-.16.35-.16.73-.03 1.52-.03 2.48 0 .2 0 .38.09.52.23.14.15.21.34.21.54-.02.63-.05 1.26-.08 1.88Zm8.48 7.2H7.26c0-.02.02-.04.02-.05.52-.62 1.05-1.24 1.59-1.85.02-.02.05-.04.07-.04.38-.09.7-.29 1.02-.66l.2-.24c.25-.3.51-.59.77-.88.24-.27.58-.43.89-.41.33.01.63.18.86.47l.17.22c.86 1.11 1.73 2.22 2.59 3.34.02.03.04.07.05.1-.03 0-.06.01-.09.01Z"/>
3
+ <path d="m.94 13.43-.21-.12c-.65-.35-.91-1.15-.58-1.78.61-1.16 1.23-2.32 1.86-3.48l.7-1.3.19-.15.16.05.34.18 1.32.69c.11.06.17.16.22.23.34.53.68 1.04 1.01 1.56.07.11.11.25.11.37v3.26s0 .09-.01.13l-.03.19-.2.05c-.35 0-.67-.11-.92-.35-.26-.24-.4-.56-.41-.91v-1.96c0-.09-.03-.2-.08-.28-.24-.4-.49-.79-.75-1.2l-.07-.11-2.65 4.93Zm4.86-.47h.02-.02Zm-2.27-5.4.51.81c.26.41.51.81.75 1.21.09.15.15.34.15.52v1.96c0 .22.1.42.26.57.1.1.23.16.36.2V9.69c0-.03-.02-.08-.04-.12-.33-.52-.66-1.03-1-1.55-.02-.03-.05-.07-.06-.08-.43-.23-.87-.46-1.31-.69L3 7.17l-.59 1.1c-.62 1.15-1.25 2.31-1.85 3.47-.17.33-.08.73.19.99l2.77-5.19Zm-.43-.52Zm5.23-4.52c-.34 0-.66-.13-.89-.36-.24-.23-.36-.55-.36-.89C7.08.56 7.62.01 8.33 0c.37.02.67.13.91.36.24.24.37.56.37.9 0 .7-.56 1.25-1.26 1.25Zm0-2.04c-.44 0-.77.33-.77.78 0 .21.08.4.22.55s.35.22.55.22c.44 0 .78-.33.78-.77 0-.22-.08-.41-.22-.56-.14-.14-.34-.22-.56-.22Z"/>
4
+ </svg>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" fill="#000" viewBox="0 0 28.18 36.64"><g id="Calque_2" data-name="Calque 2"><g id="Calque_1-2" data-name="Calque 1"><path d="M18,36.64l-18-3v-26L21,0V13L18,16.06ZM2,31.91l14,2.36v-19l3-3.06V2.84L2,9Z"/><path d="M28.18,33.75H19.35V15.23l3.06-3.06V7.26h5.77Z"/></g></g></svg>
1
+ <svg data-name="Calque 1" xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 18.46 24"><g data-name="Calque 2"><g data-name="Calque 1-2"><path d="M11.79 24 0 22.03V5l13.76-5v8.52l-1.97 2V24ZM1.31 20.9l9.17 1.55V10l1.97-2V1.86L1.31 5.9v15.01Z"/><path d="M18.46 22.11h-5.78V9.98l2-2V4.76h3.78v17.35Z"/></g></g></svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 16" viewBox="0 0 14.07 14.07">
2
+ <path d="M8.9 0c.19.06.38.1.55.19.59.3.91.79.96 1.45 0 .09.04.13.13.16.56.19.92.71.89 1.3 0 .09.02.13.1.16.45.2.77.53.97.98.05.11.05.21-.06.29-.1.07-.25.04-.3-.09-.18-.41-.48-.69-.89-.87-.17-.07-.24-.23-.24-.41.01-.55-.18-.83-.69-1.01-.22-.08-.31-.22-.32-.49-.03-.55-.37-1.01-.89-1.19-.83-.29-1.72.31-1.75 1.19-.01.29-.1.41-.38.5-.4.13-.66.47-.64.89.02.29-.09.48-.37.58-.02 0-.04.02-.07.04l.21.78c.23.88.41 1.76.41 2.68 0 .05.03.11.06.15.47.68 1.43.54 1.85 0 .03-.04.04-.09.04-.14V6.07c0-.06-.03-.14-.08-.19-.26-.27-.53-.54-.8-.81-.08-.08-.1-.17-.04-.27.06-.09.15-.11.24-.08.04.02.08.05.12.09.18.18.35.36.55.56 0-.07.02-.1.02-.13v-.77c0-.17.07-.27.2-.27s.21.1.21.27v1.26l.05.03c.1-.11.19-.22.3-.33l.24-.24c.11-.1.23-.11.31-.02.09.09.08.21-.03.32l-.39.39c-.16.16-.38.3-.46.5-.08.19 0 .44-.03.66-.02.18.06.3.19.41.56.47 1.61.46 1.9-.6.06-.23.18-.36.4-.46.46-.2.74-.57.85-1.06 0-.03.01-.05.02-.08.04-.12.13-.18.24-.16.12.03.18.11.16.23-.04.28-.14.53-.29.76-.03.04-.05.08-.08.12.18.06.36.1.52.18.73.36 1.11.97 1.25 1.75 0 .04.02.09.03.13v.52s-.02.04-.02.06c-.16 1.08-.77 1.74-1.84 1.99v2.81h1.57c.13 0 .22.03.29.14v.14c-.07.11-.16.14-.29.14H.17c-.11-.03-.17-.1-.16-.21 0-.1.07-.17.17-.19h2.88v-2.99c-.14-.02-.28-.04-.42-.08-1.21-.3-1.97-1.1-2.4-2.24-.25-.64-.28-1.3-.2-1.97.11-.93.32-1.85.6-2.74.02-.07.07-.15.13-.18s.17-.02.21.02c.05.05.08.16.06.23-.06.28-.16.54-.23.82-.21.82-.4 1.65-.4 2.5 0 1.12.42 2.05 1.34 2.73.38.28.81.44 1.3.48 0-.04.01-.08.01-.12V8.76c0-.06-.04-.14-.08-.19-.24-.25-.49-.49-.74-.74-.11-.12-.13-.23-.04-.32s.21-.08.32.03c.17.16.33.33.5.49h.04v-1.7c.02-.12.1-.2.21-.2.11 0 .19.09.2.21v.82c.01 0 .02.01.03.02.13-.14.27-.27.4-.41l.12-.12c.11-.1.23-.11.31-.02.09.09.08.2-.03.31-.14.15-.29.29-.44.44-.13.13-.31.25-.38.41-.07.16-.02.37-.02.56v1.89c.44-.03.83-.17 1.18-.39.81-.52 1.26-1.28 1.42-2.22.11-.63.02-1.26-.09-1.88-.22-1.23-.56-2.42-1.08-3.56-.22-.48-.48-.95-.85-1.34-.12-.13-.27-.24-.42-.33-.25-.15-.51-.14-.76 0-.31.18-.54.43-.72.73-.25.43-.47.89-.71 1.33-.03.06-.05.13-.08.19-.06.14-.16.2-.28.16-.12-.05-.17-.17-.11-.31.21-.44.42-.88.64-1.32.08-.16.2-.31.31-.46.3-.4.65-.73 1.16-.84h.33c.56.14.93.52 1.25.97.34.48.59 1.01.81 1.55.1.25.19.5.29.75q.15-.03.15-.18c0-.62.33-1.11.92-1.3.07-.02.1-.06.1-.13.03-.56.28-1 .73-1.34.23-.17.5-.25.78-.32h.44ZM3.48 10.67v2.97h4.99v-5.8c-.69.41-1.35.44-1.99-.05-.41 1.58-1.31 2.62-2.99 2.88Zm8.3.17c-.76-.14-1.32-.56-1.64-1.26-.15-.32-.22-.67-.23-1.02v-.39c-.39-.01-.71-.12-1.02-.32v5.8h2.88v-2.8Zm.42-.44s.02.03.04.04c.19-.09.4-.15.58-.27 1.03-.67 1.14-2.34.19-3.15-.44-.37-.93-.58-1.49-.23-.05.03-.1.09-.12.14-.18.49-.46.89-.95 1.12-.04.02-.08.07-.08.11-.09.6.02 1.15.39 1.63.26.33.59.55 1.03.62v-.16c0-.42-.02-.83 0-1.25.02-.21-.17-.52.2-.62.36.11.15.41.2.62.02.06 0 .13 0 .19.01 0 .02 0 .04.01.09-.1.19-.2.28-.3.11-.12.23-.13.33-.04s.09.21-.03.33c-.18.18-.36.36-.54.55-.03.03-.06.07-.07.11v.55Z"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 4" viewBox="0 0 15.33 15.33">
2
+ <path d="M13.27 15.33h-.51s-.06-.02-.1-.03c-.83-.17-1.36-.67-1.6-1.48-.08-.29-.08-.29-.38-.29h-6.2c-.11 0-.16.02-.18.14-.18.83-.68 1.36-1.5 1.6-.08.02-.15.04-.23.06h-.48s-.09-.02-.13-.03c-.23-.08-.46-.16-.68-.26-.12-.06-.15-.19-.09-.29.06-.11.18-.14.3-.09.03.01.06.03.09.05.62.32 1.35.21 1.84-.28.24-.24.4-.53.45-.89H3.5c-.12 0-.24-.04-.36-.05-.17.44-.44.66-.82.66-.34 0-.65-.22-.77-.54-.14-.37-.02-.68.38-1.02-.09-.23-.18-.45-.27-.7-.1.06-.2.11-.29.18-.63.47-.8 1.29-.43 2.01.08.16.06.29-.07.35-.12.06-.25.01-.33-.14-.2-.37-.29-.78-.23-1.2.11-.77.52-1.32 1.23-1.64.04-.02.08-.08.08-.13-.02-.36-.05-.72-.08-1.07-.1-1.17-.19-2.35-.29-3.52-.02-.29-.05-.58-.07-.88-.47-.01-.83-.2-1.05-.6-.06-.11-.09-.24-.14-.36v-.33c.01-.03.02-.07.03-.1.14-.47.44-.8.93-.83.31-.02.39-.16.45-.4.04-.16.13-.32.2-.49h-.21c-.24 0-.42-.12-.52-.34-.1-.22-.08-.45.09-.63.3-.32.61-.63.93-.93.17-.17.39-.19.61-.1.23.1.34.28.35.53v.2h.05c.99-.5 1.99-.51 2.99-.02.03.01.07.03.1.01.23-.1.46-.21.71-.32-.05-.05-.1-.08-.15-.12-.18-.19-.23-.41-.12-.65.12-.25.32-.37.58-.37h1.21c.25 0 .44.12.54.35.1.23.06.45-.11.64-.05.05-.09.1-.14.15.21.09.42.17.62.28.11.06.19.07.31 0 .7-.35 1.43-.45 2.19-.26.28.07.54.18.83.28v-.21c.02-.23.13-.41.35-.5.21-.09.42-.08.59.07.34.32.67.64.98.98.16.17.17.39.07.6-.09.21-.26.32-.49.33h-.23c.09.23.19.43.24.65.04.16.1.22.27.22.56 0 1.03.46 1.08 1.02.05.56-.34 1.08-.9 1.19-.09.02-.18.03-.29.04l-.45 5.55c.05.02.09.04.13.06.78.35 1.26 1.14 1.21 1.99-.06.85-.66 1.58-1.49 1.81-.09.02-.18.05-.27.07ZM1.65 5.84v.13c.03.42.07.84.1 1.25.1 1.18.19 2.37.29 3.55.03.35.04.7.1 1.04.14.75.79 1.27 1.58 1.27h8.03c.74-.03 1.39-.62 1.47-1.36.06-.56.1-1.13.15-1.7.09-1.05.17-2.11.26-3.16.03-.34.05-.67.08-1.03h-2.65c-.16 0-.26-.1-.26-.23s.1-.21.25-.22h3.14c.48 0 .8-.43.66-.88-.09-.3-.35-.47-.7-.47H1.08c-.42.03-.72.45-.6.86.09.31.35.49.72.49h8.92c.13.01.22.1.22.22s-.08.21-.21.23H1.65Zm3.28-2.25h5.35c-.18-.94-1.15-2.1-2.67-2.11-1.55 0-2.51 1.2-2.68 2.11Zm8.63 0c-.39-1.68-2.38-2.57-3.85-1.78.55.48.89 1.08 1.05 1.78h2.8ZM5.55 1.77c-1.6-.72-3.41.26-3.78 1.82h2.68c.16-.72.52-1.33 1.1-1.82Zm5.92 11.78c.03.65.7 1.28 1.43 1.33.79.06 1.52-.5 1.66-1.26.13-.73-.28-1.53-.89-1.72-.09.23-.17.45-.26.68.39.31.52.63.39 1-.11.32-.41.55-.74.56-.4.02-.67-.19-.86-.65-.24.02-.47.04-.72.07ZM7.62.45h-.6c-.06 0-.14.04-.15.08-.02.05.02.12.05.18.01.03.04.04.06.06.15.2.34.25.61.27.32.02.51-.1.69-.32 0 0 .02-.01.02-.02.02-.06.06-.13.04-.17-.02-.04-.1-.08-.15-.08h-.57ZM1.63 2.28c.28 0 .28 0 .48-.2.08-.08.17-.15.25-.24.03-.03.06-.08.07-.12 0-.14.01-.29 0-.43 0-.05-.05-.11-.09-.14-.04-.02-.11 0-.15.03-.29.28-.58.57-.87.87-.03.03-.04.11-.03.15.02.04.08.07.12.08.07.01.14 0 .21 0Zm12.03 0c.1 0 .18.01.24 0 .05-.01.12-.05.14-.09.02-.04 0-.12-.04-.16-.28-.29-.56-.57-.85-.85-.04-.03-.12-.05-.16-.04-.04.02-.08.09-.08.14-.02.28-.04.57.27.74.02.01.04.03.05.05.11.17.26.26.43.2ZM2.3 13.68c.18 0 .31-.1.37-.26.03-.09.03-.15-.07-.21-.09-.05-.16-.11-.24-.18-.14-.12-.23-.11-.34.04-.09.12-.11.26-.04.39.07.14.19.2.31.21Zm11.11-.38c-.05-.09-.09-.19-.15-.26-.08-.09-.17-.12-.28-.01-.08.08-.19.14-.28.22-.03.03-.06.09-.06.13.02.19.21.32.4.31.19-.02.34-.18.37-.38Z"/>
3
+ <path d="M8.74 8.08c.02-.09.02-.14.04-.2.03-.13.12-.18.24-.17.12.01.2.09.19.21-.03.31-.06.62-.11.94-.02.13-.16.2-.3.14-.27-.11-.54-.23-.81-.35-.12-.05-.16-.18-.11-.29.04-.11.17-.16.29-.12.05.01.09.03.18.07-.14-.24-.25-.45-.38-.64-.15-.21-.46-.18-.61.05-.13.2-.24.41-.36.62-.09.16-.21.2-.33.14-.13-.07-.15-.2-.06-.36.12-.2.23-.41.35-.61.35-.57 1.09-.57 1.44 0 .11.18.21.37.34.58ZM5.8 9.51c-.08.03-.13.05-.18.06-.12.03-.22-.01-.27-.13-.05-.11-.02-.22.09-.27.28-.13.57-.26.86-.37.13-.05.25.04.27.18.04.3.08.59.1.89.01.13-.09.22-.21.23-.12 0-.21-.07-.24-.2 0-.04-.01-.08-.05-.14-.12.21-.25.41-.35.63-.1.22.09.47.34.48h.79c.14.01.23.11.22.24 0 .12-.1.21-.23.21-.28 0-.57.01-.85 0-.56-.03-.91-.65-.66-1.16.08-.17.18-.33.28-.49l.08-.16Zm2.69 1.81c.08.06.12.09.16.13.09.09.1.2.03.3-.07.1-.19.12-.28.06-.26-.18-.51-.36-.76-.56-.11-.09-.09-.24.02-.33.23-.18.47-.35.71-.52.11-.08.23-.05.31.05.07.09.05.22-.04.31-.03.03-.07.06-.13.11.27 0 .51.02.75 0 .25-.03.37-.31.24-.55-.12-.22-.26-.44-.37-.66-.03-.07-.03-.18.01-.25.03-.05.14-.09.22-.08.05 0 .12.06.16.12.14.22.28.45.4.69.28.55-.09 1.18-.71 1.2h-.7Z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 10" viewBox="0 0 15.64 15.64">
2
+ <path d="M7.82 0c.54 0 .98.44.98.98v5.86h5.86c.54 0 .98.44.98.98s-.44.98-.98.98H8.8v5.86c0 .54-.44.98-.98.98s-.98-.44-.98-.98V8.8H.98C.44 8.8 0 8.36 0 7.82s.44-.98.98-.98h5.86V.98c0-.54.44-.98.98-.98"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 11" viewBox="0 0 14.01 15.9">
2
+ <path d="M7.42 15.9c-.88-.24-1.76-.47-2.64-.71-.31-.08-.63-.17-.94-.26-.25-.07-.48-.04-.71.08-.09.05-.18.11-.27.15-.17.07-.29.15-.27.37.01.15-.11.24-.26.23-.68-.01-1.37-.03-2.05-.05-.19 0-.28-.12-.28-.32.03-1.22.07-2.44.1-3.66 0-.25.01-.51.02-.76 0-.23.1-.32.33-.31.64.01 1.27.03 1.91.05.28 0 .36.1.35.39v.29c.22-.08.44-.17.67-.23.82-.22 1.62-.17 2.37.22.48.25.98.37 1.52.37.48 0 .95.03 1.43.03.63.01 1.12.28 1.46.81.01.02.02.03.04.06.14-.07.28-.13.42-.2.56-.26 1.11-.53 1.67-.79.59-.27 1.28-.07 1.63.46.14.21.12.34-.09.48-1.51.97-3.01 1.95-4.52 2.92-.33.21-.7.29-1.08.35-.05 0-.1.02-.15.03h-.65Zm-4.79-1.23c.08-.04.15-.07.21-.11.37-.2.75-.24 1.15-.13.52.15 1.03.29 1.55.43.61.17 1.22.36 1.84.48.59.11 1.18.02 1.69-.31 1.38-.88 2.75-1.78 4.13-2.67.05-.03.09-.06.14-.09-.24-.23-.57-.28-.9-.12-.65.3-1.29.61-1.93.91-.12.05-.16.11-.13.24.05.26-.04.44-.38.42-.92-.03-1.84-.05-2.76-.08-.09 0-.18 0-.26-.02-.14-.02-.2-.12-.21-.25 0-.13.1-.24.23-.25h.15c.83.02 1.67.04 2.5.07h.18c-.08-.48-.52-.87-1.01-.9-.28-.02-.57-.02-.85-.03-.39-.01-.79-.02-1.18-.03-.47-.02-.87-.22-1.29-.41-.91-.43-1.81-.38-2.69.12-.09.05-.13.11-.13.22-.01.57-.03 1.15-.05 1.72v.8ZM.64 11.2c-.04 1.31-.07 2.64-.11 4h1.55c.04-1.32.07-2.65.11-4H.64ZM7.26 0c.13.08.17.2.17.35v2.29c0 .05 0 .11-.01.15-.03.13-.12.19-.25.19s-.22-.07-.25-.19c-.01-.05-.01-.11-.01-.17V.36c0-.16.03-.28.17-.37h.19Z"/>
3
+ <path d="M7.16 11.03c-2.09 0-3.78-1.69-3.78-3.78 0-2.08 1.7-3.78 3.79-3.78s3.78 1.69 3.78 3.78-1.7 3.78-3.78 3.78Zm0-.52c1.79 0 3.26-1.44 3.27-3.23.01-1.81-1.43-3.27-3.24-3.29-1.79-.01-3.27 1.44-3.28 3.24 0 1.81 1.44 3.27 3.25 3.28Zm1.7-8.36v-.54c0-.19.11-.3.26-.3.15 0 .25.11.25.29v1.12c0 .17-.11.29-.26.28-.15 0-.25-.11-.25-.28v-.57Zm-3.91-.01v-.56c0-.17.1-.27.25-.28.15 0 .26.11.26.28v1.13c0 .17-.1.27-.25.28-.15 0-.26-.11-.26-.28v-.57Z"/>
4
+ <path d="M7.76 8.09c0-.34-.24-.58-.62-.6-.32-.01-.59-.14-.81-.38-.5-.57-.3-1.47.4-1.76.11-.05.15-.1.14-.21V5c.03-.14.12-.2.25-.21.13 0 .26.1.25.22-.02.22.08.29.26.37.39.17.59.5.63.92.02.19-.09.32-.25.33-.15 0-.26-.1-.28-.29-.03-.32-.25-.54-.56-.56-.29-.02-.56.2-.61.49-.05.28.11.57.39.66.09.03.18.03.27.04.53.04.93.42 1.02.96.08.48-.21.99-.68 1.17-.16.06-.22.13-.2.29.02.13-.05.25-.19.26-.09 0-.2-.03-.27-.09-.05-.05-.06-.16-.05-.25 0-.12-.03-.17-.14-.22-.41-.18-.63-.5-.68-.94-.02-.19.08-.32.24-.34.16-.01.27.1.28.3.03.34.29.56.63.55.3-.01.55-.27.55-.58Z"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 14" viewBox="0 0 15.87 12.31">
2
+ <path d="M5.4 5.9c-.23-.4-.45-.79-.66-1.18-.47-.84-.19-1.73.68-2.15C7.13 1.76 8.84.95 10.54.14c.81-.38 1.69.03 1.86.89.11.56-.17 1.11-.72 1.4-.79.4-1.59.8-2.38 1.19-.46.23-.91.46-1.38.69.03.05.05.09.08.13.93 1.36 1.86 2.71 2.78 4.07.06.09.14.14.25.17.29.1.59.2.85.36.7.41 1.4.44 2.09.03.46-.27.94-.45 1.48-.46.28 0 .46.24.37.48-.05.15-.17.23-.32.23-.46 0-.85.19-1.25.41-.9.49-1.81.47-2.68-.05-.76-.45-1.49-.46-2.26 0-.92.55-1.87.55-2.8 0-.75-.45-1.48-.46-2.23 0-.94.56-1.89.56-2.83 0-.33-.19-.67-.33-1.06-.34-.26 0-.42-.16-.41-.37 0-.22.19-.38.45-.34.22.03.4-.04.58-.15 1.4-.83 2.81-1.66 4.22-2.49.05-.03.09-.06.15-.1Zm4.61 2.76c-.05-.08-.08-.13-.12-.18-.83-1.21-1.67-2.42-2.5-3.63-.36-.52-.24-.95.32-1.23 1.21-.6 2.41-1.21 3.62-1.81.16-.08.29-.18.35-.35.08-.22.02-.45-.15-.6-.2-.17-.42-.18-.66-.06-1.72.82-3.44 1.63-5.15 2.44-.48.23-.61.66-.35 1.12.2.35.4.7.6 1.06.29.52.2.88-.31 1.18-1.29.76-2.59 1.53-3.88 2.29-.04.02-.07.05-.11.08.76.5 1.52.56 2.3.09.13-.08.27-.17.42-.22.87-.34 1.71-.26 2.5.23.63.39 1.29.42 1.94.09.38-.19.73-.42 1.19-.49Zm3.01 3.64c-.58 0-1.07-.17-1.53-.44-.58-.35-1.2-.39-1.83-.13-.1.04-.2.1-.3.16-.97.57-1.94.57-2.91-.02-.6-.36-1.22-.41-1.86-.14-.12.05-.23.13-.35.2-.92.51-1.84.52-2.74 0-.36-.21-.73-.36-1.16-.36-.2 0-.35-.17-.35-.36 0-.19.15-.35.36-.35.53-.02 1.02.14 1.47.43.48.31 1.01.38 1.55.25.19-.05.38-.14.55-.24.99-.59 1.96-.59 2.95 0 .69.42 1.4.42 2.09 0 .97-.58 1.94-.6 2.91-.03.75.44 1.49.44 2.23-.02.42-.26.87-.39 1.36-.38.23 0 .39.15.39.35 0 .2-.16.36-.38.36-.38 0-.73.11-1.05.32-.44.28-.93.42-1.41.42Z"/>
3
+ <path d="M12.92 8.24c-1.42 0-2.57-1.16-2.58-2.59 0-1.4 1.17-2.58 2.57-2.57 1.43 0 2.59 1.16 2.58 2.58 0 1.42-1.16 2.58-2.58 2.58Zm0-.73c1.02 0 1.85-.82 1.85-1.84 0-1.03-.81-1.86-1.83-1.86-1.04 0-1.87.82-1.87 1.86 0 1.02.82 1.84 1.85 1.84Z"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 12" viewBox="0 0 14.62 15.7">
2
+ <path d="M13.1 14.35c-.09.77-.49 1.23-1.17 1.34-.1.02-.2.02-.3.02H3c-.87 0-1.39-.46-1.49-1.35H.86c-.52 0-.86-.34-.86-.86v-2.66c0-.59.23-1.08.69-1.46.09-.08.12-.15.12-.27.02-1.09.01-2.18.07-3.26.09-1.65.38-3.27.81-4.86.17-.59.7-.99 1.3-.99h1.1c.47 0 .79.3.85.77.04.34.08.67.13 1.02.3-.05.58-.11.89-.16-.04-.53.09-1.02.55-1.36.26-.2.56-.29.88-.27.41.03.74.21 1 .54.25.32.3.7.27 1.09.3.06.58.11.89.16.04-.33.09-.66.13-.99.05-.51.37-.8.9-.8h1.05c.62 0 1.14.4 1.3 1 .36 1.35.61 2.71.75 4.1.14 1.33.14 2.67.13 4 0 .12.03.19.12.27.46.38.69.87.69 1.46v2.66c0 .52-.34.85-.86.86h-.65ZM8.39 7.58h3.17c.42 0 .75-.36.76-.78 0-.32 0-.64-.03-.96-.17-2.04-1.9-3.64-3.94-3.66-.69 0-1.38-.03-2.06 0-1.7.08-2.92.89-3.64 2.43-.31.65-.35 1.36-.35 2.07 0 .57.32.91.89.91h3.04v-.23c0-.36.23-.58.58-.58h1.01c.34 0 .56.23.57.56v.25Zm-6.12.24c0 .1-.01.15-.01.2-.05 1.72-.1 3.45-.16 5.17-.01.39-.03.78-.03 1.17 0 .37.27.7.57.73v-.03c.02-.94.05-1.87.07-2.81.01-.56.34-.88.89-.88h7.41c.57 0 .89.32.9.89.01.67.03 1.34.04 2.01v.84c.07-.02.1-.02.13-.04.31-.16.47-.41.46-.76-.02-.76-.04-1.51-.07-2.27l-.12-4.02c0-.06 0-.11-.02-.2-.33.26-.69.3-1.06.3H8.38v.77c0 .36-.22.58-.58.58h-.95c-.44 0-.64-.2-.64-.64v-.71H3.48c-.43 0-.85 0-1.23-.3Zm9.16 7.34v-.08c-.02-.96-.04-1.92-.07-2.87 0-.2-.12-.29-.34-.29H3.58c-.24 0-.33.09-.34.32-.02.91-.04 1.83-.07 2.74v.18h8.24ZM1.67 9.51c-.55.08-1 .51-1.09 1.03-.04.23-.03.47-.04.71v2.23c0 .19.09.31.25.32h.74c.04-1.44.09-2.86.13-4.29Zm11.41 4.3h.62c.29 0 .37-.08.37-.37v-2.55c0-.12-.01-.24-.04-.35-.11-.52-.61-.99-1.09-1.01.04 1.42.09 2.85.13 4.29ZM2.27 1.09c-.75 2.59-.99 5.23-.9 7.91.39-.07.31.01.33-.34.03-.86.05-1.72.08-2.59.03-.78.23-1.51.64-2.18.12-.2.18-.39.14-.63-.11-.72-.19-1.45-.28-2.18Zm10.08 0-.3 2.4c0 .06 0 .13.03.18.58.88.79 1.85.78 2.89 0 .75.04 1.51.06 2.26 0 .11.04.15.14.16.06 0 .12.02.18.03.09-2.69-.15-5.33-.9-7.91ZM3.06 3.03c.41-.41.85-.73 1.35-.96.12-.05.15-.11.13-.23-.05-.33-.09-.67-.13-1.01-.03-.2-.12-.29-.32-.29-.26 0-.53.01-.79 0-.42-.02-.55.07-.48.53.1.64.17 1.28.25 1.96Zm8.5 0c.09-.75.19-1.46.27-2.18.02-.18-.1-.3-.28-.3H10.5c-.16 0-.26.09-.28.24-.05.37-.1.74-.14 1.11 0 .05.03.12.07.14.52.24.97.56 1.4.99ZM7.84 7.32H6.78v1.6h1.06v-1.6Zm.27-5.7c.04-.38-.02-.72-.36-.94-.28-.19-.59-.19-.87 0-.35.22-.42.56-.37.95h1.6Z"/>
3
+ <path d="M10.61 3.7c-.08.09-.12.2-.2.22-.09.03-.21.01-.29-.03-.21-.11-.41-.26-.62-.37-.38-.19-.79-.27-1.21-.27H6.4c-.68 0-1.3.2-1.84.61-.01.01-.03.02-.04.03-.15.1-.31.09-.4-.04-.09-.12-.06-.28.07-.39.44-.35.94-.58 1.49-.68.24-.04.49-.06.74-.07.64 0 1.28-.01 1.93 0 .77.01 1.46.26 2.06.73.08.06.13.16.21.26ZM5.7 13c-.06.45-.12.55-.3.54-.18 0-.23-.11-.27-.54h-.48c-.2 0-.32-.11-.32-.27 0-.16.12-.27.32-.27h5.31c.2 0 .32.1.33.26 0 .17-.12.28-.33.28H5.7Z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" data-name="Calque 3" viewBox="0 0 12.39 15.86">
2
+ <path d="M.15 15.86c-.14-.1-.16-.23-.15-.39.12-1.1.23-2.21.33-3.31.09-1.06.77-1.85 1.81-2.09.54-.12 1.07-.25 1.61-.38.05-.01.11-.06.12-.1.07-.33.24-.58.53-.77-.41-.32-.72-.7-.93-1.16-.21-.46-.28-.94-.26-1.46-.56.04-1-.13-1.19-.69-.14-.4-.02-.75.39-1.14-.19-.04-.37-.08-.55-.12-.06-.01-.11-.02-.17-.03-.12-.02-.2-.09-.22-.21-.02-.12.04-.21.14-.27.32-.19.64-.39.97-.58.09-.05.13-.11.13-.22V1.59C2.71.41 3.86-.33 4.94.14c.23.1.46.21.69.32.37.17.74.17 1.11 0 .23-.11.46-.21.69-.32 1.06-.47 2.22.27 2.23 1.43v1.36c0 .11.04.16.13.22.32.18.63.38.94.56.11.07.19.15.17.29-.02.14-.12.19-.25.22-.22.04-.44.09-.69.14.41.34.57.75.35 1.24-.21.49-.63.63-1.15.59.04 1.08-.34 1.95-1.18 2.62.04.03.08.05.11.09.12.16.3.31.35.5.06.24.19.31.4.35.49.1.98.22 1.46.34 1.02.26 1.65 1.03 1.75 2.07.1 1.1.22 2.21.33 3.31.02.16 0 .29-.15.39H.15Zm11.71-.5v-.11c-.1-1.04-.21-2.08-.31-3.13-.04-.37-.17-.7-.41-.98-.29-.35-.68-.52-1.12-.61-.52-.11-1.04-.24-1.56-.37-.29.57-.89.79-1.31 1.22.05.04.09.06.14.09 1.04.76 1.58 1.78 1.63 3.07 0 .24-.09.33-.32.33H7.27c-.24 0-.32-.08-.33-.32-.02-.76-.23-1.45-.64-2.09-.03-.05-.06-.09-.1-.14-.02.03-.04.04-.04.05-.02.03-.05.07-.07.1-.41.64-.62 1.33-.63 2.09 0 .22-.09.31-.31.31H3.79c-.22 0-.31-.09-.31-.31.02-1.01.37-1.88 1.08-2.61.21-.21.45-.39.68-.6-.06-.05-.14-.1-.21-.16-.38-.33-.86-.54-1.09-1.03-.6.14-1.2.27-1.78.43-.73.2-1.19.69-1.28 1.44-.12.88-.19 1.78-.28 2.66l-.06.66H2v-2.18c0-.2.13-.33.29-.29.15.04.2.14.2.29v2.17h7.44v-2.23c.01-.14.11-.23.24-.24.13 0 .23.09.25.23v2.25h1.45ZM3.73 4.56s-.01.07-.01.1v1.89c0 .12.02.25.04.37.26 1.26 1.41 2.13 2.65 2 1.31-.14 2.26-1.18 2.26-2.49V4.57c-1.66.2-3.3.2-4.95 0Zm5.44-1.6V1.59C9.17.76 8.38.26 7.62.6l-.66.3c-.51.24-1.03.23-1.54 0-.25-.12-.49-.24-.75-.34-.66-.26-1.4.2-1.44.91-.03.49 0 .98 0 1.47 0 0 .01.02.02.02h5.93Zm-6.72.88c2.5.49 4.99.49 7.53 0-.16-.1-.29-.17-.41-.25-.14-.1-.29-.13-.46-.13-1.93 0-3.86.01-5.79 0-.36 0-.58.23-.86.38Zm3.33 8.19c-.09-.09-.16-.17-.25-.26-.94.62-1.46 1.47-1.56 2.59h.99c.06-.86.33-1.63.82-2.33Zm.83 0c.49.7.76 1.48.82 2.33h.99c-.11-1.12-.63-1.98-1.57-2.59-.08.09-.16.17-.24.26Zm-.03-1.28c.09.08.16.15.25.23.34-.27.7-.52 1.02-.8.31-.27.2-.81-.18-.96-.04-.02-.13 0-.15.03-.32.49-.63.99-.94 1.5Zm-.77 0c-.31-.5-.62-1-.94-1.5-.02-.03-.11-.04-.15-.03-.37.15-.49.67-.19.94.33.29.69.55 1.04.82.09-.08.16-.15.25-.23Zm.38-.31c.23-.37.45-.72.66-1.05H5.54c.21.33.42.68.66 1.05ZM3.21 4.71c-.28-.03-.53-.01-.68.26-.1.19-.08.37.05.54.16.21.39.21.63.18v-.97Zm5.97.98c.27.03.52.02.67-.24.11-.18.1-.37-.02-.54-.16-.23-.39-.23-.64-.2v.97ZM6.44 11.4c0-.13-.11-.24-.24-.25-.14 0-.25.12-.25.25s.12.24.25.24.24-.11.24-.25Z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-behance" viewBox="0 0 16 16">
2
+ <path d="M4.654 3c.461 0 .887.035 1.278.14.39.07.711.216.996.391s.497.426.641.747c.14.32.216.711.216 1.137 0 .496-.106.922-.356 1.242-.215.32-.566.606-.997.817.606.176 1.067.496 1.348.922s.461.957.461 1.563c0 .496-.105.922-.285 1.278a2.3 2.3 0 0 1-.782.887c-.32.215-.711.39-1.137.496a5.3 5.3 0 0 1-1.278.176L0 12.803V3zm-.285 3.978c.39 0 .71-.105.957-.285.246-.18.355-.497.355-.887 0-.216-.035-.426-.105-.567a1 1 0 0 0-.32-.355 1.8 1.8 0 0 0-.461-.176c-.176-.035-.356-.035-.567-.035H2.17v2.31c0-.005 2.2-.005 2.2-.005zm.105 4.193c.215 0 .426-.035.606-.07.176-.035.356-.106.496-.216s.25-.215.356-.39c.07-.176.14-.391.14-.641 0-.496-.14-.852-.426-1.102-.285-.215-.676-.32-1.137-.32H2.17v2.734h2.305zm6.858-.035q.428.427 1.278.426c.39 0 .746-.106 1.032-.286q.426-.32.53-.64h1.74c-.286.851-.712 1.457-1.278 1.848-.566.355-1.243.566-2.06.566a4.1 4.1 0 0 1-1.527-.285 2.8 2.8 0 0 1-1.137-.782 2.85 2.85 0 0 1-.712-1.172c-.175-.461-.25-.957-.25-1.528 0-.531.07-1.032.25-1.493.18-.46.426-.852.747-1.207.32-.32.711-.606 1.137-.782a4 4 0 0 1 1.493-.285c.606 0 1.137.105 1.598.355.46.25.817.532 1.102.958.285.39.496.851.641 1.348.07.496.105.996.07 1.563h-5.15c0 .58.21 1.11.496 1.396m2.24-3.732c-.25-.25-.642-.391-1.103-.391-.32 0-.566.07-.781.176s-.356.25-.496.39a.96.96 0 0 0-.25.497c-.036.175-.07.32-.07.46h3.196c-.07-.526-.25-.882-.497-1.132zm-3.127-3.728h3.978v.957h-3.978z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
2
+ <path d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z"/>
3
+ </svg>
@@ -1 +1 @@
1
- #contentview-preview .icon-preview:before{content:"\e833"}.pat-sortable>:hover{cursor:move}.pat-sortable{display:block;position:relative}.pat-sortable .sortable-section{border:1px solid #dee2e6!important;margin-bottom:1rem;margin-top:1rem;padding:.5rem}.hidden-section-title{opacity:.3}.section-title{vertical-align:middle}.content-section h2,.section-title,.show-hide-banner{display:inline-block}.show-hide-banner{background:#fff;border:1px solid #e6e6e6;padding:15px}.header-section{background:#f2f2f2;line-height:1.9;margin-bottom:1rem!important;margin-top:1rem!important;padding:0 1rem}table.table_schedule{cursor:default}ul.plonetoolbar-authentic-sources-menu,ul.plonetoolbar-smartweb-help-menu{padding-inline-start:0;width:100%}a.manage[class*=contenttype-imio-smartweb-]:before{display:none}a.manage[class*=contenttype-imio-smartweb-] svg{margin-right:5px}
1
+ #contentview-preview .icon-preview:before{content:"\e833"}.pat-sortable>:hover{cursor:move}.pat-sortable{display:block;position:relative}.pat-sortable .sortable-section{border:1px solid #dee2e6!important;margin-bottom:1rem;margin-top:1rem;padding:.5rem}.hidden-section-title{opacity:.3}.section-title{vertical-align:middle}.content-section h2,.section-title,.show-hide-banner{display:inline-block}.show-hide-banner{background:#fff;border:1px solid #e6e6e6;padding:15px}.header-section{background:#f2f2f2;line-height:1.9;margin-bottom:1rem!important;margin-top:1rem!important;padding:0 1rem}table.table_schedule{cursor:default}ul.plonetoolbar-authentic-sources-menu,ul.plonetoolbar-smartweb-help-menu{padding-inline-start:0;width:100%}a.manage[class*=contenttype-imio-smartweb-]:before{display:none}a.manage[class*=contenttype-imio-smartweb-] svg{margin-right:5px}.manage-section .form_section_size option{font-size:15px}.manage-section .form_section_size option:before{aspect-ratio:16/9;content:"";display:block;width:40px}.form_section_size .icon_col-sm-3:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h40v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M45 5v90H5V5h40m5-5H0v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M45 5h40v90H45z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M85 5v90H45V5h40m5-5H40v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M85 5h40v90H85z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M125 5v90H85V5h40m5-5H80v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M125 5h40v90h-40z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M165 5v90h-40V5h40m5-5h-50v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}.form_section_size .icon_col-sm-4:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h53.36v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M58.36 5v90H5V5h53.36m5-5H0v100h63.36V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M58.27 5h53.36v90H58.27z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M111.64 5v90H58.28V5h53.36m5-5H53.28v100h63.36V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M111.64 5H165v90h-53.36z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M165 5v90h-53.36V5H165m5-5h-63.36v100H170V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}.form_section_size .icon_col-sm-6:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h160v90H5z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M165 5v90H5V5h160m5-5H0v100h170V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M5 5h80v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M85 5v90H5V5h80m5-5H0v100h90V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}.form_section_size .icon_col-sm-8:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h53.36v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M58.36 5v90H5V5h53.36m5-5H0v100h63.36V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M58.27 5h53.36v90H58.27z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M111.64 5v90H58.28V5h53.36m5-5H53.28v100h63.36V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M111.64 5H165v90h-53.36z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M165 5v90h-53.36V5H165m5-5h-63.36v100H170V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}.form_section_size .icon_col-sm-9:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h40v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M45 5v90H5V5h40m5-5H0v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M45 5h40v90H45z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M85 5v90H45V5h40m5-5H40v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M85 5h40v90H85z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M125 5v90H85V5h40m5-5H80v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M125 5h40v90h-40z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M165 5v90h-40V5h40m5-5h-50v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}.form_section_size .icon_col-sm-12:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h160v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M165 5v90H5V5h160m5-5H0v100h170V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}
@@ -1 +1 @@
1
- *{background-position:50%;background-size:cover}body,html{max-width:100%}body{overflow-x:hidden}.table_schedule--active{display:block!important}.card-img-top{padding-top:56.25%}.template-folder_contents table .actionmenu a.action.set-default-page{display:none}#banner{background-size:cover;grid-column-end:-1;grid-column-start:1;height:200px}.hidden-banner{height:55px!important}.pat-structure .pagination>.active>a{z-index:0}.carousel-image{padding-bottom:50%}.swiper-slide .swiper-image{padding-bottom:60%}.swiper-wrapper{padding-bottom:50px}.template-taxonomy-edit-data .taxonomy-tree{border:0 solid #fff}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_item{border:none;font-size:1.25rem;padding:0 0 1rem;text-transform:uppercase}.template-taxonomy-edit-data .super-text{display:none}.template-taxonomy-edit-data .editable-divs{display:none!important}.template-taxonomy-edit-data div.info .super-text+.editable-divs:nth-child(2),.template-taxonomy-edit-data span .super-text+.editable-divs:nth-child(2){display:inline!important}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.info,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_item{border-bottom:2px solid #555}.template-taxonomy-edit-data .info,.template-taxonomy-edit-data .tree-view_item{border-bottom:1px dashed #d2d2d2}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.info input,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_item input{color:#303030;padding-top:.5rem!important;text-shadow:0 1px 0 #303030}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.info:before,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_item:before{content:"⤷";float:left;font-weight:700;margin-top:.3rem}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.info:before,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_item:before{content:"•";float:left;font-size:1.5rem;font-weight:700;margin-top:1px}.template-taxonomy-edit-data .taxonomy-tree .tree-view_arrow{display:none}.template-taxonomy-edit-data .taxonomy-tree .tree-view_children{margin-left:2rem}.smartweb_herobanner .section-slide,.smartweb_herobanner .section-slide .swiper-banner-image{height:100%}#portal-globalnav-collapse .nav_index_html,#subsite-navigation .nav_index_html{display:none}
1
+ @import url(https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css);*{background-position:50%;background-size:cover}body,html{max-width:100%}body{overflow-x:hidden}.table_schedule--active{display:block!important}.card-img-top{padding-top:56.25%}.template-folder_contents table .actionmenu a.action.set-default-page{display:none}#banner{background-size:cover;grid-column-end:-1;grid-column-start:1;height:200px}.hidden-banner{height:55px!important}.pat-structure .pagination>.active>a{z-index:0}.carousel-image{padding-bottom:50%}.swiper-slide .swiper-image{padding-bottom:60%}.swiper-wrapper{padding-bottom:50px}.template-taxonomy-edit-data .taxonomy-tree{border:0 solid #fff}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_item{border:none;font-size:1.25rem;padding:0 0 1rem;text-transform:uppercase}.template-taxonomy-edit-data .super-text{display:none}.template-taxonomy-edit-data .editable-divs{display:none!important}.template-taxonomy-edit-data div.info .super-text+.editable-divs:nth-child(2),.template-taxonomy-edit-data span .super-text+.editable-divs:nth-child(2){display:inline!important}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.info,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_item{border-bottom:2px solid #555}.template-taxonomy-edit-data .info,.template-taxonomy-edit-data .tree-view_item{border-bottom:1px dashed #d2d2d2}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.info input,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_item input{color:#303030;padding-top:.5rem!important;text-shadow:0 1px 0 #303030}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.info:before,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_item:before{content:"⤷";float:left;font-weight:700;margin-top:.3rem}.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.info:before,.template-taxonomy-edit-data .taxonomy-tree>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_children>.tree-view>.tree-view_item:before{content:"•";float:left;font-size:1.5rem;font-weight:700;margin-top:1px}.template-taxonomy-edit-data .taxonomy-tree .tree-view_arrow{display:none}.template-taxonomy-edit-data .taxonomy-tree .tree-view_children{margin-left:2rem}.smartweb_herobanner .section-slide,.smartweb_herobanner .section-slide .swiper-banner-image{height:100%}#portal-globalnav-collapse .nav_index_html,#subsite-navigation .nav_index_html{display:none}.block-menu-element,.list-menu-element{list-style:none}.contact_informations_social{display:flex;flex-wrap:wrap;gap:8px}.contact_informations_social .website{width:100%}
@@ -69,4 +69,46 @@ a.manage[class*="contenttype-imio-smartweb-"] {
69
69
  svg {
70
70
  margin-right: 5px;
71
71
  }
72
+ }
73
+
74
+ // layout select
75
+
76
+ .manage-section .form_section_size option {
77
+ font-size: 15px;
78
+ }
79
+ .manage-section .form_section_size option:before {
80
+ content:"";
81
+ display: block;
82
+ width: 40px;
83
+ aspect-ratio: 16/9;
84
+ }
85
+ .form_section_size .icon_col-sm-3:before {
86
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h40v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M45 5v90H5V5h40m5-5H0v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M45 5h40v90H45z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M85 5v90H45V5h40m5-5H40v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M85 5h40v90H85z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M125 5v90H85V5h40m5-5H80v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M125 5h40v90h-40z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M165 5v90h-40V5h40m5-5h-50v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");
87
+ background-size: contain;
88
+ background-repeat: no-repeat;
89
+ }
90
+ .form_section_size .icon_col-sm-4:before {
91
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h53.36v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M58.36 5v90H5V5h53.36m5-5H0v100h63.36V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M58.27 5h53.36v90H58.27z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M111.64 5v90H58.28V5h53.36m5-5H53.28v100h63.36V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M111.64 5H165v90h-53.36z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M165 5v90h-53.36V5H165m5-5h-63.36v100H170V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");
92
+ background-size: contain;
93
+ background-repeat: no-repeat;
94
+ }
95
+ .form_section_size .icon_col-sm-6:before {
96
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h160v90H5z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M165 5v90H5V5h160m5-5H0v100h170V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M5 5h80v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M85 5v90H5V5h80m5-5H0v100h90V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");
97
+ background-size: contain;
98
+ background-repeat: no-repeat;
99
+ }
100
+ .form_section_size .icon_col-sm-8:before {
101
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h53.36v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M58.36 5v90H5V5h53.36m5-5H0v100h63.36V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M58.27 5h53.36v90H58.27z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M111.64 5v90H58.28V5h53.36m5-5H53.28v100h63.36V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M111.64 5H165v90h-53.36z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M165 5v90h-53.36V5H165m5-5h-63.36v100H170V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");
102
+ background-size: contain;
103
+ background-repeat: no-repeat;
104
+ }
105
+ .form_section_size .icon_col-sm-9:before {
106
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h40v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M45 5v90H5V5h40m5-5H0v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M45 5h40v90H45z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M85 5v90H45V5h40m5-5H40v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M85 5h40v90H85z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M125 5v90H85V5h40m5-5H80v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3Cpath d='M125 5h40v90h-40z' style='fill:%23fff;stroke-width:0'/%3E%3Cpath d='M165 5v90h-40V5h40m5-5h-50v100h50V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");
107
+ background-size: contain;
108
+ background-repeat: no-repeat;
109
+ }
110
+ .form_section_size .icon_col-sm-12:before {
111
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 100'%3E%3Cpath d='M5 5h160v90H5z' style='fill:%2388c6ef;stroke-width:0'/%3E%3Cpath d='M165 5v90H5V5h160m5-5H0v100h170V0Z' style='fill:%230081f4;stroke-width:0'/%3E%3C/svg%3E");
112
+ background-size: contain;
113
+ background-repeat: no-repeat;
72
114
  }
@@ -1,18 +1,21 @@
1
- *{
1
+ @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
2
+
3
+ * {
2
4
  background-size: cover;
3
5
  background-position: center;
4
6
  }
5
- html, body {
7
+ html,
8
+ body {
6
9
  max-width: 100%;
7
10
  }
8
- body{
11
+ body {
9
12
  overflow-x: hidden;
10
13
  }
11
- .table_schedule--active{
12
- display: block!important;
14
+ .table_schedule--active {
15
+ display: block !important;
13
16
  }
14
17
 
15
- .card-img-top{
18
+ .card-img-top {
16
19
  padding-top: 56.25%;
17
20
  }
18
21
  // for edition
@@ -21,14 +24,14 @@ body{
21
24
  }
22
25
  //
23
26
  // banner
24
- #banner{
27
+ #banner {
25
28
  grid-column-start: 1;
26
29
  grid-column-end: -1;
27
- height:200px;
30
+ height: 200px;
28
31
  background-size: cover;
29
32
  }
30
- .hidden-banner{
31
- height: 55px!important;
33
+ .hidden-banner {
34
+ height: 55px !important;
32
35
  }
33
36
 
34
37
  .pat-structure .pagination > .active > a {
@@ -38,82 +41,132 @@ body{
38
41
  //// slidier
39
42
 
40
43
  .carousel-image {
41
- padding-bottom: 50%;
44
+ padding-bottom: 50%;
42
45
  }
43
46
 
44
- .swiper-slide .swiper-image{
45
- padding-bottom: 60%;
47
+ .swiper-slide .swiper-image {
48
+ padding-bottom: 60%;
46
49
  }
47
- .swiper-wrapper{
48
- padding-bottom: 50px;
50
+ .swiper-wrapper {
51
+ padding-bottom: 50px;
49
52
  }
50
53
 
51
54
  /* si identifiant numérique on cache l'identifiant */
52
- .template-taxonomy-edit-data{
55
+ .template-taxonomy-edit-data {
53
56
  .taxonomy-tree {
54
- border:0px solid white;
55
- & > .tree-view > .tree-view_item {
56
- font-size: 1.25rem;
57
- padding: 0rem 0 1rem;
58
- text-transform: uppercase;
59
- border: none;
57
+ border: 0px solid white;
58
+ & > .tree-view > .tree-view_item {
59
+ font-size: 1.25rem;
60
+ padding: 0rem 0 1rem;
61
+ text-transform: uppercase;
62
+ border: none;
60
63
  }
61
64
  }
62
- .super-text{
63
- display:none;
65
+ .super-text {
66
+ display: none;
64
67
  }
65
68
  .editable-divs {
66
- display: none !important;
69
+ display: none !important;
67
70
  }
68
- span .super-text +.editable-divs:nth-child(2),
69
- div.info .super-text +.editable-divs:nth-child(2) {
70
- display: inline !important;
71
+ span .super-text + .editable-divs:nth-child(2),
72
+ div.info .super-text + .editable-divs:nth-child(2) {
73
+ display: inline !important;
71
74
  }
72
75
  .taxonomy-tree > .tree-view > .tree-view_children > .info,
73
- .taxonomy-tree > .tree-view > .tree-view_children > .tree-view > .tree-view_item{
74
- border-bottom:2px solid #555;
76
+ .taxonomy-tree
77
+ > .tree-view
78
+ > .tree-view_children
79
+ > .tree-view
80
+ > .tree-view_item {
81
+ border-bottom: 2px solid #555;
75
82
  }
76
83
  .tree-view_item,
77
84
  .info {
78
- border-bottom: 1px dashed #D2D2D2;
85
+ border-bottom: 1px dashed #d2d2d2;
79
86
  }
80
87
  .taxonomy-tree > .tree-view > .tree-view_children > .info input,
81
- .taxonomy-tree > .tree-view > .tree-view_children > .tree-view > .tree-view_item input{
82
- text-shadow: 0px 1px 0px #303030;
83
- padding-top: 0.5rem !important;
84
- color: #303030;
88
+ .taxonomy-tree
89
+ > .tree-view
90
+ > .tree-view_children
91
+ > .tree-view
92
+ > .tree-view_item
93
+ input {
94
+ text-shadow: 0px 1px 0px #303030;
95
+ padding-top: 0.5rem !important;
96
+ color: #303030;
85
97
  }
86
98
 
87
- .taxonomy-tree > .tree-view > .tree-view_children > .tree-view > .tree-view_children > .info:before,
88
- .taxonomy-tree > .tree-view > .tree-view_children > .tree-view > .tree-view_children > .tree-view > .tree-view_item:before{
89
- content: "⤷";
90
- font-weight:bold;
91
- float: left;
92
- margin-top: 0.3rem;
99
+ .taxonomy-tree
100
+ > .tree-view
101
+ > .tree-view_children
102
+ > .tree-view
103
+ > .tree-view_children
104
+ > .info:before,
105
+ .taxonomy-tree
106
+ > .tree-view
107
+ > .tree-view_children
108
+ > .tree-view
109
+ > .tree-view_children
110
+ > .tree-view
111
+ > .tree-view_item:before {
112
+ content: "⤷";
113
+ font-weight: bold;
114
+ float: left;
115
+ margin-top: 0.3rem;
93
116
  }
94
- .taxonomy-tree > .tree-view > .tree-view_children > .tree-view > .tree-view_children > .tree-view > .tree-view_children > .info:before,
95
- .taxonomy-tree > .tree-view > .tree-view_children > .tree-view > .tree-view_children > .tree-view > .tree-view_children > .tree-view > .tree-view_item:before{
96
- font-weight:bold;
97
- float: left;
98
- margin-top: 1px;
99
- content: "•";
100
- font-size: 1.5rem;
117
+ .taxonomy-tree
118
+ > .tree-view
119
+ > .tree-view_children
120
+ > .tree-view
121
+ > .tree-view_children
122
+ > .tree-view
123
+ > .tree-view_children
124
+ > .info:before,
125
+ .taxonomy-tree
126
+ > .tree-view
127
+ > .tree-view_children
128
+ > .tree-view
129
+ > .tree-view_children
130
+ > .tree-view
131
+ > .tree-view_children
132
+ > .tree-view
133
+ > .tree-view_item:before {
134
+ font-weight: bold;
135
+ float: left;
136
+ margin-top: 1px;
137
+ content: "•";
138
+ font-size: 1.5rem;
101
139
  }
102
140
  .taxonomy-tree .tree-view_arrow {
103
- display: none;
141
+ display: none;
104
142
  }
105
143
  .taxonomy-tree .tree-view_children {
106
- margin-left: 2rem;
144
+ margin-left: 2rem;
107
145
  }
108
146
  }
109
- .smartweb_herobanner{
110
- .section-slide{
147
+ .smartweb_herobanner {
148
+ .section-slide {
111
149
  height: 100%;
112
- .swiper-banner-image{
150
+ .swiper-banner-image {
113
151
  height: 100%;
114
152
  }
115
153
  }
116
154
  }
117
- #portal-globalnav-collapse .nav_index_html, #subsite-navigation .nav_index_html {
118
- display: none;
119
- }
155
+ #portal-globalnav-collapse .nav_index_html,
156
+ #subsite-navigation .nav_index_html {
157
+ display: none;
158
+ }
159
+
160
+ .block-menu-element,
161
+ .list-menu-element {
162
+ list-style: none;
163
+ }
164
+
165
+ .contact_informations_social {
166
+ display: flex;
167
+ flex-wrap: wrap;
168
+ gap: 8px;
169
+ .website {
170
+ width: 100%;
171
+ }
172
+ }