1
0

Task Search (#52)

Add hiding the search

Add actually searching for tasks

Fix jumping search button on page load

Add search button

Co-authored-by: kolaente <k@knt.li>
Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/52
This commit is contained in:
konrad
2020-01-31 10:05:53 +00:00
parent c8130bef61
commit 309f75b19d
5 changed files with 85 additions and 2 deletions

View File

@ -34,3 +34,28 @@
padding: 10px 1em;
height: 40px;
}
.search {
max-width: 300px;
margin-top: -78px;
float: right;
display: flex;
align-items: center;
justify-content: space-between;
.field {
transition: width $transition;
width: 100%;
&.hidden {
width: 0;
height: 0;
margin: 0;
overflow: hidden;
}
.button {
height: 100%;
}
}
}