includes: style search control of map widgets (#73852) #143

Merged
csechet merged 1 commits from wip/73852-styler-le-controle-de-recherche- into main 2023-02-16 20:42:08 +01:00
2 changed files with 39 additions and 0 deletions

View File

@ -717,3 +717,35 @@ div.select2-search {
font-style: italic;
}
}
.leaflet-search {
width: 100%;
display: flex;
justify-content: right;
align-items: start;
&--control {
width: 0;
display: flex;
flex-direction: column;
transition: all 0.2s;
}
&.open &--control {
width: 100%
}
&--result-list {
background-image: none;
padding-right: 0.7em;
}
&--result-item {
overflow: hidden;
text-overflow: ellipsis;
cursor: pointer;
&:hover {
text-decoration: underline;
}
}
}

View File

@ -759,6 +759,13 @@ div.leaflet-bottom, div.leaflet-top {
z-index: 800;
}
.leaflet-top.leaflet-right {
width: 40%;
@media($max-mobile-viewport) {
width: calc(100% - 65px);
}
}
.login-actions {
ul, li {
margin: 0;