From 166573dafbecaacffef9ab0dcdff7d758af9e86c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 5 May 2020 16:59:20 -0400 Subject: [PATCH] brand color updates --- src/notification/bar.scss | 8 ++++---- src/services/autofill.service.ts | 7 +++++++ 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/notification/bar.scss b/src/notification/bar.scss index 6b5088ded3..1f673d5255 100644 --- a/src/notification/bar.scss +++ b/src/notification/bar.scss @@ -15,7 +15,7 @@ table { .outter-table > tbody > tr > td { padding: 0 0 0 10px; - border-bottom: 2px solid #3c8dbc; + border-bottom: 2px solid #175DDC; height: 40px; } @@ -56,7 +56,7 @@ img { } button:not(.link) { - background-color: #3c8dbc; + background-color: #175DDC; padding: 5px 15px; border-radius: 3px; color: #ffffff; @@ -65,13 +65,13 @@ button:not(.link) { button:not(.link):hover { cursor: pointer; - background-color: #3681ad; + background-color: #1751bd; } button.link { background: none; padding: 5px 15px; - color: #3c8dbc; + color: #175DDC; border: 0; } diff --git a/src/services/autofill.service.ts b/src/services/autofill.service.ts index e1ab8b614b..db35556033 100644 --- a/src/services/autofill.service.ts +++ b/src/services/autofill.service.ts @@ -43,6 +43,10 @@ const MonthAbbr = ['mm', 'mm', 'mm', 'mm', 'mm', 'mm']; const YearAbbrShort = ['yy', 'åå', 'jj', 'aa', 'гг', 'rr']; const YearAbbrLong = ['yyyy', 'åååå', 'jjjj', 'aa', 'гггг', 'rrrr']; +const OperationDelays = new Map([ + ['buzzsprout.com', 100], +]); + /* tslint:disable */ const IsoCountries: { [id: string]: string; } = { afghanistan: "AF", "aland islands": "AX", albania: "AL", algeria: "DZ", "american samoa": "AS", andorra: "AD", @@ -174,6 +178,9 @@ export default class AutofillService implements AutofillServiceInterface { return; } + // Add a small delay between operations + fillScript.properties.delay_between_operations = 20; + didAutofill = true; if (!options.skipLastUsed) { this.cipherService.updateLastUsedDate(options.cipher.id);