From cc4494d8b3eddb4b8d7365bdf10c57c4c694687d Mon Sep 17 00:00:00 2001 From: Zakarya Date: Sat, 3 May 2025 08:36:49 -0700 Subject: [PATCH] Initial commit --- README.md | 9 +++++++++ youtube chat.css | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 README.md create mode 100644 youtube chat.css diff --git a/README.md b/README.md new file mode 100644 index 0000000..0736ec3 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# Zakarya's Gists + +*migrated from GitHub* + +This is a collection of small code snippets that I find useful. + +To check the commit history of a single file (like you would on GitHub) click on the file and then click "history" on the right. + +[My Gists on GitHub](https://gist.github.com/CZakarya) diff --git a/youtube chat.css b/youtube chat.css new file mode 100644 index 0000000..c908f6c --- /dev/null +++ b/youtube chat.css @@ -0,0 +1,37 @@ +body {background: transparent;} + + +/* Select the style that you need */ +/*yt-live-chat-renderer {background: black;}*/ +/*yt-live-chat-renderer {background: rgb(0, 0, 0, 0.55); border-radius: 16px; padding-top: 16px;}*/ +/*yt-live-chat-renderer {background: transparent;}*/ + + +/*img.yt-img-shadow,*/ /* Profile photos */ +/*yt-live-chat-paid-message-renderer,*/ /* Donation messages */ +yt-icon-button#show-more, /* Scroll to bottom button */ + +yt-live-chat-viewer-engagement-message-renderer, /* Subscriber only notification */ +yt-live-chat-header-renderer, /* Header */ +yt-live-chat-banner-manager, /* Pinned message */ +yt-live-chat-ticker-renderer, /* Donation list (Only shows sometimes) */ +yt-reaction-control-panel-view-model, /* Reaction button */ +yt-live-chat-restricted-participation-renderer, /* Subscriber only chat */ +#panel-pages, /* Send message box */ +div#separator /* Line at the top */ +{display: none !important;} + + + +/* W3Schools hide scrollbar */ + +/* Hide scrollbar for Chrome, Safari and Opera */ +div#item-scroller.yt-live-chat-item-list-renderer::-webkit-scrollbar { + display: none; +} + +/* Hide scrollbar for IE, Edge and Firefox */ +div#item-scroller.yt-live-chat-item-list-renderer { + -ms-overflow-style: none; /* IE and Edge */ + scrollbar-width: none; /* Firefox */ +}