From 24217debfc7734269b766bf5eda5ca7b43597627 Mon Sep 17 00:00:00 2001 From: jab Date: Thu, 16 Nov 2017 12:26:01 -0500 Subject: [PATCH] Fix for "Don't put an underline on linked images" The changes in bb5dbf and 585c08 to clear the bottom border are immediately getting overridden by the styles right below. Swap the order so these styles are applied as intended. --- alabaster/static/alabaster.css_t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/alabaster/static/alabaster.css_t b/alabaster/static/alabaster.css_t index 3964f98..731f6de 100644 --- a/alabaster/static/alabaster.css_t +++ b/alabaster/static/alabaster.css_t @@ -509,15 +509,15 @@ a.reference { border-bottom: 1px dotted {{ theme_link }}; } +a.reference:hover { + border-bottom: 1px solid {{ theme_link_hover }}; +} + /* Don't put an underline on images */ a.image-reference, a.image-reference:hover { border-bottom: none; } -a.reference:hover { - border-bottom: 1px solid {{ theme_link_hover }}; -} - a.footnote-reference { text-decoration: none; font-size: 0.7em;