From e7ac27962f6cfa801ca1f13e514e3f7fc9e6bc44 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Tue, 14 Jan 2020 16:17:59 -0800 Subject: [PATCH] Make 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. --- frontends/etiquette_flask/static/css/common.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontends/etiquette_flask/static/css/common.css b/frontends/etiquette_flask/static/css/common.css index f42a5de..6a37657 100644 --- a/frontends/etiquette_flask/static/css/common.css +++ b/frontends/etiquette_flask/static/css/common.css @@ -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 {