The (admin) change timestamp dialog was unusable on mobile devices as the button is hidden behind the date drop-down.
I mitigated this on my forum using the following CSS, which right-aligns buttons in the footer of modal dialogs
.modal-footer .btn-primary {
float: right;
}