This commit is contained in:
sparkyx 2021-08-24 18:08:43 +02:00
parent f1ea56101d
commit 7df4ad0c0f
2 changed files with 5 additions and 13 deletions

View file

@ -1585,18 +1585,9 @@ div#preference_div {
}
div#box_search_card {
position:absolute;
right:3.625vh;
top:33vh;
}
@media only screen and (max-width:994px)
{
div#box_search_card {
top:60vh;
}
}
@media only screen and (max-width:804px)
{
div#box_search_card {

View file

@ -43,9 +43,10 @@ function boxsearch_card(p_dossier)
remove_waiting_box();
if (req.responseText == 'NOCONX') {
reconnect();
return;
}
var y=posY+15;
var div_style="left:10%;width:80%;"+";top:"+y+"px";
var y=calcy(15);
var div_style="position:absolute;"+";top:"+y+"px";
add_div({id:'boxsearch_card_div',cssclass:'inner_box',html:loading(),style:div_style,drag:true});
$('boxsearch_card_div').innerHTML=req.responseText;
sorttable.makeSortable($('tb_fiche'));