cursor: auto; causes latest firefox on mac to show an "I" beam instead of a pointer when hovering over the links.

Would love to send a screenshot but my tools don't like to keep the cursor in the there.

The selector that is overriding the cursor:

navbar/css/navbar.module.css

#navbar-administration, 
#navbar-administration *:not(select) {
...
cursor: auto;
...
}

Also, while I was there I noticed -o-box-sizing: border-box; which isn't necessary because the non-prefixed versions have been supported since they implemented them. Just caught my eye...
http://caniuse.com/css3-boxsizing

CommentFileSizeAuthor
#3 2173041-3-i-beam-menu-hover.patch862 bytesjoelpittet
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Anonymous’s picture

Same issue here. This has happened since the 1.3 release.

japerry’s picture

Adding a me too. Working on a patch because its really irritating to me ;-)

joelpittet’s picture

Status: Active » Needs review
FileSize
862 bytes

Here's a patch. Maybe that aggressive reset should have comments for each item added to explain what it's fixing? Then it would be more like building an immunity to other stylesheets.

japerry’s picture

I can confirm that the patch fixes the problem, but probably Jesse or Al can take a look at the CSS question?

Grayside’s picture

Patch works for me, tested on Firefox Aurora and Chrome.

malberts’s picture

Works for me too on Firefox 26.

jessebeach’s picture

Status: Needs review » Reviewed & tested by the community

Looks good. The reset was meant to be aggressive, but it in this case it went too far. Thanks for the fix!

jessebeach’s picture

Status: Reviewed & tested by the community » Fixed

Committed to 7.x-1.x (3c94d2b).

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

pkiff’s picture