Question

I am using bootstrap in ember app.

My nav menu does not show a hand with finger pointer on hovering over it instead it show cursor for text input prompt straight line

{{#linkTo "myrequests" tagName="li"}}
    <a {{bind-attr href="view.href"}}>My Request</a>
{{/linkTo}}
Était-ce utile?

La solution

You can explicitly set the cursor to pointer in your css--assuming the basic ember sample project, just add the following to your style.css:

a {
    cursor: pointer;
}

Stumbled across it here: http://marceldegraaf.net/2013/05/17/ember-js-and-bootstrap-navbar-mark-li-active.html

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top