jquery-mobile/experiments/scrollview/jquery.mobile.scrollview.css

67 lines
891 B
CSS
Raw Permalink Normal View History

@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;
}