1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

Revert "Added auto fill animation. (#341)"

This reverts commit 3061f276c5.
This commit is contained in:
Kyle Spearrin
2017-11-02 16:36:12 -04:00
parent 3061f276c5
commit 7c3b612f3f
33 changed files with 16625 additions and 16725 deletions

View File

@@ -106,7 +106,7 @@
if (cipher.name && cipher.name.toLowerCase().indexOf(searchTerm) !== -1) {
return true;
}
if (cipher.subTitle && cipher.subTitle.toLowerCase().indexOf(searchTerm) !== -1) {
if (cipher.username && cipher.username.toLowerCase().indexOf(searchTerm) !== -1) {
return true;
}
if (cipher.login && cipher.login.uri && cipher.login.uri.toLowerCase().indexOf(searchTerm) !== -1) {

View File

@@ -21,7 +21,7 @@
</div>
<a href="#" stop-click ng-click="viewFolder(folder)" class="list-section-item"
ng-repeat="folder in vaultFolders | orderBy: folderSort track by $index">
<i class="fa fa-folder-open text-muted"></i> {{folder.name}}
{{folder.name}}
<i class="fa fa-chevron-right fa-lg"></i>
<span class="item-sub-label" ng-if="showFolderCounts">{{folder.itemCount}}</span>
</a>

View File

@@ -29,7 +29,7 @@
<i class="fa fa-share-alt text-muted" ng-if="cipher.organizationId" title="{{i18n.shared}}"></i>
<i class="fa fa-paperclip text-muted" ng-if="cipher.attachments" title="{{i18n.attachments}}"></i>
</span>
<span class="detail">{{cipher.subTitle}}</span>
<span class="detail">{{cipher.username}}</span>
</a>
</div>
</div>