blob: fd1cb24eb19071176f6b0b1ee5e1bedfba37d773 (
plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
@charset "utf-8";
.ui-scrollview-clip {
position: relative;
}
.ui-scrollview-view {
}
.ui-scrolllistview .ui-li-divider {
z-index: 10;
}
.ui-scrollbar {
position: absolute;
overflow: hidden;
opacity: 0;
-webkit-transition: opacity 500ms;
-moz-transition: opacity 500ms;
transition: opacity 500ms;
}
.ui-scrollbar-visible {
opacity: 1;
}
.ui-scrollbar-y {
top: 2px;
right: 2px;
bottom: 8px;
width: 5px;
}
.ui-scrollbar-x {
right: 8px;
bottom: 2px;
left: 2px;
height: 5px;
}
.ui-scrollbar-track {
position: relative;
width: 100%;
height: 100%;
}
.ui-scrollbar-thumb {
position: absolute;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.3);
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
}
.ui-scrollbar-y .ui-scrollbar-thumb {
width: 5px;
height: 100%;
}
.ui-scrollbar-x .ui-scrollbar-thumb {
width: 100%;
height: 5px;
}
/*
* the values below are for the group index
*/
/*
* padding here set to zero - otherwise the list scrolls underneith the top heading and can be seen above it
*/
.ui-content.ui-scrollview-clip {
padding: 0;
}
/*
* this seems to effect how far the top divider is place wrt to the scrollview
* without this, it is placed too high, so it is clipped in half
*/
.ui-content.ui-scrollview-clip > .ui-listview.ui-scrollview-view {
margin: 0;
}
|