From e57dd45fc2b2a13f177c355144a2fbc8b5e4743c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20Nyi=CC=81ri?= Date: Sat, 8 May 2021 12:52:18 +0200 Subject: [PATCH] Update: Hide scrollbars in detail --- dist/plex-meets-homeassistant.js | 10 ++++++++++ src/modules/style.ts | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/dist/plex-meets-homeassistant.js b/dist/plex-meets-homeassistant.js index ed34aae..0515ff0 100644 --- a/dist/plex-meets-homeassistant.js +++ b/dist/plex-meets-homeassistant.js @@ -19172,6 +19172,16 @@ style.textContent = css ` padding: 5px 0px; margin: 16px 0 10px 0; } + + .detail::-webkit-scrollbar { + display: none; + } + + .detail { + -ms-overflow-style: none; + scrollbar-width: none; + } + .detail { visibility: hidden; max-height: ${CSS_STYLE.expandedHeight + 16}px; diff --git a/src/modules/style.ts b/src/modules/style.ts index 44c37b6..9744694 100644 --- a/src/modules/style.ts +++ b/src/modules/style.ts @@ -79,6 +79,16 @@ style.textContent = css` padding: 5px 0px; margin: 16px 0 10px 0; } + + .detail::-webkit-scrollbar { + display: none; + } + + .detail { + -ms-overflow-style: none; + scrollbar-width: none; + } + .detail { visibility: hidden; max-height: ${CSS_STYLE.expandedHeight + 16}px;