angular-ui / bootstrap

PLEASE READ THE PROJECT STATUS BELOW. Native AngularJS (Angular) directives for Bootstrap. Smaller footprint (20kB gzipped), no 3rd party JS dependencies (jQuery, bootstrap JS) required. Please read the README.md file before submitting an issue!
http://angular-ui.github.io/bootstrap/
MIT License
14.3k stars 6.74k forks source link

Datapicker Safari and IE bug #6534

Open beebikun opened 7 years ago

beebikun commented 7 years ago

Safari Version 10.1 (12603.1.30.0.34) and Version 9.1 and IE-11, Edge-15 Win 10. Looks like this bug recreates in all lib versions (tried it on the demo page).

An odd behaviour after the first click in datepicker - extended area appears on one sec An odd behaviour

If datepicker is placed inside form element (plunker) the bug recreates in Chrome (58.0.3029.81) and FF (52) as well.

loxy commented 7 years ago

Maybe missing CSS classes for ngAnimate?

MrWook commented 7 years ago

Same with datepicker-popup with close-on-date-selection="false"

Any progress on this issue?

thSteve commented 6 years ago

I hotfixed this in my app by adding the style

.uib-day.ng-leave-prepare {
    display: none !important;
}

This fixed it in Safari where it was happening on the initial date selection. Not sure about the form chrome/firefox issue.

It would be nice to see a real fix!