From 6713897d947f4e898102024fe5766bf8d7e06211 Mon Sep 17 00:00:00 2001 From: Sreecharan Date: Sat, 15 Jan 2022 16:57:48 +0530 Subject: [PATCH 1/3] Contrasting Scrollbar --- src/content.css | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/src/content.css b/src/content.css index 49045d4..3ea1295 100644 --- a/src/content.css +++ b/src/content.css @@ -1,3 +1,43 @@ +html { + scroll-behavior: smooth; +} +/* Scrollbar size */ +::-webkit-scrollbar { + width: 10px; + height: 10px; + transition: 1.0s; +} + +::-webkit-scrollbar-thumb { + background-color: rgba(127, 127, 127, 0.6); + background-clip: padding-box; + border: 2px solid transparent; + border-radius: 5px; + transition: 1.0s; +} + +::-webkit-scrollbar-thumb:vertical:hover, +::-webkit-scrollbar-thumb:horizontal:hover { + background-color: rgb(110, 110, 110); + transition: 0.3s; +} + +::-webkit-scrollbar-track { + background-color: transparent; +} + + + +::-webkit-scrollbar-thumb:vertical:active, +::-webkit-scrollbar-thumb:horizontal:active { + background: rgba(95, 91, 91, 1); + +} + +::-webkit-scrollbar-corner { + background: none; +} + @media (prefers-color-scheme: dark) { :root { --background: #1E2128; From d74dad088a5bcbd3c20c6332cc97eede0bbf77c1 Mon Sep 17 00:00:00 2001 From: Sreecharan Date: Sat, 15 Jan 2022 16:58:12 +0530 Subject: [PATCH 2/3] Rename manifest.json to manifest.chrome.json --- src/{manifest.json => manifest.chrome.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/{manifest.json => manifest.chrome.json} (100%) diff --git a/src/manifest.json b/src/manifest.chrome.json similarity index 100% rename from src/manifest.json rename to src/manifest.chrome.json From b6f84a92d289adf83f0f9494f2160cea93ca51b3 Mon Sep 17 00:00:00 2001 From: Sreecharan Date: Sat, 15 Jan 2022 17:12:52 +0530 Subject: [PATCH 3/3] Rename manifest.chrome.json to manifest.json --- src/{manifest.chrome.json => manifest.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename src/{manifest.chrome.json => manifest.json} (100%) diff --git a/src/manifest.chrome.json b/src/manifest.json similarity index 100% rename from src/manifest.chrome.json rename to src/manifest.json