57 lines
1023 B
CSS
57 lines
1023 B
CSS
.ss-wrapper {
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
z-index: 1;
|
|
float: left;
|
|
}
|
|
|
|
.ss-content {
|
|
height: 100%;
|
|
width: calc(100% + 18px);
|
|
padding: 0 0 0 0;
|
|
position: relative;
|
|
overflow: auto;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.ss-content.rtl {
|
|
width: calc(100% + 18px);
|
|
right: auto;
|
|
}
|
|
|
|
.ss-scroll {
|
|
position: relative;
|
|
background: rgba(0, 0, 0, 0.1);
|
|
width: 14px;
|
|
height: 31px;
|
|
/* border-radius: 4px; */
|
|
top: 0;
|
|
z-index: 2;
|
|
cursor: pointer;
|
|
/* opacity: 0; */
|
|
/* transition: opacity 0.25s linear; */
|
|
background: #9999FF;
|
|
box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5),
|
|
inset 1px 0px 0px rgba(255, 255, 255, 0.5),
|
|
inset -1px -1px 0px rgba(102, 102, 204, 0.91);
|
|
}
|
|
|
|
.ss-hidden {
|
|
display: none;
|
|
}
|
|
|
|
.ss-container:hover .ss-scroll,
|
|
.ss-container:active .ss-scroll {
|
|
opacity: 1;
|
|
}
|
|
|
|
.ss-grabbed {
|
|
-o-user-select: none;
|
|
-ms-user-select: none;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
}
|