mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Fix quick-add plus button stops to be able to click on logout button in Safari
This commit is contained in:
parent
2b98a9b64c
commit
db7b148c88
@ -172,7 +172,8 @@ egw_LAB.wait(function() {
|
|||||||
});
|
});
|
||||||
$j('select', this).css({
|
$j('select', this).css({
|
||||||
transition: "0.1s linear 0.2s",
|
transition: "0.1s linear 0.2s",
|
||||||
visibility: "visible"
|
visibility: "visible",
|
||||||
|
width:"120px"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
ev.stopPropagation();
|
ev.stopPropagation();
|
||||||
@ -189,7 +190,8 @@ egw_LAB.wait(function() {
|
|||||||
});
|
});
|
||||||
$j('select', this).css({
|
$j('select', this).css({
|
||||||
transition: "0s linear 0s",
|
transition: "0s linear 0s",
|
||||||
visibility: "hidden"
|
visibility: "hidden",
|
||||||
|
width:"10px"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
ev.stopPropagation();
|
ev.stopPropagation();
|
||||||
@ -204,7 +206,8 @@ egw_LAB.wait(function() {
|
|||||||
});
|
});
|
||||||
$j('select', this).css({
|
$j('select', this).css({
|
||||||
transition: "0s linear 0s",
|
transition: "0s linear 0s",
|
||||||
visibility: "hidden"
|
visibility: "hidden",
|
||||||
|
width:"10px"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user