mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-31 03:51:59 +08:00

Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: Gillian97 <jinling.sunshine@gmail.com>
32 lines
459 B
CSS
32 lines
459 B
CSS
.slider {
|
|
position: relative;
|
|
}
|
|
.slider.disabled {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.slider-thumb {
|
|
width: 18px;
|
|
height: 18px;
|
|
background-color: white;
|
|
border-radius: 50%;
|
|
position: absolute;
|
|
top: -9px;
|
|
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.slider-thumb:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.slider-track {
|
|
background-color: #528BFF;
|
|
height: 2px;
|
|
}
|
|
|
|
.slider-track-1 {
|
|
background-color: #E5E7EB;
|
|
}
|