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:
parent
c8130bef61
commit
309f75b19d
5 changed files with 85 additions and 2 deletions
|
|
@ -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%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue