Skip to content

Commit

Permalink
Fixes #55 – Footer links not clickable
Browse files Browse the repository at this point in the history
  • Loading branch information
claudioc committed Oct 27, 2014
1 parent c0330ea commit c1d00a0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion public/css/style.css
Expand Up @@ -30,6 +30,7 @@ p.user {
#main {
background-color: white;
box-shadow: 0 0 5px silver;
z-index: 2;
}

#content {
Expand Down Expand Up @@ -500,7 +501,7 @@ input#pageTitle {
padding: 20px;
overflow: auto;
box-shadow: 0 0 5px silver;
z-index: -10;
z-index: 1;
}

a.absent {
Expand Down

2 comments on commit c1d00a0

@almereyda
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good one! I just tried to send a PR and found out it had been resolved already due to the merge conflict :)

@claudioc
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

f*cking z-indexes :)

At first I didn't notice that this fix would make the "tools" widget disappear. Fixed in 1.2.5 :)

Please sign in to comment.