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.
39 lines
528 B
39 lines
528 B
.p-slider {
|
|
position: relative;
|
|
}
|
|
|
|
.p-slider .p-slider-handle {
|
|
position: absolute;
|
|
cursor: grab;
|
|
touch-action: none;
|
|
display: block;
|
|
}
|
|
|
|
.p-slider-range {
|
|
position: absolute;
|
|
display: block;
|
|
}
|
|
|
|
.p-slider-horizontal .p-slider-range {
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.p-slider-horizontal .p-slider-handle {
|
|
top: 50%;
|
|
}
|
|
|
|
.p-slider-vertical {
|
|
height: 100px;
|
|
}
|
|
|
|
.p-slider-vertical .p-slider-handle {
|
|
left: 50%;
|
|
}
|
|
|
|
.p-slider-vertical .p-slider-range {
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|