From 0b0c78527125be34157d11e55bb1bac1b09c14b8 Mon Sep 17 00:00:00 2001 From: Lajos Meszaros Date: Mon, 9 Sep 2024 14:38:57 +0200 Subject: [PATCH] feat(css): change cursor for abbr elements --- docs/index.html | 6 +++--- style.css | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/index.html b/docs/index.html index 0af04c4..3b5488e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -44,9 +44,9 @@

Docs

diff --git a/style.css b/style.css index 565c487..8025003 100644 --- a/style.css +++ b/style.css @@ -196,6 +196,10 @@ em > a { font-size: 12px; } +abbr { + cursor: help; +} + .mods li[data-type]::before { content: attr(data-type); display: inline-block;