koui
Version:
Knockout UI widgets to help Knockout app development
32 lines (31 loc) • 557 B
CSS
.ui-slider {
position: relative;
display: inline-block;
width: 120px;
margin-left: 5px;
height: 10px;
background: #fff;
border: solid 1px #333;
}
.ui-slider-handle {
position: absolute;
width: 10px;
height: 10px;
background: #aaa;
border: solid 1px #333;
border-width: 0 1px;
}
.ui-slider-overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: transparent;
z-index: 99;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: pointer;
}