Reputation:
check image
in image,ok button is not showing well,it will fine after 1 or 2 second automatically after showing,the problem is only find in mozilla firefox
Upvotes: 2
Views: 409
Reputation: 2834
Sounds like a transform or transition related thing to me. Are there any transform css properties on the modal or the button? Then try to overrule them and see if that helps:
.modal.fade .modal-dialog {
transition: none 0s ease 0s ;
}
Upvotes: 1