Make <a> tags always have pointer cursor.

At the moment, tag_objects have an option for a javascript void
link for the purpose of getting a pointer cursor without a real link.
Well I want to phase those javascript void links out so let's just
make a tags always pointy.
master
voussoir 2020-01-14 16:17:59 -08:00
parent 723c96c4f2
commit e7ac27962f
1 changed files with 6 additions and 1 deletions

View File

@ -39,7 +39,12 @@ body
}
* { color: var(--color_text_normal); }
a { color: var(--color_text_link); }
a
{
color: var(--color_text_link);
cursor: pointer;
}
input, select, textarea
{