From 8e667d3cc4551cec2438b4f0f4fdf7749d4a7ed3 Mon Sep 17 00:00:00 2001 From: Ildar Kamalov Date: Mon, 16 Aug 2021 13:34:44 +0300 Subject: [PATCH] Pull request: 3395 fix table scroll styles Closes #3395 Squashed commit of the following: commit 63fd4593977cd2ac6595344f681df499dc62abb1 Author: Ildar Kamalov Date: Mon Aug 16 11:58:26 2021 +0300 client: fix table scroll styles --- client/src/components/App/index.css | 2 +- client/src/components/Logs/Cells/IconTooltip.css | 2 +- client/src/components/Logs/Logs.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/App/index.css b/client/src/components/App/index.css index 990f13e4..fa8ca788 100644 --- a/client/src/components/App/index.css +++ b/client/src/components/App/index.css @@ -52,7 +52,7 @@ body { .modal-body--medium { max-height: 20rem; - overflow-y: scroll; + overflow-y: auto; } .modal-body__item:not(:first-child) { diff --git a/client/src/components/Logs/Cells/IconTooltip.css b/client/src/components/Logs/Cells/IconTooltip.css index 811c7623..ff3f4926 100644 --- a/client/src/components/Logs/Cells/IconTooltip.css +++ b/client/src/components/Logs/Cells/IconTooltip.css @@ -6,7 +6,7 @@ pointer-events: auto !important; background-color: var(--white); z-index: 102; - overflow-y: scroll; + overflow-y: auto; max-height: 100%; } diff --git a/client/src/components/Logs/Logs.css b/client/src/components/Logs/Logs.css index 76b95545..25015461 100644 --- a/client/src/components/Logs/Logs.css +++ b/client/src/components/Logs/Logs.css @@ -388,7 +388,7 @@ border-collapse: collapse; contain: layout; overflow-x: hidden; - overflow-y: scroll; + overflow-y: auto; will-change: scroll-position; }