Hide filter input field if no filter is set.

This commit is contained in:
Lars Jung 2012-02-22 13:18:46 +01:00
parent bfebcb3bcd
commit 556d206ab8
3 changed files with 9 additions and 1 deletions

View file

@ -84,11 +84,18 @@ body > nav {
border-left: 1px solid rgba(0,0,0,0.05);
input {
display: none;
border: none;
font-family: Ubuntu, sans-serif;
color: #555;
background-color: rgba(0,0,0,0);
width: 100px;
}
&.current {
input {
display: inline;
}
}
}
}