From 3e26611e9f1ea1474e97ef00c4b07a410cdc448f Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Fri, 24 Jul 2020 19:06:32 +0300 Subject: [PATCH] Fix layout trashing in Chrome https://bugs.chromium.org/p/chromium/issues/detail?id=1063575#c21 --- client/css/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/client/css/style.css b/client/css/style.css index 17f7a7b7..00cc4600 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -2026,6 +2026,14 @@ part/quit messages where we don't load previews (adds a blank line otherwise) */ padding-bottom: 7px; } +.window#chat-container { + /* + Chat has its own scrollbar, so remove the one on parent + This caused a performance issue in Chrome + */ + overflow: hidden; +} + #version-checker { display: flex; align-items: center;