فهرست منبع

Merge branch 'master' of gogs-figureslibres.io:bachir/d9-eql

bach 3 سال پیش
والد
کامیت
de0f557e2f

+ 21 - 5
web/themes/custom/eql/css-compiled/styles.css

@@ -298,6 +298,11 @@ a {
     .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-field-images img {
       width: 100vw;
       height: auto; }
+  .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-field-accroche {
+    grid-column: 3 /span 3;
+    grid-row: 1 / span 3;
+    font-size: 6rem;
+    font-weight: 800; }
   .block-views-blockhome-nodes-block-1 .node-type-static div:first-child .field--name-title {
     grid-column: 2;
     grid-row: 1; }
@@ -794,7 +799,8 @@ header {
     #header-top .region-header-top-left ul {
       list-style: none;
       display: flex;
-      flex-direction: row; }
+      flex-direction: row;
+      width: 100%; }
       #header-top .region-header-top-left ul :is(.sous-liste) {
         display: flex;
         flex-direction: column;
@@ -807,15 +813,25 @@ header {
         color: #009ee3; }
       #header-top .region-header-top-left ul li :hover {
         color: #009ee3; }
-    #header-top .region-header-top-left ul:is(.ul1 .sous-liste .ul2) {
+    #header-top .region-header-top-left ul div:first-child li div {
       display: none; }
-    #header-top .region-header-top-left :hover ul:is(.ul1 .sous-liste .ul2) {
+    #header-top .region-header-top-left ul div:nth-child(2) li div {
+      display: none; }
+    #header-top .region-header-top-left :hover ul div:first-child li div {
+      display: block;
+      background-color: white;
+      padding: 1rem; }
+      #header-top .region-header-top-left :hover ul div:first-child li div a {
+        color: black; }
+        #header-top .region-header-top-left :hover ul div:first-child li div a:hover {
+          color: #009ee3; }
+    #header-top .region-header-top-left :hover ul div:nth-child(2) li div {
       display: block;
       background-color: white;
       padding: 1rem; }
-      #header-top .region-header-top-left :hover ul:is(.ul1 .sous-liste .ul2) a {
+      #header-top .region-header-top-left :hover ul div:nth-child(2) li div a {
         color: black; }
-        #header-top .region-header-top-left :hover ul:is(.ul1 .sous-liste .ul2) a:hover {
+        #header-top .region-header-top-left :hover ul div:nth-child(2) li div a:hover {
           color: #009ee3; }
   #header-top #block-burger {
     z-index: 1;

BIN
web/themes/custom/eql/images/logos/01_ministere-de-la-culture.jpg


BIN
web/themes/custom/eql/images/logos/02_ministere-charge-du-logement.jpg


BIN
web/themes/custom/eql/images/logos/04_cite-de-l-architecture-et-du-patrimoine.jpg


BIN
web/themes/custom/eql/images/logos/05_puca.jpg


BIN
web/themes/custom/eql/images/logos/06_MIQCP.jpg


BIN
web/themes/custom/eql/images/logos/07_caue.jpg


BIN
web/themes/custom/eql/images/logos/08_reseau-des-mainsons-de-l-architecture.jpg


BIN
web/themes/custom/eql/images/logos/09_ordre-des-architectes.jpg


BIN
web/themes/custom/eql/images/logos/10_caisse-des-depots.jpg


BIN
web/themes/custom/eql/images/logos/11_l-union-sociale-pour-l-habitat.jpg


BIN
web/themes/custom/eql/images/logos/12_action-logement.jpg


BIN
web/themes/custom/eql/images/logos/13_ANCT.jpg


BIN
web/themes/custom/eql/images/logos/14_reseaun-national-des-amenageurs.jpg


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 2
web/themes/custom/eql/images/logos/logos_EQL.sla


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 0 - 2
web/themes/custom/eql/images/logos/logos_EQL_autosave_29_11_2021_14_17.sla


تفاوت فایلی نمایش داده نمی شود زیرا این فایل بسیار بزرگ است
+ 16 - 16
web/themes/custom/eql/images/pictos/picto_faq.svg


+ 4 - 1
web/themes/custom/eql/scss/pages/_home.scss

@@ -44,7 +44,10 @@
                 }
             }
             .field--name-field-accroche{
-                // display: none;
+                grid-column: 3 /span 3;
+                grid-row: 1 / span 3;
+                font-size: 6rem;
+                font-weight: 800;
             }
             .field--name-title{
                 grid-column: 2;

+ 24 - 5
web/themes/custom/eql/scss/partials/_header.scss

@@ -55,6 +55,7 @@ header{
             list-style: none;
             display: flex;
             flex-direction: row;
+            width: 100%;
             :is(.sous-liste){
                 display: flex;
                 flex-direction: column;
@@ -64,7 +65,6 @@ header{
                 padding-right: 2rem;
             }
             li{
-
                 a {
                     color: $black;
                 }
@@ -76,11 +76,17 @@ header{
                 }
             }
         }
-        ul:is(.ul1 .sous-liste .ul2){
+        ul div:first-child li div{
+            display: none;
+        }
+        ul div:nth-child(2) li div{
             display: none;
         }
-        :hover {
-            ul:is(.ul1 .sous-liste .ul2){
+        // ul:is(.ul1 .sous-liste .ul2){
+        //     display: none;
+        // }
+        :hover  ul div:first-child{
+            li div{
                 display: block;
                 background-color: $white;
                 padding: 1rem;
@@ -91,7 +97,20 @@ header{
                     }  
                 }
             }
-        }
+        }    
+            :hover ul div:nth-child(2){
+                li div{
+                    display: block;
+                    background-color: $white;
+                    padding: 1rem;
+                    a{
+                        color: $black;
+                        &:hover{
+                            color: $blue-light;
+                        }  
+                    }
+                }
+            }
     } 
 
     #block-burger {              // menu burger à droite

برخی فایل ها در این مقایسه diff نمایش داده نمی شوند زیرا تعداد فایل ها بسیار زیاد است