You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.0 KiB

.zscroller-scrollbar-y {
position: absolute;
z-index: 9999;
width: 7px;
bottom: 2px;
top: 2px;
right: 1px;
overflow: hidden;
-webkit-transform: translateZ(0px);
transform: translateZ(0px);
transition-property: opacity;
transition-duration: 250ms;
opacity: 0;
}
.zscroller-indicator-y {
box-sizing: border-box;
position: absolute;
border: 1px solid rgba(255, 255, 255, 0.901961);
border-radius: 3px;
width: 100%;
display: block;
background: rgba(0, 0, 0, 0.498039);
}
.zscroller-scrollbar-x {
position: absolute;
z-index: 9999;
height: 7px;
left: 2px;
right: 2px;
bottom: 1px;
overflow: hidden;
-webkit-transform: translateZ(0px);
transform: translateZ(0px);
transition-property: opacity;
transition-duration: 250ms;
opacity: 0;
}
.zscroller-indicator-x {
box-sizing: border-box;
position: absolute;
border: 1px solid rgba(255, 255, 255, 0.901961);
border-radius: 3px;
height: 100%;
display: block;
background: rgba(0, 0, 0, 0.498039);
}