diff --git a/README.md b/README.md index 1bb49f483..6cd8d4424 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,7 @@ is built with Electron unofficial desktop app for [ProtonMail](https://protonmai [![Build Status: Linux / MacOS](https://travis-ci.org/vladimiry/email-securely-app.svg?branch=master)](https://travis-ci.org/vladimiry/email-securely-app) [![Build status: Windows](https://ci.appveyor.com/api/projects/status/vex909uhwadrse27?svg=true)](https://ci.appveyor.com/project/vladimiry/email-securely-app) -You can see below a screenshots of the `compact` and `default` view modes: - -![view-compact](images/view-compact.png) - -![view-default](images/view-default.png) +![view-toggling](images/toggling.gif) ## Features - Cross platform, Linux/OSX/Windows packages [provided](https://github.com/vladimiry/email-securely-app/releases). @@ -19,9 +15,10 @@ You can see below a screenshots of the `compact` and `default` view modes: - Encrypted settings storage with switchable predefined key derivation and encryption presets. Argon2 is used as the default key derivation function. - Native notifications for individual accounts clicking on which focuses the app window and selects respective account in the accounts list. - System tray icon with a total number of unread messages shown on top of it. Checking unread emails count for Tutanota is currently not efficient enough, respective [issue](https://github.com/vladimiry/email-securely-app/issues/30) has been placed. +- Full, tabs and dropdown view modes. See details [here](https://github.com/vladimiry/email-securely-app/issues/36) and screenshots in [images](images) folder. - Start minimized to tray. - Close to tray. -- Compact view mode. + ## Build your own package diff --git a/images/toggling.gif b/images/toggling.gif new file mode 100644 index 000000000..6bacacccc Binary files /dev/null and b/images/toggling.gif differ diff --git a/images/view-compact.png b/images/view-compact.png deleted file mode 100644 index 5fb776e69..000000000 Binary files a/images/view-compact.png and /dev/null differ diff --git a/images/view-default.png b/images/view-default.png deleted file mode 100644 index c7229e16f..000000000 Binary files a/images/view-default.png and /dev/null differ diff --git a/images/view-dropdown.png b/images/view-dropdown.png new file mode 100644 index 000000000..e6bbc7fb2 Binary files /dev/null and b/images/view-dropdown.png differ diff --git a/images/view-full.png b/images/view-full.png new file mode 100644 index 000000000..f3edc5e42 Binary files /dev/null and b/images/view-full.png differ diff --git a/images/view-tabs.png b/images/view-tabs.png new file mode 100644 index 000000000..de6b47b66 Binary files /dev/null and b/images/view-tabs.png differ diff --git a/src/web/src/app/+accounts/account-title.component.scss b/src/web/src/app/+accounts/account-title.component.scss index e33f77115..ee2f7044b 100644 --- a/src/web/src/app/+accounts/account-title.component.scss +++ b/src/web/src/app/+accounts/account-title.component.scss @@ -3,8 +3,7 @@ :host { display: block; position: relative; - word-break: break-all; - padding-right: 17px; + padding-right: $list-group-item-padding-x * 1.5; .account-value-login { display: inline; diff --git a/src/web/src/app/+accounts/account.component.ts b/src/web/src/app/+accounts/account.component.ts index cd3a83cab..3d9b77db2 100644 --- a/src/web/src/app/+accounts/account.component.ts +++ b/src/web/src/app/+accounts/account.component.ts @@ -179,9 +179,9 @@ export class AccountComponent implements AfterViewInit, OnDestroy { async ngAfterViewInit() { await this.webViewSrcSetupPromise; - if ((process.env.NODE_ENV/* as BuildEnvironment*/) === "development") { - this.webView.addEventListener("dom-ready", () => this.webView.openDevTools()); - } + // if ((process.env.NODE_ENV/* as BuildEnvironment*/) === "development") { + // this.webView.addEventListener("dom-ready", () => this.webView.openDevTools()); + // } this.subscribePageLoadedEvents(); diff --git a/src/web/src/app/+accounts/accounts.component.html b/src/web/src/app/+accounts/accounts.component.html index 66e73d087..fca8ae03c 100644 --- a/src/web/src/app/+accounts/accounts.component.html +++ b/src/web/src/app/+accounts/accounts.component.html @@ -1,29 +1,5 @@