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
| /* Scrollbar */
| .swiper-scrollbar {
| border-radius: 10px;
| position: relative;
| -ms-touch-action: none;
| background: rgba(0,0,0,0.1);
| .swiper-container-horizontal > & {
| position: absolute;
| left: 1%;
| bottom: 3px;
| z-index: 50;
| height: 5px;
| width: 98%;
| }
| .swiper-container-vertical > & {
| position: absolute;
| right: 3px;
| top: 1%;
| z-index: 50;
| width: 5px;
| height: 98%;
| }
| }
| .swiper-scrollbar-drag {
| height: 100%;
| width: 100%;
| position: relative;
| background: rgba(0,0,0,0.5);
| border-radius: 10px;
| left: 0;
| top: 0;
| }
| .swiper-scrollbar-cursor-drag {
| cursor: move;
| }
| .swiper-scrollbar-lock {
| display: none;
| }
|
|