Compare commits
8 Commits
e50c8d95a2
...
avantLive
Author | SHA1 | Date | |
---|---|---|---|
3a68d5a2c8 | |||
601a784163 | |||
5cbaa3e7e3 | |||
7f0227bb06 | |||
b3acc28592 | |||
d91e0aa86e | |||
5a48eee4ef | |||
bfb94ef05b |
@@ -126,6 +126,9 @@
|
||||
"merge-extra": true
|
||||
},
|
||||
"patches": {
|
||||
"drupal/core": {
|
||||
"Image field generates only default language URL when linking to corresponding entity. https://www.drupal.org/node/2645922?no_cache=1733132298":"https://www.drupal.org/files/issues/2021-03-15/2645922-45.patch"
|
||||
},
|
||||
"drupal/social_media_links":{
|
||||
"Replace Twitter with X https://www.drupal.org/project/social_media_links/issues/3384469": "https://www.drupal.org/files/issues/2023-09-12/social_media_links-change_twitter_to_x-3384469-7.patch"
|
||||
},
|
||||
|
@@ -7,7 +7,7 @@
|
||||
text-align: center;
|
||||
position: relative;
|
||||
width: 155%;
|
||||
max-width: 800px;
|
||||
max-width: 600px;
|
||||
margin: 0 auto;
|
||||
height: auto;
|
||||
}
|
||||
@@ -63,7 +63,7 @@
|
||||
color: white;
|
||||
background: black;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.6rem;
|
||||
font-size: 0.5rem;
|
||||
padding-left: 0.5rem;
|
||||
text-decoration: none;
|
||||
margin-top: 0.7rem;
|
||||
@@ -83,9 +83,10 @@
|
||||
#popup-content {
|
||||
width: 300px;
|
||||
padding-right: 30px;
|
||||
font-size: 0.6rem !important;
|
||||
}
|
||||
#popup-content p {
|
||||
font-size: 0.7rem;
|
||||
font-size: 0.6rem !important;
|
||||
}
|
||||
@media (max-width: 810px) {
|
||||
#popup-content {
|
||||
|
@@ -11,7 +11,7 @@
|
||||
function q2d_mod_theme() {
|
||||
return array(
|
||||
'svg_mapsites' => array(
|
||||
'variables' => array('vpw' => null, 'vph' => null, 'sites' => []),
|
||||
'variables' => array('vpw' => null, 'vph' => null, 'sites' => [], 'label' => null),
|
||||
),
|
||||
);
|
||||
}
|
@@ -41,12 +41,14 @@ class SitesMap extends BlockBase {
|
||||
|
||||
|
||||
foreach($allSites as $index => $site){
|
||||
$langcode = \Drupal::languageManager()->getCurrentLanguage()->getId();
|
||||
|
||||
// $title = $site->get('title')->getString();
|
||||
$title = $site->hasTranslation($language) ? $site->getTranslation($language)->get('title')->getString() : $site->get('title')->getString();
|
||||
// $subtitle = $site->get('field_sous_titre')->getString();
|
||||
$subtitle = $site->hasTranslation($language) ? $site->getTranslation($language)->get('field_sous_titre')->getString() : $site->get('field_sous_titre')->getString();
|
||||
|
||||
$link_options = ['absolute' => TRUE, 'attributes' => ['class' => 'site-link']]; // Passer 'absolute' à TRUE
|
||||
$link_options = ['absolute' => TRUE, 'attributes' => ['class' => 'site-link'], 'language' => \Drupal::languageManager()->getLanguage($langcode)]; // Passer 'absolute' à TRUE
|
||||
$site_url = $site->toUrl('canonical', $link_options)->toString(); // URL absolue pour le data-url
|
||||
$site_link_object = Link::createFromRoute(t("got to site"), 'entity.node.canonical', ['node' => $site->id()], $link_options);
|
||||
$link = $site_link_object->toString()->getGeneratedLink();
|
||||
@@ -61,9 +63,9 @@ class SitesMap extends BlockBase {
|
||||
$x = round(($lon - $lonLeft) / ($lonRight - $lonLeft) * $vp_w);
|
||||
$y = round(($latTop - $lat) / ($latTop - $latBottom) * $vp_h);
|
||||
|
||||
$r = 15;
|
||||
$r = 12;
|
||||
$m = -$r/1.5+3;
|
||||
$l = $r/1.5 +4;
|
||||
$l = $r/1.5 +2.5;
|
||||
$sites_paths .= <<<SVGSITEPATH
|
||||
<g
|
||||
id="site-$index"
|
||||
@@ -99,6 +101,7 @@ class SitesMap extends BlockBase {
|
||||
],
|
||||
'svg_mapsites' => [
|
||||
'#theme' => 'svg_mapsites',
|
||||
'#label' => "Les 10 sites de projet",
|
||||
'#sites' => $sites_paths,
|
||||
'#vpw' => $vp_w,
|
||||
'#vph' => $vp_h,
|
||||
@@ -115,6 +118,7 @@ class SitesMap extends BlockBase {
|
||||
// '#markup' => $this->t('Hello, Sites Map!'),
|
||||
// ];
|
||||
}
|
||||
|
||||
public function getCacheMaxAge() {
|
||||
return 0;
|
||||
}
|
||||
|
@@ -1,4 +1,7 @@
|
||||
<div id="sites-map-container">
|
||||
|
||||
<h2>{{label}}</h2>
|
||||
|
||||
{# <svg {{ svg_attributes }}>
|
||||
<path {{ path_attributes }}></path>
|
||||
</svg> #}
|
||||
|
@@ -479,7 +479,7 @@ header .header_nav_container #block-quartiers-de-demain-entete ul li a {
|
||||
font-size: 0.6rem;
|
||||
}
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
@media (max-width: 810px) {
|
||||
header .header_nav_container #block-quartiers-de-demain-entete ul li a {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -3013,6 +3013,12 @@ body {
|
||||
grid-column: 2/span 9;
|
||||
}
|
||||
}
|
||||
@media (max-width: 510px) {
|
||||
.node-type-static .layout-content .content_container #block-quartiers-de-demain-titredepage {
|
||||
margin-top: 13rem;
|
||||
grid-column: 2/span 9;
|
||||
}
|
||||
}
|
||||
.node-type-static .layout-content .content_container #block-quartiers-de-demain-titredepage h1 {
|
||||
text-transform: none;
|
||||
color: black;
|
||||
@@ -3377,9 +3383,6 @@ body {
|
||||
border-bottom: none;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.node-type-site .layout--threecol-25-50-25 .layout__region--second .block-region-second .field_field_parties div {
|
||||
width: fit-content;
|
||||
}
|
||||
.node-type-site .layout--threecol-25-50-25 .layout__region--second .block-region-second div:has(.field_field_parties) {
|
||||
margin-top: 2rem;
|
||||
width: 100%;
|
||||
@@ -3409,6 +3412,12 @@ body {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
.node-type-site .layout--threecol-25-50-25 .layout__region--second .block-region-second .paragraph--type--site-video .field_field_titre_site {
|
||||
display: none;
|
||||
}
|
||||
.node-type-site .layout--threecol-25-50-25 .layout__region--second .block-region-second .paragraph--type--site-video .field_field_video {
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
.node-type-site .layout--threecol-25-50-25 .layout__region--second .block-region-second .paragraph--type--site-diapo .field_field_images .diaporama {
|
||||
display: flex !important;
|
||||
flex-direction: row !important;
|
||||
@@ -3562,6 +3571,10 @@ body {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.html.js.sr body.node-type-site.node-id-40 div.dialog-off-canvas-main-canvas div#page-node.layout-container main div.layout-content div.content_container div.layout.layout--threecol-25-50-25 div.layout__region.layout__region--third div.block-region-third div div.field_field_documents div div span {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
main {
|
||||
background-color: #f6f7f3;
|
||||
}
|
||||
|
@@ -244,7 +244,7 @@
|
||||
|
||||
}
|
||||
.field_field_parties{
|
||||
div{width: fit-content;}
|
||||
// div{width: fit-content;}
|
||||
// width: 70%;
|
||||
}
|
||||
div:has(.field_field_parties){
|
||||
@@ -279,6 +279,15 @@
|
||||
}
|
||||
|
||||
}
|
||||
.paragraph--type--site-video{
|
||||
.field_field_titre_site{
|
||||
// margin-bottom: 1rem;
|
||||
display: none;
|
||||
}
|
||||
.field_field_video{
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
}
|
||||
.paragraph--type--site-diapo{
|
||||
.field_field_images {
|
||||
.diaporama{
|
||||
@@ -438,6 +447,8 @@
|
||||
padding-bottom: 0.2rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -448,4 +459,7 @@
|
||||
.field_field_liens_site > div:nth-child(2) > div:nth-child(1){
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
.html.js.sr body.node-type-site.node-id-40 div.dialog-off-canvas-main-canvas div#page-node.layout-container main div.layout-content div.content_container div.layout.layout--threecol-25-50-25 div.layout__region.layout__region--third div.block-region-third div div.field_field_documents div div span{
|
||||
visibility: hidden;
|
||||
}
|
||||
|
@@ -15,6 +15,10 @@
|
||||
margin-top: 10rem;
|
||||
grid-column: 2 /span 9;
|
||||
}
|
||||
@media(max-width: 510px){
|
||||
margin-top: 13rem;
|
||||
grid-column: 2 /span 9;
|
||||
}
|
||||
|
||||
h1{
|
||||
text-transform: none;
|
||||
|
@@ -221,7 +221,7 @@ header{
|
||||
@media(max-width:1090px){
|
||||
font-size: 0.6rem;
|
||||
}
|
||||
@media(max-width: 500px){
|
||||
@media(max-width: 810px){
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
@@ -249,43 +249,6 @@ header{
|
||||
#block-quartiers-de-demain-selecteurdelangue{
|
||||
width: fit-content;
|
||||
margin: auto;
|
||||
// .language-switcher-language-url{
|
||||
// text-transform: uppercase;
|
||||
// color: white;
|
||||
|
||||
// ul{
|
||||
// display: flex;
|
||||
// flex-direction: row;
|
||||
// font-size:0.6rem;
|
||||
// padding: 0;
|
||||
|
||||
// @media(max-width: 660px){
|
||||
// margin-bottom: 0;
|
||||
// }
|
||||
// @media(max-width: 500px){
|
||||
// flex-direction: column;
|
||||
// // margin-bottom: 0;
|
||||
// margin: auto;
|
||||
// }
|
||||
// li a {
|
||||
// color: white;
|
||||
// font-family: 'gilroy-light';
|
||||
|
||||
// }
|
||||
// li:nth-child(1){
|
||||
// &::after{
|
||||
// content: " / ";
|
||||
// white-space: pre;
|
||||
// @media(max-width: 660px){
|
||||
// content:none ;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// .is-active{
|
||||
// font-family: 'gilroy-bold';
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user