mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
d069c668f8
Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: Garfield Dai <dai.hai@foxmail.com> Co-authored-by: chenhe <guchenhe@gmail.com> Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Yeuoly <admin@srmxy.cn>
33 lines
502 B
CSS
33 lines
502 B
CSS
.slider {
|
|
position: relative;
|
|
}
|
|
.slider.disabled {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.slider-thumb {
|
|
width: 16px;
|
|
height: 16px;
|
|
background-color: white;
|
|
border-radius: 50%;
|
|
border: 1px solid rgba(0, 0, 0, 0.08);
|
|
position: absolute;
|
|
top: -8px;
|
|
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;
|
|
}
|