From 823afc798f121a9459a93fdbe8df63334f99df1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Antoine=20Dupr=C3=A9?= Date: Wed, 15 Jan 2025 15:52:30 +0100 Subject: [PATCH 1/5] Ajustements affichage champs recherche navbar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pour largeurs réduites type tablette. --- atlas/static/css/atlas.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/atlas/static/css/atlas.css b/atlas/static/css/atlas.css index 0513c98d0..fd2205c25 100644 --- a/atlas/static/css/atlas.css +++ b/atlas/static/css/atlas.css @@ -716,3 +716,15 @@ footer { .spinner-border { animation-duration: 3s; } + +.navbar div.form-inline { + flex-flow: nowrap; +} + +.navbar form.form-inline { + display: block; +} + +.navbar input.form-control { + width: 100%; +} From db0eb1d2d6737c489400ca7a7a14d9aa372751db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Antoine=20Dupr=C3=A9?= Date: Wed, 15 Jan 2025 15:53:00 +0100 Subject: [PATCH 2/5] Remove unused CSS rule with invalid value --- atlas/static/css/atlas.css | 4 ---- 1 file changed, 4 deletions(-) diff --git a/atlas/static/css/atlas.css b/atlas/static/css/atlas.css index fd2205c25..34ddd91e7 100644 --- a/atlas/static/css/atlas.css +++ b/atlas/static/css/atlas.css @@ -98,10 +98,6 @@ main { 0 0 5px var(--main-color); } -.form-inline .form-control { - width: 150 px; -} - /* carto */ .leaflet-touch .leaflet-bar a:last-child { From 5a860d89c68c8c6e39e861248f03fcecef669ec3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Antoine=20Dupr=C3=A9?= Date: Wed, 15 Jan 2025 16:05:45 +0100 Subject: [PATCH 3/5] =?UTF-8?q?Fix:=20enl=C3=A8ve=20scroll=20horizontal=20?= =?UTF-8?q?sur=20mobile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- atlas/static/css/atlas.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/atlas/static/css/atlas.css b/atlas/static/css/atlas.css index 34ddd91e7..4d6d9e0c1 100644 --- a/atlas/static/css/atlas.css +++ b/atlas/static/css/atlas.css @@ -724,3 +724,11 @@ footer { .navbar input.form-control { width: 100%; } + +.partner-logos button.slick-prev { + left: 0; +} + +.partner-logos button.slick-next { + right: 0; +} From b4ca272273ed82d18717eb9b1cf90312d698224c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Antoine=20Dupr=C3=A9?= Date: Wed, 15 Jan 2025 17:11:12 +0100 Subject: [PATCH 4/5] Fix: corrige affichage titre sur mobile --- atlas/static/css/atlas.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/atlas/static/css/atlas.css b/atlas/static/css/atlas.css index 4d6d9e0c1..e232afb8f 100644 --- a/atlas/static/css/atlas.css +++ b/atlas/static/css/atlas.css @@ -151,6 +151,17 @@ a { border-bottom: 1px solid var(--main-color); z-index: 1999; height: 60px; + flex-wrap: nowrap; /* surcharge propriété bootstrap */ +} + +.navbar a.titreAppli { + white-space: normal; /* surcharge propriété bootstrap */ + /* Si titre trop long tronque le contenu au-delà de 2 lignes */ + overflow: hidden; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + } .logoStructure { @@ -713,6 +724,8 @@ footer { animation-duration: 3s; } +.navbar + .navbar div.form-inline { flex-flow: nowrap; } From 1457859d5492055ab0df532cb9e164266170705d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Antoine=20Dupr=C3=A9?= Date: Mon, 20 Jan 2025 15:15:12 +0100 Subject: [PATCH 5/5] Fix: corrige ouverture burger menu --- atlas/static/css/atlas.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/atlas/static/css/atlas.css b/atlas/static/css/atlas.css index e232afb8f..b4d344c12 100644 --- a/atlas/static/css/atlas.css +++ b/atlas/static/css/atlas.css @@ -164,6 +164,18 @@ a { } +#navbarSupportedContent { + position: absolute; + top: 100%; + right: 0; +} + +@media(min-width: 600px) { + #navbarSupportedContent { + position: static; + } +} + .logoStructure { height: 60px; max-height: 60px;