From 5b60cd58edf5a1de154cff54f8fd6a08284eae63 Mon Sep 17 00:00:00 2001 From: Borys Levytskyi Date: Mon, 13 Apr 2015 11:58:21 +0300 Subject: [PATCH] Made hashlink to appear on hover --- src/css/styles.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/css/styles.css b/src/css/styles.css index 1188331..d3d6f58 100644 --- a/src/css/styles.css +++ b/src/css/styles.css @@ -9,8 +9,10 @@ code { font-size: 1.2em; font-weight: bold; } .result .input { margin-bottom: 10px; } .result .content { padding-left: 10px} .result .cur { color: lightgray; margin-right: 5px; } -.hashLink { text-decoration: none; margin-left: 5px; } + +.hashLink { text-decoration: none; margin-left: 5px; visibility: hidden } .hashLink:hover { text-decoration: underline; margin-left: 5px; } +.input:hover .hashLink { visibility: visible } .expression .label { font-weight: bold; padding-right: 5px; text-align: right; } .expression .bin { letter-spacing: 3px; }