From 960ff7e7d1daee6f9dcbce3ac0765749e56635a5 Mon Sep 17 00:00:00 2001 From: Frederik Vanrenterghem Date: Sun, 23 Mar 2025 17:37:42 +0800 Subject: [PATCH] Always underline links and bold them on mouse-over. --- source/assets/styles/org-htmlize.css | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/source/assets/styles/org-htmlize.css b/source/assets/styles/org-htmlize.css index 2b443b2..5e41f6c 100644 --- a/source/assets/styles/org-htmlize.css +++ b/source/assets/styles/org-htmlize.css @@ -1,4 +1,15 @@ - body { +a { + color: inherit; + background-color: inherit; + font: inherit; + text-decoration: underline; +} +a:hover { + font-weight: bold; + text-decoration: underline; +} + +body { color: #000000; background-color: #ffffff; } @@ -5809,13 +5820,3 @@ pre.src { background-color: #f2f2f2;} background-color: #ffddff; } - a { - color: inherit; - background-color: inherit; - font: inherit; - text-decoration: inherit; - } - a:hover { - text-decoration: underline; - } - -- 2.39.5