33 lines
502 B
CSS
Raw Normal View History

2023-05-15 08:51:32 +08:00
.slider {
position: relative;
}
.slider.disabled {
opacity: 0.6;
}
2023-05-15 08:51:32 +08:00
.slider-thumb {
width: 16px;
height: 16px;
2023-05-15 08:51:32 +08:00
background-color: white;
border-radius: 50%;
border: 1px solid rgba(0, 0, 0, 0.08);
2023-05-15 08:51:32 +08:00
position: absolute;
top: -8px;
2023-05-15 08:51:32 +08:00
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
cursor: pointer;
}
.slider-thumb:focus {
outline: none;
}
.slider-track {
background-color: #528BFF;
2023-05-15 08:51:32 +08:00
height: 2px;
}
.slider-track-1 {
background-color: #E5E7EB;
}