From d1aa92c983ea0e3dcb45e3936c586ce923cd3e97 Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Tue, 27 Nov 2012 13:14:05 -0500 Subject: [PATCH] Style inline code inside a link to look more like a normal link Fixes #448. (imported from commit 02f538a9d3fb43539640e77b2e194ac2de611c18) --- zephyr/static/styles/zephyr.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/zephyr/static/styles/zephyr.css b/zephyr/static/styles/zephyr.css index dc3b247901..6bf84497b2 100644 --- a/zephyr/static/styles/zephyr.css +++ b/zephyr/static/styles/zephyr.css @@ -15,6 +15,18 @@ pre code { white-space: pre; } +/* Style inline code inside a link + to look more like a normal link */ +a code { + color: #08C; + border-color: #08C; +} + +a:hover code { + color: #005580; + border-color: #005580; +} + .sidebar-nav { background-color: white; padding: 0.5em;