File: mac_dark_scrollbar.css

package info (click to toggle)
pageedit 2.4.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,956 kB
  • sloc: ansic: 31,806; cpp: 15,036; python: 1,141; javascript: 87; sh: 13; makefile: 7
file content (28 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (6)
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
a:link {
    color: #ff9999;
}

a:visited {
    color: #99ff99;
}

::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: rgb(61,61,61);
}

::-webkit-scrollbar-thumb {
    background: rgb(119, 119, 119);
    border: 4px solid transparent;
    border-radius: 10px;
    background-clip: content-box;
}

::-webkit-scrollbar-corner {
    background: rgb(61,61,61);
}

::-webkit-scrollbar {display: block;}