ElkArte Community

Elk Development => Bug Reports => Exterminated Bugs => Topic started by: Flavio93Zena on August 30, 2015, 05:33:45 am

Title: Anchor links shouldn't have cursor:pointer
Post by: Flavio93Zena on August 30, 2015, 05:33:45 am
Title says most of it. This
Code: [Select]
.post_anchor, .pm_anchor, #new
shouldn't have the same property as all other links have (cursor: pointer); instead it should also have cursor: default.

So basically...
Code: (find) [Select]
.post_anchor, .pm_anchor, #new {
  display: block;
  margin-top: -45px;
  padding-top: 45px;

Code: (replace with) [Select]
.post_anchor, .pm_anchor, #new {
  display: block;
  margin-top: -45px;
  padding-top: 45px;
  cursor: default !important;

The important is to be sure to override the links properties, as it doesn't work without it on local.
Title: Re: Anchor links shouldn't have cursor:pointer
Post by: emanuele on August 30, 2015, 08:00:23 am
I'd suggest a "visibility: hidden".
Title: Re: Anchor links shouldn't have cursor:pointer
Post by: Flavio93Zena on August 30, 2015, 09:48:40 am
That does the trick as well :)
Title: Re: Anchor links shouldn't have cursor:pointer
Post by: Flavio93Zena on September 02, 2015, 10:37:30 am
PR?
Title: Re: Anchor links shouldn't have cursor:pointer
Post by: Spuds on September 02, 2015, 12:15:15 pm
Just has the bug report open ATM
Title: Re: Anchor links shouldn't have cursor:pointer
Post by: Flavio93Zena on September 02, 2015, 12:53:30 pm
Yeah, I want a PR with one of the solutions :)
Title: Re: Anchor links shouldn't have cursor:pointer
Post by: emanuele on September 02, 2015, 01:15:23 pm
You can make it if you want one fast. :P
Title: Re: Anchor links shouldn't have cursor:pointer
Post by: Flavio93Zena on September 02, 2015, 01:26:09 pm
If I had a Github account and knew how to do it, maybe xD Will have a look later if I can setup an email that can be spammed.
Title: Re: Anchor links shouldn't have cursor:pointer
Post by: emanuele on September 02, 2015, 04:28:19 pm
8936deeb99458d2be6ddcb75f7cced67426b7371
Title: Re: Anchor links shouldn't have cursor:pointer
Post by: Flavio93Zena on September 02, 2015, 06:00:53 pm
Erh... What? >_< Btw, looking into it, had some sleep after dinner.