fix(aio): make the footer links clickable on all browsers

The footer background (implemented via `footer:after`) had a higher `z-index`
than other footer elements and was obscuring the footer links on certain
browsers (Firefox, Edge, IE), which made them unclickable.
This commit lowers the index of `footer:after`, so that links are clickable on
these browsers.

Fixes #17460
This commit is contained in:
Georgios Kalpakas 2017-06-13 13:38:05 +03:00 committed by Alex Rickabaugh
parent f840afb983
commit b4cd20cbbc
1 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ footer {
footer::after { footer::after {
content: ""; content: "";
position: absolute; position: absolute;
z-index: 10; z-index: -1;
top: 0; top: 0;
bottom: 0; bottom: 0;
left: 0; left: 0;