Skip to content

Commit a7de35d

Browse files
Export dist versions
1 parent dde6162 commit a7de35d

File tree

5 files changed

+1241
-0
lines changed

5 files changed

+1241
-0
lines changed

dist/scroller.css

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
[data-scroller="true"] {
2+
overflow: hidden;
3+
}
4+
.scroller-scrollbar {
5+
display: none;
6+
position: absolute;
7+
z-index: 1000;
8+
border-top-right-radius: 2px;
9+
border-top-left-radius: 2px;
10+
border-bottom-right-radius: 2px;
11+
border-bottom-left-radius: 2px;
12+
}
13+
.scroller-scrollbar.vertical {
14+
top: 0;
15+
right: 0;
16+
width: 3px;
17+
height: 100%;
18+
margin: 0 2px;
19+
}
20+
.scroller-scrollbar.vertical.scroller-inverse {
21+
left: 0;
22+
right: inherit;
23+
}
24+
.scroller-scrollbar.horizontal {
25+
left: 0;
26+
bottom: 0;
27+
width: 100%;
28+
height: 3px;
29+
margin: 2px 0;
30+
}
31+
.scroller-scrollbar.horizontal.scroller-inverse {
32+
top: 0;
33+
bottom: inherit;
34+
}
35+
.scroller-scrollbar.scroller-active {
36+
display: block;
37+
}
38+
.scroller-scrollbar {
39+
background-color: #000;
40+
opacity: 0.32;
41+
}

0 commit comments

Comments
 (0)