1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 11:43:46 +00:00

added vault searching

This commit is contained in:
Kyle Spearrin
2018-04-09 10:50:28 -04:00
parent 0728adf50e
commit 9d737f76d1
7 changed files with 99 additions and 13 deletions

View File

@@ -145,6 +145,41 @@ header {
.title {
font-weight: bold;
}
.search {
padding: 7px;
width: 100%;
text-align: left;
position: relative;
display: flex;
.fa {
position: absolute;
top: 15px;
left: 15px;
color: lighten($brand-primary, 30%);
}
input {
width: 100%;
margin: 0;
background: darken($brand-primary, 8%);
border: none;
color: white;
padding: 5px 10px 5px 30px;
border-radius: $border-radius;
&:focus {
border-radius: $border-radius;
outline: none;
background: darken($brand-primary, 10%);
}
&::-webkit-input-placeholder {
color: lighten($brand-primary, 35%);
}
}
}
}
.content {
@@ -232,3 +267,17 @@ content {
bottom: 55px;
}
}
.no-items {
display: flex;
height: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
.fa {
margin-bottom: 10px;
color: $list-icon-color;
}
}