Skip to content

Commit

Permalink
Fix for "Don't put an underline on linked images"
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jab authored Nov 16, 2017
1 parent a5ec3ee commit 24217de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions alabaster/static/alabaster.css_t
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 24217de

Please sign in to comment.