mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 15:23:33 +00:00
Revert "Added auto fill animation. (#341)"
This reverts commit 3061f276c5.
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,16 +0,0 @@
|
||||
@-webkit-keyframes onepasswordfill {
|
||||
0% { -webkit-transform: scale(1.0,1.0); }
|
||||
50% { -webkit-transform: scale(1.2,1.2); }
|
||||
100% { -webkit-transform: scale(1.0,1.0); }
|
||||
}
|
||||
|
||||
@-moz-keyframes onepasswordfill {
|
||||
0% { transform: scale(1.0,1.0); }
|
||||
50% { transform: scale(1.2,1.2); }
|
||||
100% { transform: scale(1.0,1.0); }
|
||||
}
|
||||
|
||||
.com-agilebits-onepassword-extension-animated-fill {
|
||||
animation: onepasswordfill 200ms ease-in-out 0ms 1;
|
||||
-webkit-animation: onepasswordfill 200ms ease-in-out 0ms 1;
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
"manifest_version": 2,
|
||||
"name": "__MSG_extName__",
|
||||
"short_name": "__MSG_appName__",
|
||||
"version": "1.20.1",
|
||||
"version": "1.19.1",
|
||||
"description": "__MSG_extDesc__",
|
||||
"default_locale": "en",
|
||||
"author": "8bit Solutions LLC",
|
||||
@@ -50,12 +50,6 @@
|
||||
"file:///*"
|
||||
],
|
||||
"run_at": "document_start"
|
||||
},
|
||||
{
|
||||
"all_frames": true,
|
||||
"css": [ "content/autofill.css" ],
|
||||
"matches": [ "http://*/*", "https://*/*", "file:///*" ],
|
||||
"run_at": "document_end"
|
||||
}
|
||||
],
|
||||
"background": {
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user