scss: move position of "loading" select2 line when there are results (#39684)

This commit is contained in:
Frédéric Péters 2020-02-09 17:32:14 +01:00
parent 96070f4d7d
commit 1c2d3785dd
1 changed files with 16 additions and 0 deletions

View File

@ -360,6 +360,22 @@ span.select2-container {
top: -6px;
}
}
.select2-results {
.loading-results {
position: absolute;
display: inline-block;
right: 0;
color: black;
@media screen and (max-width: $mobile-limit) {
display: none;
}
}
.loading-results:last-child {
position: static;
display: block;
color: inherit;
}
}
}
div.select2-container.select2-drop-above .select2-choice {