From 57ad99ef1672927b66cb1a0e7add35125a1efc6f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 14 Sep 2022 15:04:28 +0200 Subject: [PATCH] LibWeb: Don't show pointer (hand) cursor over non-linked a elements This is already handled by the :link and :visited style. --- Userland/Libraries/LibWeb/CSS/Default.css | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index 1cbea820d6..a08e18690a 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -7,10 +7,6 @@ body { margin: 8px; } -a { - cursor: pointer; -} - center { text-align: -libweb-center; }