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:
parent
723c96c4f2
commit
e7ac27962f
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue