Skip to main content
Topic: Anchor links shouldn't have cursor:pointer (Read 2367 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Anchor links shouldn't have cursor:pointer

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.
~ SimplePortal Support Team ~

Re: Anchor links shouldn't have cursor:pointer

Reply #1

I'd suggest a "visibility: hidden".
Bugs creator.
Features destroyer.
Template killer.

Re: Anchor links shouldn't have cursor:pointer

Reply #2

That does the trick as well :)
~ SimplePortal Support Team ~

Re: Anchor links shouldn't have cursor:pointer

Reply #3

PR?
~ SimplePortal Support Team ~

Re: Anchor links shouldn't have cursor:pointer

Reply #4

Just has the bug report open ATM

Re: Anchor links shouldn't have cursor:pointer

Reply #5

Yeah, I want a PR with one of the solutions :)
~ SimplePortal Support Team ~

Re: Anchor links shouldn't have cursor:pointer

Reply #6

You can make it if you want one fast. :P
Bugs creator.
Features destroyer.
Template killer.

Re: Anchor links shouldn't have cursor:pointer

Reply #7

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.
~ SimplePortal Support Team ~

Re: Anchor links shouldn't have cursor:pointer

Reply #8

8936deeb99458d2be6ddcb75f7cced67426b7371
Bugs creator.
Features destroyer.
Template killer.

Re: Anchor links shouldn't have cursor:pointer

Reply #9

Erh... What? >_< Btw, looking into it, had some sleep after dinner.
~ SimplePortal Support Team ~