mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-24 12:06:15 +01:00
brand color updates
This commit is contained in:
parent
dd00151469
commit
166573dafb
@ -15,7 +15,7 @@ table {
|
|||||||
|
|
||||||
.outter-table > tbody > tr > td {
|
.outter-table > tbody > tr > td {
|
||||||
padding: 0 0 0 10px;
|
padding: 0 0 0 10px;
|
||||||
border-bottom: 2px solid #3c8dbc;
|
border-bottom: 2px solid #175DDC;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -56,7 +56,7 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
button:not(.link) {
|
button:not(.link) {
|
||||||
background-color: #3c8dbc;
|
background-color: #175DDC;
|
||||||
padding: 5px 15px;
|
padding: 5px 15px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
@ -65,13 +65,13 @@ button:not(.link) {
|
|||||||
|
|
||||||
button:not(.link):hover {
|
button:not(.link):hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background-color: #3681ad;
|
background-color: #1751bd;
|
||||||
}
|
}
|
||||||
|
|
||||||
button.link {
|
button.link {
|
||||||
background: none;
|
background: none;
|
||||||
padding: 5px 15px;
|
padding: 5px 15px;
|
||||||
color: #3c8dbc;
|
color: #175DDC;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,6 +43,10 @@ const MonthAbbr = ['mm', 'mm', 'mm', 'mm', 'mm', 'mm'];
|
|||||||
const YearAbbrShort = ['yy', 'åå', 'jj', 'aa', 'гг', 'rr'];
|
const YearAbbrShort = ['yy', 'åå', 'jj', 'aa', 'гг', 'rr'];
|
||||||
const YearAbbrLong = ['yyyy', 'åååå', 'jjjj', 'aa', 'гггг', 'rrrr'];
|
const YearAbbrLong = ['yyyy', 'åååå', 'jjjj', 'aa', 'гггг', 'rrrr'];
|
||||||
|
|
||||||
|
const OperationDelays = new Map<string, number>([
|
||||||
|
['buzzsprout.com', 100],
|
||||||
|
]);
|
||||||
|
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
const IsoCountries: { [id: string]: string; } = {
|
const IsoCountries: { [id: string]: string; } = {
|
||||||
afghanistan: "AF", "aland islands": "AX", albania: "AL", algeria: "DZ", "american samoa": "AS", andorra: "AD",
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add a small delay between operations
|
||||||
|
fillScript.properties.delay_between_operations = 20;
|
||||||
|
|
||||||
didAutofill = true;
|
didAutofill = true;
|
||||||
if (!options.skipLastUsed) {
|
if (!options.skipLastUsed) {
|
||||||
this.cipherService.updateLastUsedDate(options.cipher.id);
|
this.cipherService.updateLastUsedDate(options.cipher.id);
|
||||||
|
Loading…
Reference in New Issue
Block a user