From 6c4ecd0b0182d988219d4302731bc0170ac0b7d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kr=C3=A1sn=C3=BD?= <53856821+DanielKrasny@users.noreply.github.com> Date: Fri, 25 Oct 2019 14:30:03 +0200 Subject: [PATCH 1/4] Private mode: Big user picture blur --- css/browser.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/css/browser.css b/css/browser.css index 2a1d978be..d70ed06bb 100644 --- a/css/browser.css +++ b/css/browser.css @@ -406,6 +406,11 @@ html.private-mode ._5743._6y4y { filter: blur(5px); } +/* Right sidebar: big user picture */ +html.private-mode ._1jt6._710_ { + filter: blur(10px); +} + /* Message user picture */ html.private-mode ._1t_q ._4ld- img { filter: blur(3px); From 7aea3920d1dcf237d8d8739fe08c83bd2fc07c2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kr=C3=A1sn=C3=BD?= <53856821+DanielKrasny@users.noreply.github.com> Date: Fri, 25 Oct 2019 14:30:56 +0200 Subject: [PATCH 2/4] Dark mode: Contact name color I think it's better in white. --- css/dark-mode.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/dark-mode.css b/css/dark-mode.css index 9dd590236..f6ea671c4 100644 --- a/css/dark-mode.css +++ b/css/dark-mode.css @@ -346,7 +346,7 @@ html.dark-mode ._4_j5 { /* Right sidebar: contact name */ html.dark-mode ._3eur a { - color: var(--blue); + color: white; } /* Right sidebar: menus background */ From c31b21f3543062aa8e5131e8608b56a6653cf892 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kr=C3=A1sn=C3=BD?= <53856821+DanielKrasny@users.noreply.github.com> Date: Fri, 25 Oct 2019 14:43:13 +0200 Subject: [PATCH 3/4] Dark mode: Contact name color (fix) --- css/dark-mode.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/css/dark-mode.css b/css/dark-mode.css index f6ea671c4..dc84c82ea 100644 --- a/css/dark-mode.css +++ b/css/dark-mode.css @@ -14,6 +14,7 @@ --container-dark-color: #1e1e1e; --list-header-color: #222; --blue: #0084ff; + --white: #ffffff; } html.dark-mode body { @@ -346,7 +347,7 @@ html.dark-mode ._4_j5 { /* Right sidebar: contact name */ html.dark-mode ._3eur a { - color: white; + color: var(--white); } /* Right sidebar: menus background */ From 85dee80c10bec00e702c54c126861f5c952b69d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kr=C3=A1sn=C3=BD?= <53856821+DanielKrasny@users.noreply.github.com> Date: Fri, 25 Oct 2019 14:50:48 +0200 Subject: [PATCH 4/4] Dark mode: Contact name color (fix) Hope it's last time. Sorry for commit spam. --- css/dark-mode.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/dark-mode.css b/css/dark-mode.css index dc84c82ea..92ff0a806 100644 --- a/css/dark-mode.css +++ b/css/dark-mode.css @@ -14,7 +14,7 @@ --container-dark-color: #1e1e1e; --list-header-color: #222; --blue: #0084ff; - --white: #ffffff; + --white: #fff; } html.dark-mode body {