source: extensions/piwigo_mobile/ios/www/jquery.mobile.scrollview.css @ 12411

Last change on this file since 12411 was 12411, checked in by patdenice, 13 years ago

Add piwigo mobile for iOS

File size: 871 bytes
Line 
1@charset "utf-8";
2
3.ui-scrollview-clip { 
4}
5
6.ui-scrollview-view {
7}
8
9.ui-scrolllistview .ui-li-divider {
10        z-index: 10;
11}
12
13.ui-scrollbar {
14        position: absolute;
15        overflow: hidden;
16
17        opacity: 0;
18        -webkit-transition: opacity 500ms;
19        -moz-transition: opacity 500ms;
20        transition: opacity 500ms;
21}
22
23.ui-scrollbar-visible {
24        opacity: 1;
25}
26
27.ui-scrollbar-y {
28        top: 2px;
29        right: 2px;
30        bottom: 8px;
31        width: 5px;
32}
33
34.ui-scrollbar-x {
35        right: 8px;
36        bottom: 2px;
37        left: 2px;
38        height: 5px;
39}
40
41.ui-scrollbar-track {
42        position: relative;
43        width: 100%;
44        height: 100%;
45}
46
47.ui-scrollbar-thumb {
48        position: absolute;
49        top: 0;
50        left: 0;
51        background-color: rgba(0, 0, 0, 0.3);
52        -moz-border-radius: 2px;
53        -webkit-border-radius: 2px;
54        border-radius: 2px;
55}
56
57.ui-scrollbar-y .ui-scrollbar-thumb {
58        width: 5px;
59        height: 100%;
60}
61
62.ui-scrollbar-x .ui-scrollbar-thumb {
63        width: 100%;
64        height: 5px;
65}
Note: See TracBrowser for help on using the repository browser.