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.
This commit is contained in:
voussoir 2020-01-14 16:17:59 -08:00
parent 723c96c4f2
commit e7ac27962f

View file

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