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.
This commit is contained in:
Greg G
2015-12-28 17:51:27 +01:00
parent e6fd8cc418
commit 261caad317

View File

@@ -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;