Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why doesn't cursor change to pointer/hand on Tabs, Pagination, Dropdown Toggle etc in angular-ui-bootstrap?

I have to add the following code:

<style type="text/css">a {cursor:pointer;}</style>

to make cursor change to pointer/hand on links for Tabs, Pagination, Dropdown Toggle etc.. in angular-ui-bootstrap.

Why doesn't it change to pointer by default? Is this done intentionally? this is not the normal case in pure bootstrap.

Thanks a lot.

like image 478
user2309998 Avatar asked May 24 '13 06:05

user2309998


1 Answers

Does the <a> have a href attribute? The cursor won't change if it doesn't...

like image 112
GusRuss89 Avatar answered Oct 17 '22 15:10

GusRuss89