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
@@ -1,448 +1,566 @@
1
- html, body {
2
- max-width: 100%;
3
- overflow-x: initial!important;
1
+ html,
2
+ body {
3
+ max-width: 100%;
4
+ overflow-x: initial !important;
4
5
  }
5
- .row{
6
- padding: 0;
7
- margin: 0;
6
+
7
+ .row {
8
+ padding: 0;
9
+ margin: 0;
8
10
  }
11
+
9
12
  .breadcrumb {
10
- padding: 0;
13
+ padding: 0;
11
14
  }
15
+
12
16
  // FOR SCROLL
13
17
 
14
18
  body .outer-wrapper {
15
- & > .container{
16
- max-width: 100%!important;
17
- padding: 0!important;
18
-
19
- }
20
- }
21
- .r-annuaire-wrapper{
22
- @media screen and (min-width:1200px) {
23
- max-width: 100%;
24
- margin-right: inherit;
25
- padding-right: 0;
26
- padding-left: 0;
27
- }
28
- }
29
- #portal-column-content{
30
- padding: 0!important;
19
+ & > .container {
20
+ max-width: 100% !important;
21
+ padding: 0 !important;
22
+ }
31
23
  }
32
- .r-result-filter-container{
33
- @media screen and (min-width:1200px) {
34
- position: sticky;
35
- }
36
- background: #fff;
37
- z-index: 1;
24
+
25
+ .r-annuaire-wrapper {
26
+ @media screen and (min-width: 1200px) {
27
+ max-width: 100%;
28
+ margin-right: inherit;
29
+ padding-right: 0;
30
+ padding-left: 0;
31
+ }
38
32
  }
39
- .annuaire-result-filter{
40
- padding: 0 .75rem;
33
+
34
+ #portal-column-content {
35
+ padding: 0 !important;
41
36
  }
42
- #portal-column-content{
43
- h1{
44
- font-size: 0px;
45
- position: absolute;
46
- }
37
+
38
+ #portal-column-content {
39
+ h1 {
40
+ font-size: 0px;
41
+ position: absolute;
42
+ }
47
43
  }
48
- #viewlet-below-content-title,#viewlet-below-content-description{
49
- display: none;
44
+
45
+ #viewlet-below-content-title,
46
+ #viewlet-below-content-description {
47
+ display: none;
50
48
  }
49
+
51
50
  header#content-header {
52
- position: sticky;
53
- top: 0;
54
- background: #fff;
51
+ position: sticky;
52
+ top: 0;
53
+ background: #fff;
55
54
  }
56
55
 
57
-
58
56
  article > header {
59
- margin-bottom: 0px;
57
+ margin-bottom: 0px;
60
58
  }
61
59
 
62
- .r-annuaire-result{
63
- grid-area: 1 / 1 / 3 / 2;
64
- }
65
- .r-map.annuaire-map{
66
- position: sticky;
67
- grid-area: 1 / 2 / 2 / 3;
60
+ .r-annuaire-result {
61
+ grid-area: 1 / 1 / 3 / 2;
68
62
  }
69
63
 
64
+ .r-map.annuaire-map {
65
+ position: sticky;
66
+ grid-area: 1 / 2 / 2 / 3;
67
+ }
70
68
 
71
69
  /////////
72
- .r-results-numbers{
73
- width: 100%;
74
- margin-bottom: 0.5rem;
75
- span{
76
- font-weight: bold;
77
- }
78
- }
79
-
80
- .r-wrapper{
81
- display: block;
82
- @media screen and (min-width:1200px){
83
- display: grid;
84
- grid-template-columns: minmax(20px, 800px) minmax(20px, 100%);
85
- justify-content: space-between;
86
- width: calc(558px + 50vw);
87
- margin-left: auto;
88
- gap: 40px;
89
- }
90
- @media screen and (min-width:1400px){
91
- width: calc(648px + 50vw);
92
- }
93
-
94
- .r-result{
95
- margin-top: 2rem;
96
- padding-bottom: 2rem;
97
- &-filter{
98
- display: flex;
99
- gap: 20px;
100
- .r-filter{
101
- width: 100%;
102
- }
70
+
71
+ .r-wrapper {
72
+ display: block;
73
+
74
+ @media screen and (min-width: 1200px) {
75
+ display: grid;
76
+ grid-template-columns: minmax(20px, 800px) minmax(20px, 100%);
77
+ justify-content: space-between;
78
+ width: calc(558px + 50vw);
79
+ margin-left: auto;
80
+ gap: 40px;
103
81
  }
104
- &-list{
105
- padding:0;
106
- .r-list-item-group{
107
- position: relative;
108
- list-style: none;
109
- margin:1rem 0;
110
- .r-list-item-link{
111
- inset: 0px !important;
112
- position: absolute !important;
113
- }
114
- .r-list-item{
115
- display: flex;
116
- height: 100%;
117
- flex-direction: column;
118
- @media screen and (min-width:600px){
119
- flex-direction: row;
120
- }
121
- .r-item-img{
122
- width: 100%;
123
- padding-bottom: 56%;
124
- @media screen and (min-width:600px){
125
- width: 246px;
126
- height: 149px;
127
- padding-bottom: 0;
128
- }
129
- background-size: cover;
130
- }
131
- .r-item-text{
132
- margin-top: 0.6rem;
133
- @media screen and (min-width:600px){
134
- margin-left: 1.5rem;
135
- margin-top: 0;
136
- }
137
- flex-grow: 1;
138
- a{
139
- position: relative;
140
- }
141
- .r-item-title{
142
- font-weight: bold;
143
- display: block;
144
- }
145
- .r-item-categorie{
146
- display: block;
147
- }
148
- .r-item-all{
149
- display: flex;
150
- gap: 10px;
151
- .r-item-adresse{
152
- width: 36%;
153
- }
154
- .r-item-contact{
155
- }
82
+
83
+ @media screen and (min-width: 1400px) {
84
+ width: calc(648px + 50vw);
85
+ }
86
+
87
+ .r-result {
88
+ margin-top: 2rem;
89
+ padding-bottom: 2rem;
90
+
91
+ &-list {
92
+ padding: 0;
93
+
94
+ .r-list-item-group {
95
+ position: relative;
96
+ list-style: none;
97
+ margin: 1rem 0;
98
+
99
+ .r-list-item-link {
100
+ inset: 0px !important;
101
+ position: absolute !important;
102
+ }
103
+
104
+ .r-list-item {
105
+ display: flex;
106
+ height: 100%;
107
+ flex-direction: column;
108
+
109
+ @media screen and (min-width: 600px) {
110
+ flex-direction: row;
111
+ }
112
+
113
+ .r-item-img {
114
+ width: 100%;
115
+ padding-bottom: 56%;
116
+ background-size: cover;
117
+
118
+ &.r-item-img-placeholder {
119
+ background-color: #f2f2f2;
120
+ }
121
+
122
+ @media screen and (min-width: 600px) {
123
+ width: 246px;
124
+ height: 149px;
125
+ padding-bottom: 0;
126
+ }
127
+ }
128
+
129
+ .r-item-text {
130
+ margin-top: 0.6rem;
131
+ flex-grow: 1;
132
+
133
+ @media screen and (min-width: 600px) {
134
+ margin-left: 1.5rem;
135
+ margin-top: 0;
136
+ }
137
+
138
+ a {
139
+ position: relative;
140
+ }
141
+
142
+ .r-item-title {
143
+ font-weight: bold;
144
+ display: block;
145
+ }
146
+
147
+ .r-item-categorie {
148
+ display: block;
149
+ }
150
+
151
+ .r-item-all {
152
+ display: flex;
153
+ gap: 10px;
154
+
155
+ .r-item-adresse {
156
+ width: 36%;
157
+ }
158
+
159
+ .r-item-contact {
160
+ }
161
+ }
162
+ }
163
+ }
156
164
  }
157
- }
158
165
  }
159
- }
160
- }
161
- }
162
- .r-map{
163
- @media screen and (max-width:1200px){
164
- margin-top: 2rem!important;
165
166
  }
166
- .leaflet-container{
167
- @media screen and (max-width:1200px){
168
- height: 50vh!important;
169
- }
167
+
168
+ .r-map {
169
+ @media screen and (max-width: 1200px) {
170
+ margin-top: 2rem !important;
171
+ }
172
+
173
+ .leaflet-container {
174
+ @media screen and (max-width: 1200px) {
175
+ height: 50vh !important;
176
+ }
177
+ }
170
178
  }
171
- }
172
179
  }
173
180
 
181
+ // FOR BLA
182
+ .r-load-more {
183
+ margin-bottom: 2rem;
184
+ text-align: center;
174
185
 
186
+ button {
187
+ background: #000;
188
+ border: solid 1px transparent;
189
+ color: #fff;
190
+ padding: 0.4rem 1rem;
191
+ border-radius: 10px;
192
+ border-bottom-left-radius: 10px;
193
+ border-bottom-left-radius: 0px;
194
+ font-weight: bold;
195
+ font-size: 14px;
196
+ margin: 0 auto;
197
+ display: block;
175
198
 
176
- // FOR BLA
177
- .r-load-more{
178
- margin-bottom: 2rem;
179
- text-align: center;
180
- button{
181
- background: #000;
182
- border: solid 1px transparent;
183
- color: #fff;
184
- padding: 0.4rem 1rem;
185
- border-radius: 10px;
186
- border-bottom-left-radius: 10px;
187
- border-bottom-left-radius: 0px;
188
- font-weight: bold;
189
- font-size: 14px;
190
- margin: 0 auto;
191
- display: block;
192
- &:hover{
193
- background: rgba(0, 0, 0, 0.871);
199
+ &:hover {
200
+ background: rgba(0, 0, 0, 0.871);
201
+ }
194
202
  }
195
- }
196
203
  }
197
- .r-wrapper{
198
- .r-result{
199
- &-list{
200
- .r-list-item-group{
201
204
 
202
- .r-list-item-link{
205
+ .r-wrapper {
206
+ .r-result {
207
+ &-list {
208
+ .r-list-item-group {
209
+ .r-list-item-link {
210
+ }
203
211
 
204
- }
205
- .r-list-item{
206
- .r-item-img{
207
- border-radius: 15px 15px 15px 0px;
208
- }
209
- .r-item-text{
210
- font-size: 13px;
211
- &:after{
212
- content: "";
213
- width: 50px;
214
- height: 50px;
215
- background: yellow;
216
- border-radius: 50px;
217
- }
218
- .r-item-title{
219
- font-size: 18px;
220
- }
221
- .r-item-categorie{
222
- margin-bottom: 5px;
223
- text-transform: uppercase;
224
- color: #747474;
225
- font-weight: 400;
226
- }
227
- .r-item-all{
228
- color: #727272;
229
-
230
- a{
231
- color: #000;
232
- }
233
- .r-item-adresse{
234
- .itineraty{
235
- margin-top: 5px;
236
- &:before{
237
- content: "";
238
- width: 15px;
239
- height: 15px;
240
- display: inline-block;
241
- background-size: contain;
242
- background: url(../../assets/location-bla.svg) no-repeat;
243
- vertical-align: middle;
244
- }
212
+ .r-list-item {
213
+ .r-item-img {
214
+ border-radius: 15px 15px 15px 0px;
215
+ }
216
+
217
+ .r-item-text {
218
+ font-size: 13px;
219
+
220
+ &:after {
221
+ content: "";
222
+ width: 50px;
223
+ height: 50px;
224
+ background: yellow;
225
+ border-radius: 50px;
226
+ }
227
+
228
+ .r-item-title {
229
+ font-size: 18px;
230
+ }
231
+
232
+ .r-item-categorie {
233
+ margin-bottom: 5px;
234
+ text-transform: uppercase;
235
+ color: #747474;
236
+ font-weight: 400;
237
+ font-size: 13px;
238
+ }
239
+
240
+ .r-item-all {
241
+ color: #727272;
242
+
243
+ a {
244
+ color: #000;
245
+ }
246
+
247
+ .r-item-adresse {
248
+ .itineraty {
249
+ margin-top: 5px;
250
+
251
+ &:before {
252
+ content: "";
253
+ width: 15px;
254
+ height: 15px;
255
+ display: inline-block;
256
+ background-size: contain;
257
+ background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7.68 10.97'%3E%3Cg id='Calque_2' data-name='Calque 2'%3E%3Cg id='Calque_1-2' data-name='Calque 1'%3E%3Cpath id='map-marker' d='M3.84,5.21A1.37,1.37,0,1,1,5.21,3.84h0A1.37,1.37,0,0,1,3.84,5.21M3.84,0A3.84,3.84,0,0,0,0,3.84H0C0,6.72,3.84,11,3.84,11S7.68,6.72,7.68,3.84A3.84,3.84,0,0,0,3.84,0Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
258
+ no-repeat;
259
+ vertical-align: middle;
260
+ }
261
+ }
262
+ }
263
+
264
+ .r-item-contact {
265
+ width: 100%;
266
+ }
267
+ }
268
+ }
245
269
  }
246
- }
247
- .r-item-contact{
248
- width: 100%;
249
- }
250
270
  }
251
- }
252
271
  }
253
- }
254
272
  }
255
- }
256
273
  }
257
274
 
275
+ //////////////////////////////
276
+ .icon-baseline {
277
+ display: inline-flex;
278
+ align-self: center;
279
+ margin-right: 0.4rem;
258
280
 
281
+ svg {
282
+ top: 0.125em;
283
+ position: relative;
284
+ height: 1em;
285
+ width: 1em;
286
+ }
287
+ }
259
288
 
289
+ .dpinlb {
290
+ display: inline-block;
291
+ vertical-align: top;
292
+ }
260
293
 
294
+ .r-recurence-past {
295
+ opacity: 0.5;
296
+ }
261
297
 
262
-
263
- //////////////////////////////
264
- .icon-baseline{
265
- display: inline-flex;
266
- align-self: center;
267
- margin-right: 0.4rem;
268
- svg{
269
- top: .125em;
298
+ .recurence-schedul {
270
299
  position: relative;
271
- height: 1em;
272
- width: 1em;
273
- }
274
300
  }
275
- .dpinlb{
276
- display: inline-block;
277
- vertical-align: top;
301
+
302
+ .recurence-schedul-more {
303
+ display: block;
278
304
  }
305
+
306
+ .recurence-modal-display {
307
+ background-color: #fff;
308
+ position: absolute;
309
+ top: 0;
310
+ left: 0;
311
+ right: 0;
312
+ width: max-content;
313
+ padding: 10px 15px !important;
314
+ box-shadow:
315
+ 0.7px 0px 5.3px rgba(0, 0, 0, 0.024),
316
+ 2.5px 0px 17.9px rgba(0, 0, 0, 0.036),
317
+ 11px 0px 80px rgba(0, 0, 0, 0.06);
318
+ border-radius: 10px;
319
+ border: solid 1px #dadada;
320
+
321
+ span {
322
+ font-size: 14px;
323
+ color: #000;
324
+ border-bottom: solid 1px #969696;
325
+ margin-bottom: 0.4rem;
326
+ display: block;
327
+ }
328
+
329
+ ul {
330
+ margin: 0;
331
+ }
332
+
333
+ li {
334
+ list-style: none;
335
+ }
336
+ }
337
+
338
+ .recurence-modal-hide {
339
+ display: none;
340
+ }
341
+
279
342
  //// for bla ////
280
343
  // content
281
344
 
282
- .r-content-img{
283
- padding-bottom: 60%;
284
- }
285
- .r-content-title{
286
- margin: 1rem 0;
287
- }
288
- .news-info-title{
289
- font-weight: 700;
290
- margin-bottom: 1rem;
291
- display: block;
292
- color: #008FD2;
293
- }
294
- .r-content-news-info{
295
- display: flex;
296
- justify-content: space-between;
297
- margin-bottom: 2rem;
298
- flex-wrap: wrap;
299
- }
300
- .r-content-news-info-container{
301
- @media screen and (min-width:600px) {
302
- column-count: 2;
303
- }
304
- // flex-flow: column wrap;
305
- & > div{
306
- margin: 0.6rem 0;
307
- padding-right: 3rem;
308
- break-inside: avoid;
309
- svg{
310
- width: 16px;
311
- }
312
- }
313
- .r-content-news-info--date{
345
+ .r-content-img {
346
+ padding-bottom: 60%;
347
+ }
348
+
349
+ .r-content-header {
350
+ margin-bottom: 1rem;
351
+ }
352
+
353
+ .r-content-title {
354
+ margin: 0;
355
+ }
356
+
357
+ .r-content-recur-start-hours {
314
358
  display: flex;
315
- .r-content-date-start,.r-content-date-end,.r-content-date-start-hours{
316
- display: flex;
317
- flex-wrap: wrap;
359
+ }
360
+
361
+ .news-info-title {
362
+ font-weight: 700;
363
+ margin-bottom: 1rem;
364
+ display: block;
365
+ color: #008fd2;
366
+ }
367
+
368
+ .r-content-news-info {
369
+ display: flex;
370
+ justify-content: space-between;
371
+ margin-bottom: 2rem;
372
+ flex-wrap: wrap;
373
+ }
374
+
375
+ .r-content-news-info-container {
376
+ @media screen and (min-width: 600px) {
377
+ column-count: 2;
318
378
  }
319
- }
320
- .r-content-news-info-social{
321
- svg{
322
- width: 30px;
323
- height: 30px;
379
+
380
+ // flex-flow: column wrap;
381
+ & > div {
382
+ margin: 0.6rem 0;
383
+ padding-right: 3rem;
384
+ break-inside: avoid;
385
+
386
+ svg {
387
+ width: 16px;
388
+ }
324
389
  }
325
- ul{
326
- display: flex;
327
- align-items: center;
328
- margin: 0;
329
- li{
330
- list-style: none;
331
- a{
332
- &:hover{
333
- opacity: .7;
334
- }
390
+
391
+ .r-content-news-info--date {
392
+ display: flex;
393
+
394
+ .r-content-date-start,
395
+ .r-content-date-end,
396
+ .r-content-date-start-hours {
397
+ display: flex;
398
+ flex-wrap: wrap;
335
399
  }
336
- }
337
400
  }
338
- }
339
- }
340
- .r-content-news-info-action{
341
- @media screen and (max-width:1000px) {
342
- margin-top: 1.1rem;
343
- }
344
- a{
345
- text-decoration: none;
346
- }
347
- & > div{
348
- margin: .6rem 0;
349
- }
350
- .r-content-booking{
351
- margin-top: 0;
352
- a{
353
- background: #000;
354
- color: #fff;
355
- padding: 0.4rem 1rem;
356
- text-decoration: none;
357
- display: block;
358
- border-radius: 10px;
359
- border-bottom-left-radius: 0px;
360
- font-weight: 500;
361
- display: flex;
362
- align-items: center;
363
- gap: 10px;
364
- cursor: pointer;
365
- svg{
366
- width: 22px;
367
- fill: white;
368
- }
369
- &:hover{
370
- color: #fff;
371
- background: rgb(63, 63, 63);
372
401
 
373
- }
402
+ .r-content-news-info-social {
403
+ svg {
404
+ width: 30px;
405
+ height: 30px;
406
+ }
407
+
408
+ ul {
409
+ display: flex;
410
+ align-items: center;
411
+ margin: 0;
412
+
413
+ li {
414
+ list-style: none;
415
+
416
+ a {
417
+ &:hover {
418
+ opacity: 0.7;
419
+ }
420
+ }
421
+ }
422
+ }
374
423
  }
375
- }
424
+ }
425
+
426
+ .r-content-news-info-action {
427
+ @media screen and (max-width: 1000px) {
428
+ margin-top: 1.1rem;
429
+ }
430
+
431
+ a {
432
+ text-decoration: none;
433
+ }
434
+
435
+ & > div {
436
+ margin: 0.6rem 0;
437
+ }
438
+
439
+ .r-content-booking {
440
+ margin-top: 0;
441
+
442
+ a {
443
+ background: #000;
444
+ color: #fff;
445
+ padding: 0.4rem 1rem;
446
+ text-decoration: none;
447
+ display: block;
448
+ border-radius: 10px;
449
+ border-bottom-left-radius: 0px;
450
+ font-weight: 500;
451
+ display: flex;
452
+ align-items: center;
453
+ gap: 10px;
454
+ cursor: pointer;
455
+
456
+ svg {
457
+ width: 22px;
458
+ fill: white;
459
+ }
460
+
461
+ &:hover {
462
+ color: #fff;
463
+ background: rgb(63, 63, 63);
464
+ }
465
+ }
466
+ }
467
+ }
468
+
469
+ .r-content-topics {
470
+ display: flex;
471
+ gap: 15px;
472
+
473
+ span {
474
+ padding: 5px;
475
+ background: #f1f1f1;
476
+ border-radius: 5px;
477
+ margin-right: 5px;
478
+ }
479
+ }
480
+
481
+ .r-content-title-cat {
482
+ color: #8e8e8e;
483
+ margin-right: 5px;
484
+ font-size: 14px;
376
485
  }
377
486
 
378
487
  // // No Map
379
488
  // // Main
380
- .no-map {
489
+ .no-map {
381
490
  @media screen and (min-width: 600px) {
382
- .r-annuaire-wrapper {
383
- display: block;
384
- }
385
- .r-result-list {
386
- max-width: 1296px;
387
- display: grid;
388
- grid-template-columns: 1fr 1fr 1fr;
389
- gap: 20px;
390
- }
391
- .r-list-item-group {
392
- transition: all .2s ease;
393
- &:hover,&:focus {
394
- transform: translateY(-10px)!important;
395
- }
396
- .r-list-item {
397
- flex-direction: column!important;
398
- box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
399
- .r-item-img {
400
- border-radius: 0!important;
401
- width: 100%!important;
402
- height: 0!important;
403
- padding-bottom: 60%!important;
404
- margin-bottom: .5rem;
405
- }
406
- .r-item-text {
407
- display: grid;
408
- grid-template-columns: 1fr 1fr;
409
- margin-right: 1.5rem;
410
- &:after {
411
- display: none;
412
- }
413
- .r-item-categorie {
414
- grid-row-start: 1;
415
-
416
- }
417
- .r-item-title {
418
- font-weight: 500!important;
419
- grid-row-start: 2;
420
- grid-column-start: 1;
421
- grid-column-end: 3;
422
- margin-bottom: 2rem;
423
- margin-top: 1rem;
424
-
425
-
426
- }
427
- .r-item-date {
428
- grid-row-start: 1;
429
- grid-column-start: 2;
430
- justify-self: end;
431
- }
432
- }
433
- }
434
- }
491
+ .r-annuaire-wrapper {
492
+ display: block;
493
+ }
494
+
495
+ .r-result-list {
496
+ max-width: 1296px;
497
+ display: grid;
498
+ grid-template-columns: 1fr 1fr 1fr;
499
+ gap: 20px;
500
+ }
501
+
502
+ .r-list-item-group {
503
+ transition: all 0.2s ease;
504
+
505
+ &:hover,
506
+ &:focus {
507
+ transform: translateY(-10px) !important;
508
+ }
509
+
510
+ .r-list-item {
511
+ flex-direction: column !important;
512
+ box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
513
+
514
+ .r-item-img {
515
+ border-radius: 0 !important;
516
+ width: 100% !important;
517
+ height: 0 !important;
518
+ padding-bottom: 60% !important;
519
+ margin-bottom: 0.5rem;
520
+ }
521
+
522
+ .r-item-text {
523
+ display: grid;
524
+ grid-template-columns: 1fr 1fr;
525
+ margin-right: 1.5rem;
526
+
527
+ &:after {
528
+ display: none;
529
+ }
530
+
531
+ .r-item-categorie {
532
+ grid-row-start: 1;
533
+ }
534
+
535
+ .r-item-title {
536
+ font-weight: 500 !important;
537
+ grid-row-start: 2;
538
+ grid-column-start: 1;
539
+ grid-column-end: 3;
540
+ margin-bottom: 2rem;
541
+ margin-top: 1rem;
542
+ }
543
+
544
+ .r-item-date {
545
+ grid-row-start: 1;
546
+ grid-column-start: 2;
547
+ justify-self: end;
548
+ }
549
+ }
550
+ }
551
+ }
435
552
  }
436
- }
553
+ }
437
554
 
438
- // content
555
+ // content
439
556
 
440
- .no-map {
557
+ .no-map {
441
558
  .r-result.r-annuaire-result {
442
- max-width: 1296px;
559
+ max-width: 1296px;
443
560
  }
561
+
444
562
  .envent-content {
445
- max-width: 700px;
446
- margin: 0 auto;
563
+ max-width: 700px;
564
+ margin: 0 auto;
447
565
  }
448
- }
566
+ }