From 6564e825ec51926953975111c4cbad2c16dfe791 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rene=20Hamp=C3=B6lz?= Date: Sun, 19 Feb 2023 13:54:56 +0000 Subject: [PATCH] Fix: Wrong colored scrollbar corner --- .../snappymail/app/themes/Nextcloud25/styles.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/integrations/nextcloud/snappymail/app/themes/Nextcloud25/styles.css b/integrations/nextcloud/snappymail/app/themes/Nextcloud25/styles.css index b585b638d..074ebe687 100644 --- a/integrations/nextcloud/snappymail/app/themes/Nextcloud25/styles.css +++ b/integrations/nextcloud/snappymail/app/themes/Nextcloud25/styles.css @@ -1245,23 +1245,24 @@ html:not(.rl-mobile):not(.rl-no-preview-pane) #rl-app .messageView .top-toolbar * scrollbar */ -#rl-app ::-webkit-scrollbar { +::-webkit-scrollbar { width: 12px; height: 12px; } -#rl-app ::-webkit-scrollbar-thumb { +::-webkit-scrollbar-thumb { background: var(--color-scrollbar); border-radius: var(--border-radius-large); border: 2px solid transparent; background-clip: content-box; } -#rl-app ::-webkit-scrollbar-track-piece { +::-webkit-scrollbar-corner, +::-webkit-scrollbar-track-piece { background-color: transparent; } -#rl-app ::selection { +#rl-app::selection { background-color: var(--color-primary-element); color: var(--color-primary-text); }