Skip to content

Commit

Permalink
Merge branch 'better-mobile-display' into create_img_docker
Browse files Browse the repository at this point in the history
  • Loading branch information
marcantoinedupre committed Jan 22, 2025
2 parents 11d1034 + 1457859 commit eb6caf0
Showing 1 changed file with 45 additions and 4 deletions.
49 changes: 45 additions & 4 deletions atlas/static/css/atlas.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -155,6 +151,29 @@ 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;

}

#navbarSupportedContent {
position: absolute;
top: 100%;
right: 0;
}

@media(min-width: 600px) {
#navbarSupportedContent {
position: static;
}
}

.logoStructure {
Expand Down Expand Up @@ -716,3 +735,25 @@ footer {
.spinner-border {
animation-duration: 3s;
}

.navbar

.navbar div.form-inline {
flex-flow: nowrap;
}

.navbar form.form-inline {
display: block;
}

.navbar input.form-control {
width: 100%;
}

.partner-logos button.slick-prev {
left: 0;
}

.partner-logos button.slick-next {
right: 0;
}

0 comments on commit eb6caf0

Please sign in to comment.