FCLT#80863 Mobile selectors buiten beeld

svn path=/Website/trunk/; revision=64967
This commit is contained in:
Rik Hassing
2024-06-04 13:23:10 +00:00
parent 5dbcc847e9
commit 51d45aca6d
2 changed files with 7 additions and 1 deletions

View File

@@ -740,7 +740,7 @@ body.modal .fcltblock {
opacity: .35 !important;
}
.suggestautocompleteContainer {
margin-left: 7px;
padding-right:2px;
border-radius: 4px;
border-color: #ccc;
background-color: #FFFFFF; /* harde kleur.. */

View File

@@ -61,6 +61,12 @@ async function _Suggest(inParams) {
var timerID = null;
var lastHighlight = null;
var divWidth = 500;
/* when mobile divWidth is too large for the view */
if (typeof mobile !== "undefined") {
divWidth = 0;
}
var doAction = true;
var emptyKey = ("emptyKey" in params) ? params.emptyKey : -1;