While working with bootstrap 4 alpha, I noticed that the cursor on buttons has been removed but not on anchor tags. This can be seen as an example on the official Bootstrap site.
In my application, there is a form with two buttons - one for submitting the form and the other for redirecting to another page. The input button does not display the cursor, whereas the anchor tag does. I am aware that a custom CSS class can be created, but I wonder if this removal of cursors is intentional or a bug in the current alpha version.
<input type="submit" value="Sign In" class="btn btn-primary" />
<a role="button" href="@Url.Action("Register", "Account")" class="btn btn-secondary">Register Now</a>