summaryrefslogtreecommitdiff
path: root/themes/PaperMod/assets/css/includes/scroll-bar.css
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-04-28 17:33:09 +0200
committerChristoph Cullmann <cullmann@kde.org>2024-04-28 17:33:09 +0200
commite77051ccc4b47951bfa4fde2be436b1bb2fb113b (patch)
treef0b75ee3521da9c8cd39dac4359212348f70e4e8 /themes/PaperMod/assets/css/includes/scroll-bar.css
parent4b355837824ac2422d371acef790f0f4249255c7 (diff)
use https://github.com/nunocoracao/blowfish.git
Diffstat (limited to 'themes/PaperMod/assets/css/includes/scroll-bar.css')
-rw-r--r--themes/PaperMod/assets/css/includes/scroll-bar.css63
1 files changed, 0 insertions, 63 deletions
diff --git a/themes/PaperMod/assets/css/includes/scroll-bar.css b/themes/PaperMod/assets/css/includes/scroll-bar.css
deleted file mode 100644
index f6e577d..0000000
--- a/themes/PaperMod/assets/css/includes/scroll-bar.css
+++ /dev/null
@@ -1,63 +0,0 @@
-/* from reset */
-::-webkit-scrollbar-track {
- background: 0 0;
-}
-
-.list:not(.dark)::-webkit-scrollbar-track {
- background: var(--code-bg);
-}
-
-::-webkit-scrollbar-thumb {
- background: var(--tertiary);
- border: 5px solid var(--theme);
- border-radius: var(--radius);
-}
-
-.list:not(.dark)::-webkit-scrollbar-thumb {
- border: 5px solid var(--code-bg);
-}
-
-::-webkit-scrollbar-thumb:hover {
- background: var(--secondary);
-}
-
-::-webkit-scrollbar:not(.highlighttable, .highlight table, .gist .highlight) {
- background: var(--theme);
-}
-
-/* from post-single */
-.post-content .highlighttable td .highlight pre code::-webkit-scrollbar {
- display: none;
-}
-
-.post-content :not(table) ::-webkit-scrollbar-thumb {
- border: 2px solid var(--code-block-bg);
- background: rgb(113, 113, 117);
-}
-
-.post-content :not(table) ::-webkit-scrollbar-thumb:hover {
- background: rgb(163, 163, 165);
-}
-
-.gist table::-webkit-scrollbar-thumb {
- border: 2px solid rgb(255, 255, 255);
- background: rgb(173, 173, 173);
-}
-
-.gist table::-webkit-scrollbar-thumb:hover {
- background: rgb(112, 112, 112);
-}
-
-.post-content table::-webkit-scrollbar-thumb {
- border-width: 2px;
-}
-
-/* from zmedia */
-@media screen and (min-width: 768px) {
-
- /* reset */
- ::-webkit-scrollbar {
- width: 19px;
- height: 11px;
- }
-}