From 261caad317bee977807c166ecbca617230e08be8 Mon Sep 17 00:00:00 2001 From: Greg G Date: Mon, 28 Dec 2015 17:51:27 +0100 Subject: [PATCH] Fixed "edit this page" not clickable The link in .edit-page-link is moved using top and right properties, which makes it "under" the layer of the rest of the page (at least in the docs). Changing the z-index fixes it. --- website/source/assets/stylesheets/_footer.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/source/assets/stylesheets/_footer.scss b/website/source/assets/stylesheets/_footer.scss index a6d2741b52..45aaebe81d 100644 --- a/website/source/assets/stylesheets/_footer.scss +++ b/website/source/assets/stylesheets/_footer.scss @@ -29,7 +29,8 @@ body.page-sub{ .edit-page-link{ position: absolute; top: -50px; - right: 15px;; + right: 15px; + z-index: 10; a{ text-transform: uppercase;