-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple-scrollbars.css
More file actions
50 lines (41 loc) · 1013 Bytes
/
simple-scrollbars.css
File metadata and controls
50 lines (41 loc) · 1013 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* Simple Scrollbar override for all pages in (Vivaldi) Desktop Browsers
* By CaminaShell 2025.03.27 - github.com/caminashell/simple-scrollbars
* Requirements: Stylebot Extension v3.1+
* Tested on Vivaldi 7.2.3621.71 (Stable channel) (64-bit)
* Create a new style with * (wildcard) as URL, copy & paste the code in.
*/
/*
* Legacy WebKit Globals
*/
*::-webkit-scrollbar {
height: 8px;
width: 8px;
}
*::-webkit-scrollbar-button {
display: none;
}
*::-webkit-scrollbar-corner, ::-webkit-scrollbar-resize {
background-color: transparent;
}
*::-webkit-scrollbar-thumb {
border: none;
background-clip: padding-box;
background-color: rgba(163,168,176,.5);
border-radius: 8px;
transition: all 2s ease-in-out
}
*::-webkit-scrollbar-thumb:hover {
--fix: ;
background-color: rgba(163,168,176,.75);
}
*::-webkit-scrollbar-track {
background-color: transparent;
}
/*
* YouTube scrollbar- fix
*/
* {
scrollbar-color: revert !important;
scrollbar-width: revert !important;
}