diff --git a/package.json b/package.json index 55b773a..1376e3f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "authleu", - "version": "2.2.0", + "version": "2.2.1", "author": "Leonardo 'Leu' Pereira ", "homepage": "https://github.com/jlcvp/AuthLeu", "description": "Open source authenticator and 2fa code generator to use across multiple devices and platforms", diff --git a/src/app/home/components/account-detail/account-detail.component.html b/src/app/home/components/account-detail/account-detail.component.html index df5e856..540e82d 100644 --- a/src/app/home/components/account-detail/account-detail.component.html +++ b/src/app/home/components/account-detail/account-detail.component.html @@ -3,7 +3,7 @@ - + diff --git a/src/app/home/components/account-list/account-list.component.html b/src/app/home/components/account-list/account-list.component.html index dfc0f25..62d2745 100644 --- a/src/app/home/components/account-list/account-list.component.html +++ b/src/app/home/components/account-list/account-list.component.html @@ -19,7 +19,7 @@ - +

{{account.label}}

@@ -47,7 +47,7 @@

{{ 'ACCOUNT_LIST.ADD_ACCOUNT_LABEL' | translate }}

- +

{{ account.label }}

diff --git a/src/app/home/components/account-modal/account-modal.component.html b/src/app/home/components/account-modal/account-modal.component.html index ebb6663..d202a51 100644 --- a/src/app/home/components/account-modal/account-modal.component.html +++ b/src/app/home/components/account-modal/account-modal.component.html @@ -64,14 +64,14 @@ - +

{{ "ADD_ACCOUNT_MODAL.NO_LOGO" | translate }}

- +
diff --git a/src/app/home/components/account-modal/account-modal.component.scss b/src/app/home/components/account-modal/account-modal.component.scss index 46e0de5..8be9128 100644 --- a/src/app/home/components/account-modal/account-modal.component.scss +++ b/src/app/home/components/account-modal/account-modal.component.scss @@ -6,11 +6,6 @@ border: 3px solid var(--ion-color-danger); } -.logo-img { - background-color: whitesmoke; - box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2); -} - .logo-card { aspect-ratio: 1; display: flex; diff --git a/src/app/home/components/account-select-modal/account-select-modal.component.html b/src/app/home/components/account-select-modal/account-select-modal.component.html index d2bd3b5..ed66e60 100644 --- a/src/app/home/components/account-select-modal/account-select-modal.component.html +++ b/src/app/home/components/account-select-modal/account-select-modal.component.html @@ -21,8 +21,8 @@ {{ selectAllLabelKey | translate }}
- - + + {{item.account.label}} diff --git a/src/app/home/components/account-select-modal/account-select-modal.component.scss b/src/app/home/components/account-select-modal/account-select-modal.component.scss index 2e44321..a2046ca 100644 --- a/src/app/home/components/account-select-modal/account-select-modal.component.scss +++ b/src/app/home/components/account-select-modal/account-select-modal.component.scss @@ -2,7 +2,3 @@ object-fit: scale-down; padding: 2px; } - -.thumb { - background-color: white; -} \ No newline at end of file diff --git a/src/global.scss b/src/global.scss index ed401c2..7b17407 100644 --- a/src/global.scss +++ b/src/global.scss @@ -53,4 +53,11 @@ ion-popover.wider-popover { ion-popover.wider-popover .version-info { cursor: pointer; +} + +.img-outline { + filter: drop-shadow(1px 1px 0 var(--ion-color-outline, --color)) + drop-shadow(-1px 1px 0 var(--ion-color-outline, --color)) + drop-shadow(1px -1px 0 var(--ion-color-outline, --color)) + drop-shadow(-1px -1px 0 var(--ion-color-outline, --color)); } \ No newline at end of file diff --git a/src/theme/variables.scss b/src/theme/variables.scss index 4f3eaf1..2130c17 100644 --- a/src/theme/variables.scss +++ b/src/theme/variables.scss @@ -63,6 +63,13 @@ --ion-color-dark-contrast-rgb: 255, 255, 255; --ion-color-dark-shade: #1a0b22; --ion-color-dark-tint: #34243d; + + --ion-color-outline: #1d0c2700; + --ion-color-outline-rgb: 29, 12, 39; + --ion-color-outline-contrast: #ffffff00; + --ion-color-outline-contrast-rgb: 255, 255, 255; + --ion-color-outline-shade: #1a0b2200; + --ion-color-outline-tint: #34243d00; } :root.ion-palette-dark { @@ -128,4 +135,11 @@ --ion-color-dark-contrast-rgb: 0, 0, 0; --ion-color-dark-shade: #d8d2e0; --ion-color-dark-tint: #f7f1ff; + + --ion-color-outline: #f6efff; + --ion-color-outline-rgb: 246, 239, 255; + --ion-color-outline-contrast: #000000; + --ion-color-outline-contrast-rgb: 0, 0, 0; + --ion-color-outline-shade: #d8d2e0; + --ion-color-outline-tint: #f7f1ff; }